/v1/models
Enumerating models
Models
The models endpoint gives the listing of all models in the catalogue, as well as current state. This endpoint can be called from either an authenticated or unauthenticated context.
HTTP request
GET https://api.featherless.ai/v1/models
Response body
If successful, the response body will contain data with the following structure:
{
"data": [
{
"id": "vicgalle/Roleplay-Llama-3-8B",
"name": "vicgalle/Roleplay-Llama-3-8B",
"model_class": "llama3-8b-8k",
"context_length": 8192,
"max_completion_tokens": 4096
},
// and more models ..
]
}Use the id field as the model value when calling /v1/chat/completions or /v1/completions.
Model Attributes
Parameter | Type | Description |
|---|---|---|
| string | use this value when calling a completion endpoint |
| string | |
| integer | Maximum context size (i.e. prompt + completion) supported by the model. Clients that call a completion endpoint wit this model and a prompt of this length or longer should expect an error |
| integer | Maximum amount of output that will be generated in a single call. Calls to completion endpoints with |
| boolean | Will return Users must have ungated the model in their connected HuggingFace account before a completion call will be accepted for this model on featherless. Otherwise the completion call will return Note this a property of the model. It does not report the currently authenticated user’s relationship to that model. |
| boolean | returned if and only if the request was authenticated. If the value is |
Query parameters
All query parameters are optional.
Multi-value filters can be passed as comma-separated values or repeated query parameters:
/v1/models?family=llama3,qwen2
/v1/models?family=llama3&family=qwen2
Common parameters
q: Search by model name or id.available_on_current_plan: Passtrueor1to filter to models available on the authenticated user’s current plan.tags: Require all listed tags to match. This is a legacy filter.page: Page number for pagination.per_page: Number of results per page. Maximum is1000.
Model filters
You can filter by model metadata:
licensefamilymodel_classstatus: One or more of active, pending_deploy, not_deployed. When omitted, only active models are returned.languagestasksarchitecturestrainingcapabilitiesmodalitiesdomainscreativecontent_flagsparameter_bucketpopularity_level
Examples:
/v1/models?capabilities=chat,tool-use
/v1/models?modalities=vision
/v1/models?family=llama3
/v1/models?languages=en,ja
Boolean filters
gated:trueorfalseconversational:trueorfalse
Range filters
Use these to filter by context size:
context_length_min: Minimum context size in tokens.context_length_max: Maximum context size in tokens.
Example request
curl "https://api.featherless.ai/v1/models?available_on_current_plan=true" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $FEATHERLESS_API_KEY"curl -H "Authorization: Bearer $FEATHERLESS_API_KEY" \
"https://api.featherless.ai/v1/models?capabilities=chat,tool-use&context_length_min=32768"curl -H "Authorization: Bearer $FEATHERLESS_API_KEY" \
"https://api.featherless.ai/v1/models?q=llama"curl -H "Authorization: Bearer $FEATHERLESS_API_KEY" \
"https://api.featherless.ai/v1/models?sort=-popularity&page=1&per_page=100"Model detail
Fetch a single model by id. The response is a superset of a list entry: it adds live hot/cold availability, deployment status, per-token pricing (always included, no query parameter needed), and HuggingFace metadata such as publication date, license, parameter counts, pipeline tasks and modalities.
HTTP request
GET https://api.featherless.ai/v1/models/{model-id}
Model ids contain a slash (owner/model). Both the raw form — what OpenAI SDKs produce for models.retrieve("owner/model") — and the URL-encoded single-segment form (owner%2Fmodel) are accepted.
Example request
curl -H "Authorization: Bearer $FEATHERLESS_API_KEY" \
"https://api.featherless.ai/v1/models/meta-llama/Meta-Llama-3-8B-Instruct"Example response
{
"id": "meta-llama/Meta-Llama-3-8B-Instruct",
"object": "model",
"owned_by": "Feather",
"created": 1713398400,
"model_class": "llama3-8b",
"context_length": 8192,
"max_completion_tokens": 4096,
"concurrency_cost": 1,
"is_gated": false,
"available_on_current_plan": true,
"pricing": {
"prompt": "0.0000001",
"completion": "0.0000001",
"image": "0",
"request": "0"
},
"features": { "tool_use": true },
"status": "active",
"availability": {
"tier": "warm",
"is_hot_live": true,
"is_hot_recent": true,
"loading_stage": null,
"last_changed_at": "2026-07-06T09:15:00.000Z"
},
"huggingface_id": "meta-llama/Meta-Llama-3-8B-Instruct",
"hf_created_at": "2024-04-17T00:00:00.000Z",
"license": "llama3",
"downloads": 1234567,
"favorites": 4321,
"parameter_size": 8000000000,
"is_moe": false,
"active_parameters": null,
"vision_supported": false,
"input_modalities": ["text"],
"output_modalities": ["text"],
"tasks": ["text-generation"],
"tags": ["chat", "llama-3"]
}Detail fields
status: deployment status — active, pending_deploy, or not_deployed. Non-active models are returned with their status rather than hidden.availability: live hot/cold snapshot, refreshed roughly every 5 minutes. tier is warm, loading, cold, offline or unknown; is_hot_live means a worker reports the model loaded right now; loading_stage is init or downloading while the model is loading. Null for models that have not been reconciled yet.pricing: per-token prices in USD as decimal strings, resolved through the same cascade used at billing time.concurrency_cost: how many of your plan's concurrency slots one in-flight request against this model consumes.hf_created_at: date the model was first published on HuggingFace.parameter_size,is_moe,active_parameters: raw parameter count, mixture-of-experts flag, and active parameters per forward pass for MoE models.tasks,input_modalities,output_modalities,vision_supported: HuggingFace pipeline types and modality support. The features object also carries derived flags such as tool_use and image_input.
Unknown ids return a 404 with error code model_not_found.