List batch-supported models

GET/v1/batches/models

Returns active LLM models you can submit to POST /v1/batches. Each item's id is the Token360 model name for JSONL body.model (same as synchronous POST /v1/chat/completions).

Listed models can run as a Token360 batch (at least platform fan-out). This is not a list of “models that have a special batch-only SKU.” supports_provider_batch=true means an upstream native Batch Infer route is also available for execution=auto|provider. Today most catalog LLMs have supports_provider_batch=false and still accept execution=platform.

Templates with model_metadata.supports_batch=false are excluded from provider-native eligibility (they may still appear for platform if otherwise batchable).

See also Batch Jobs for the full workflow and dual execution.

Authentication

Authorization Bearer

API key as bearer token in Authorization header.

Response

objectstring

Always list.

dataarray

Supported models.

data[].idstring

Model name for JSONL body.model.

data[].objectstring

Always model.

data[].supports_batchboolean

Always true for listed items (Token360 batch capable).

data[].supports_provider_batchboolean

True when an upstream Batch Infer route exists for auto/provider.

data[].display_namestring

Human-readable name.

data[].model_typestring

Typically LLM.

Request

Shell
1curl https://api.token360.ai/v1/batches/models \
2  -H "Authorization: Bearer sk-your-api-key"

Response

JSON
1{
2  "object": "list",
3  "data": [
4    {
5      "id": "claude-opus-5",
6      "object": "model",
7      "supports_batch": true,
8      "supports_provider_batch": false,
9      "display_name": "Claude Opus 5",
10      "model_type": "LLM"
11    }
12  ]
13}
Was this page helpful?