Meta
llms-full.txt
The whole One API Developer Guide 3.0 and the external API reference in one markdown file.
Not in the OpenAPI spec; documented from the route code.
GET https://api.plungeai.com/llms-full.txtGET https://api.plungeai.com/llms-full.txt returns the full One API Developer Guide 3.0 as one markdown document, for agents that read everything at once. No key is needed.
Response
The full guide. Cached for 5 minutes (Cache-Control: public, max-age=300).
Example
import requests
open('one-api-guide.md', 'w').write(requests.get('https://api.plungeai.com/llms-full.txt').text)const res = await fetch('https://api.plungeai.com/llms-full.txt')
console.log((await res.text()).length)import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.nio.file.Path;
public class Main {
public static void main(String[] args) throws Exception {
HttpRequest req = HttpRequest.newBuilder(URI.create("https://api.plungeai.com/llms-full.txt")).GET().build();
HttpResponse<Path> res = HttpClient.newHttpClient().send(req, HttpResponse.BodyHandlers.ofFile(Path.of("one-api-guide.md")));
System.out.println(res.statusCode() + " " + res.body());
}
}curl -s https://api.plungeai.com/llms-full.txt -o one-api-guide.mdThe full text of this documentation site is /llms-full.txt on docs.plungeai.com.