Endpoint Index
Endpoint-first map of the public AnyInt gateway surface, including status, auth style, and the canonical docs page for each API family.
Use this page when you need to answer: "Which route should I call?" It is the endpoint-first companion to the product-oriented guides.
This page lists the public customer-facing contract. It does not list non-public operational routes, admin routes, debug endpoints, provider callback internals, or deployment-specific implementation details.
For machine-readable use, fetch:
GET https://anyint.ai/docs/api-endpoints.jsonStatus labels
| Status | Meaning |
|---|---|
| Stable | Documented public route for normal integrations |
| Beta | Available route that should be verified in your target account before production use |
| Pass-through | Compatibility or provider route proxied to an upstream service; schema follows the upstream family where not documented locally |
Recommended integration order
- Start with Models API to discover usable model IDs.
- Use OpenAI Compatible API for normal chat and streaming.
- Use OpenAI Responses API only for tools that specifically expect Responses API wiring.
- Use Anthropic Compatible API or Gemini Compatible API when your app needs provider-native payloads.
- Use Media APIs, Kling video, and AI Music API for asset workflows.
- Run the Verify Your Integration checklist before production launch.
Parameter detail
This endpoint index is intentionally compact. Use the linked API page for request parameter tables, response field tables, and full examples. Machine-readable route metadata is available in api-endpoints.json, but the human API page remains the source of truth for parameter meaning and customer guidance.
Core public routes
| Family | Status | Auth | Main routes | Docs |
|---|---|---|---|---|
| Models API | Stable | Bearer or Anthropic headers | GET /openai/v1/models, GET /anthropic/v1/models | Models API |
| OpenAI-compatible chat | Stable | Bearer | POST /openai/v1/chat/completions, POST /openai/v1/completions | OpenAI Compatible API |
| OpenAI Responses | Beta | Bearer | POST /openai/v1/responses, GET /openai/v1/responses/{response_id} | OpenAI Responses API |
| Anthropic-compatible | Stable | x-api-key + anthropic-version | POST /anthropic/v1/messages, POST /anthropic/v1/messages/count_tokens | Anthropic Compatible API |
| Gemini-compatible | Stable | Bearer | POST /gemini/v1beta/models/{model}:generateContent, POST /gemini/v1beta/models/{model}:streamGenerateContent?alt=sse | Gemini Compatible API |
| DashScope media | Stable | Bearer | POST /dashscope/v1/services/aigc/multimodal-generation/generation, POST /dashscope/v1/services/aigc/video-generation/video-synthesis, GET /dashscope/v1/tasks/{task_id} | Media APIs |
| Transtreams Kling | Stable | Bearer | POST /transtreams/kling/v1/videos/text2video, GET /transtreams/kling/v1/videos/text2video/{task_id}, POST /transtreams/kling/v1/videos/image2video, GET /transtreams/kling/v1/videos/image2video/{task_id}, POST /transtreams/kling/v1/videos/omni-video, GET /transtreams/kling/v1/videos/omni-video/{task_id} | Kling video |
| AI Music | Stable | Bearer | POST /suno/generate, POST /suno/extend, GET /suno/query/task?taskId={task_id} | AI Music API |
Extended public routes
| Family | Status | Use when | Docs |
|---|---|---|---|
| OpenAI extended endpoints | Pass-through | You need embeddings, image generation, audio, files, batches, assistants, threads, or OpenAI-style video routes | OpenAI Extended Endpoints |
What not to infer
Do not assume every upstream provider route is public just because a proxy route exists in the gateway. This public docs site documents only external integration surfaces. Prefer the explicitly documented route pages and verify provider-specific payloads in your account before production use.
Do not call unprefixed model routes such as GET /v1/models. The published model discovery routes are /openai/v1/models and /anthropic/v1/models.
Do not use AnyInt customer docs to infer any non-public APIs. Those surfaces are not part of the public gateway contract unless they are explicitly documented here.