Skip to main content
GET
/
models
/
pricing
Pricing
curl --request GET \
  --url https://api.fal.ai/v1/models/pricing \
  --header 'Authorization: <api-key>'
{
  "prices": [
    {
      "endpoint_id": "fal-ai/flux/dev",
      "unit_price": 0.025,
      "unit": "image",
      "currency": "USD"
    }
  ],
  "next_cursor": null,
  "has_more": false
}

Authorizations

Authorization
string
header
required

Admin API key must be prefixed with "Key ", e.g. Authorization: Key YOUR_ADMIN_API_KEY

Query Parameters

endpoint_id
required

Filter by specific endpoint ID(s). Must provide at least 1 endpoint ID (1-50 models). Supports comma-separated values: ?endpoint_id=model1,model2 or array syntax: ?endpoint_id=model1&endpoint_id=model2

Example:
["fal-ai/flux/dev"]

Response

Pricing information retrieved successfully

Response containing pricing information for requested endpoints

next_cursor
string | null
required

Cursor for the next page of results, null if no more pages

has_more
boolean
required

Boolean indicating if more results are available (convenience field derived from next_cursor)

prices
object[]
required

Pricing information for requested endpoints