Meta
llms.txt
The One API guide index for AI coding agents, as plain text (llmstxt.org).
Not in the OpenAPI spec; documented from the route code.
GET https://api.plungeai.com/llms.txtGET https://api.plungeai.com/llms.txt returns the index of the One API Developer Guide in the llmstxt.org (opens in a new tab) format, so an AI coding agent can onboard from the domain alone. No key is needed.
Response
The guide index. Cached for 5 minutes (Cache-Control: public, max-age=300).
Example
import requests
print(requests.get('https://api.plungeai.com/llms.txt').text)const res = await fetch('https://api.plungeai.com/llms.txt')
console.log(await res.text())import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
public class Main {
public static void main(String[] args) throws Exception {
HttpRequest req = HttpRequest.newBuilder(URI.create("https://api.plungeai.com/llms.txt")).GET().build();
HttpResponse<String> res = HttpClient.newHttpClient().send(req, HttpResponse.BodyHandlers.ofString());
System.out.println(res.body());
}
}curl -s https://api.plungeai.com/llms.txtThe index of this documentation site is /llms.txt on docs.plungeai.com.