Meta
Guide (HTML)
The One API Developer Guide 3.0 as one HTML page on the API host.
Not in the OpenAPI spec; documented from the route code.
GET https://api.plungeai.com/docsGET https://api.plungeai.com/docs serves the One API Developer Guide 3.0 as a single HTML page. The same guide is copied to plungeai.com/docs. No key is needed.
Response
The guide page. Cached for 5 minutes (Cache-Control: public, max-age=300).
Example
import requests
open('one-api-guide.html', 'w').write(requests.get('https://api.plungeai.com/docs').text)const res = await fetch('https://api.plungeai.com/docs')
console.log(res.status, (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/docs")).GET().build();
HttpResponse<Path> res = HttpClient.newHttpClient().send(req, HttpResponse.BodyHandlers.ofFile(Path.of("one-api-guide.html")));
System.out.println(res.statusCode() + " " + res.body());
}
}curl -s -o one-api-guide.html https://api.plungeai.com/docsThis site replaces the single page with one page per topic; start at the overview.