For AI agents: the complete documentation index for the Restless API is available at https://build.restless.ai/llms.txt. This page is also available as Markdown at https://build.restless.ai/installs/rust.md (or send an Accept: text/markdown request header).
Set up Restless with Rust
Agent setup prompt
We want to integrate Restless into this codebase via API.
There's no official Rust SDK, so use whatever HTTP client and conventions this codebase already uses for API calls. If there isn't an established pattern, a common choice for Rust is reqwest.
Authentication: send a bearer token in the `Authorization` header (`Authorization: Bearer <token>`).
The base URL is `https://app.restless.ai`.
You can see the available endpoints at https://build.restless.ai/llms.txt, or read the full OpenAPI spec at https://build.restless.ai/openapi.yaml. Adapt the auth and endpoints to your use case as needed.