Skip to main content

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.
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}")
The filter parameter uses the AIP-160 filter syntax. The supports_serverless field indicates whether a model is available on serverless infrastructure.
See the List Models API reference for all available parameters including order_by, page_size, and read_mask.