> ## Documentation Index
> Fetch the complete documentation index at: https://docs.plungeai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# llms.txt

> The One API guide index for AI coding agents, as plain text (llmstxt.org).


<Note>
Not in the OpenAPI spec; documented from the route code.
</Note>

```text Endpoint
GET https://api.plungeai.com/llms.txt
```

`GET https://api.plungeai.com/llms.txt` returns the index of the One API Developer Guide in the [llmstxt.org](https://llmstxt.org) format, so an AI coding agent can onboard from the domain alone. No key is needed.

## Response

<ResponseField name="200" type="text/plain">
The guide index. Cached for 5 minutes (`Cache-Control: public, max-age=300`).
</ResponseField>

## Example

<CodeGroup>

```python Python
import requests

print(requests.get('https://api.plungeai.com/llms.txt').text)
```

```typescript TypeScript
const res = await fetch('https://api.plungeai.com/llms.txt')
console.log(await res.text())
```

```java Java
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());
  }
}
```

```bash cURL
curl -s https://api.plungeai.com/llms.txt
```

</CodeGroup>

The index of this documentation site is [/llms.txt](/llms.txt) on docs.plungeai.com.
