> For the complete documentation index, see [llms.txt](https://docs.bugbug.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bugbug.io/public-api-reference/config.md).

# Config

Config

## IP addresses list

> Returns List of Bugbug infrastructure IP addresses.

```json
{"openapi":"3.1.0","info":{"title":"BugBug.io Public API","version":"v2"},"tags":[{"name":"Config","description":"Config"}],"security":[{"Bearer":[]},{}],"components":{"securitySchemes":{},"schemas":{"IPAddressList":{"type":"object","properties":{"ips":{"type":"array","items":{"type":"string"}}},"required":["ips"]}}},"paths":{"/api/v2/config/ips/":{"get":{"operationId":"v2_config_ips_retrieve","description":"Returns List of Bugbug infrastructure IP addresses.","summary":"IP addresses list","tags":["Config"],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/IPAddressList"}}},"description":""},"401":{"description":"Authentication credentials were missing or invalid."}}}}}}
```

## API status probe

> Lightweight liveness probe. Always returns 200 when the API is reachable. If an \`Authorization: Token \<key>\` header is sent it is validated and the result is reported via the \`authenticated\` flag, but neither a missing nor an invalid token causes a 401. Intended for client-side connection indicators and uptime monitors.

```json
{"openapi":"3.1.0","info":{"title":"BugBug.io Public API","version":"v2"},"tags":[{"name":"Config","description":"Config"}],"security":[{"Bearer":[]},{}],"components":{"securitySchemes":{},"schemas":{"ApiStatus":{"type":"object","properties":{"status":{"type":"string"},"authenticated":{"type":"boolean"}},"required":["authenticated","status"]}}},"paths":{"/api/v2/config/status/":{"get":{"operationId":"v2_config_status_retrieve","description":"Lightweight liveness probe. Always returns 200 when the API is reachable. If an `Authorization: Token <key>` header is sent it is validated and the result is reported via the `authenticated` flag, but neither a missing nor an invalid token causes a 401. Intended for client-side connection indicators and uptime monitors.","summary":"API status probe","tags":["Config"],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiStatus"}}},"description":""},"401":{"description":"Authentication credentials were missing or invalid."}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.bugbug.io/public-api-reference/config.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
