Documentation Index
Fetch the complete documentation index at: https://docs.fireworks.ai/llms.txt
Use this file to discover all available pages before exploring further.
Web UI
Go to https://app.fireworks.ai/models?filter=LLM&serverless=true
API
You can programmatically retrieve all serverless models using the List Models API with the supports_serverless=true filter.
Python (Fireworks SDK)
curl
from fireworks import Fireworks
client = Fireworks()
# List all serverless models
models = client.models.list(filter="supports_serverless=true")
for model in models:
print(model.name)
You can also combine filters and customize the response:# List serverless models with pagination
models = client.models.list(
filter="supports_serverless=true",
page_size=50,
)
for model in models:
print(f"{model.name}: {model.display_name}")
curl "https://api.fireworks.ai/v1/accounts/fireworks/models?filter=supports_serverless%3Dtrue" \
-H "Authorization: Bearer $FIREWORKS_API_KEY"
With pagination:curl "https://api.fireworks.ai/v1/accounts/fireworks/models?filter=supports_serverless%3Dtrue&pageSize=50" \
-H "Authorization: Bearer $FIREWORKS_API_KEY"
The filter parameter uses the AIP-160 filter syntax. The supports_serverless field indicates whether a model is available on serverless infrastructure.