List Models
GET https://routify.bytedance.city/v1/models
Returns the full list of models available to your account.
Request
curl https://routify.bytedance.city/v1/models \
-H "Authorization: Bearer rtf_xxx"Response
{
"object": "list",
"data": [
{
"id": "deepseek-v3.2",
"object": "model",
"owned_by": "deepseek",
"created": 1747836000,
"context_window": 65536,
"tags": ["chat", "code", "fast"],
"input_price_usd_per_million": 0.14,
"output_price_usd_per_million": 0.28
},
...
]
}The extra fields (context_window, tags, input_price_*) are Routify
extensions. They're filtered out if the client requests strict OpenAI compat
via Accept: application/openai+json.