GET /v1/models to discover exactly which models your Fhddos token grants access to. The response follows the standard OpenAI model list format, so any tooling or SDK that already works with the OpenAI /v1/models endpoint works here without modification.
Endpoint
Request
Response
The response is a standard OpenAI-compatible list object. Each entry indata represents one model your token can call.
Response Fields
| Field | Description |
|---|---|
object | Always "list" |
data | Array of model objects available to your token |
data[].id | The model ID to use in the model parameter of inference requests |
data[].object | Always "model" |
data[].created | Unix timestamp of when the model entry was registered |
data[].owned_by | Provider — e.g. openai, google, anthropic |
What the Model List Tells You
Use the model list to make your integration more robust:Dynamic Feature Gating
Check whether a specific model ID is present before showing a feature in your UI. If the model isn’t listed, the feature isn’t available for that user’s token.
Avoid Hardcoding
Pull the model list at startup and cache it locally. This lets you pick up newly added models without redeploying your application.
Monitoring and Rollouts
Combine the model list with Fhddos’s quota policies to do model-level grey rollouts — gradually expose new models to a subset of tokens.
SDK Initialisation
Many third-party frameworks (LangChain, LlamaIndex, etc.) support pre-fetching the model list to populate dropdowns or validate model names before sending requests.
Model Coverage
Fhddos aggregates models from multiple providers under a single API surface. Depending on your account configuration, your model list may include:| Provider | Example model IDs |
|---|---|
| OpenAI | gpt-4o, gpt-4o-mini, o3, gpt-image-2 |
gemini-2.5-pro, gemini-2.5-flash | |
| Anthropic | claude-opus-4, claude-sonnet-4-6, claude-haiku-4 |
| ByteDance | doubao-pro-256k, doubao-lite-32k |
| Others | Varies by account |
The model IDs you see in the list are the exact strings you should pass as the
model parameter in your chat, completion, image, audio, or video requests. Using an ID not present in your list will return an authentication or not-found error.