Skip to main content
GET
/
api
/
v2
/
models
/
{slug}
Get Model
curl --request GET \
  --url https://api.example.com/api/v2/models/{slug}
{
  "slug": "<string>",
  "token_cost": 123,
  "min_token_cost": 123,
  "max_token_cost": 123,
  "min_plan": "<string>",
  "config": {}
}

Path Parameters

slug
string
required
Model slug, e.g. dall-e-3, flux-1.1-pro, kling-v2.1

Request

curl "https://neuralbox.top/api/v2/models/dall-e-3" \
  -H "Authorization: Bearer nb_YOUR_API_KEY"

Response

{
  "slug": "dall-e-3",
  "name": "DALL-E 3",
  "category": "image",
  "provider": "OpenAI",
  "min_plan": "free",
  "token_cost": 5,
  "min_token_cost": 5,
  "max_token_cost": 13,
  "description_en": "OpenAI's DALL-E 3 — precise prompt following, high coherence",
  "supports_streaming": false,
  "config": {
    "sizes": ["1024x1024", "1024x1792", "1792x1024"],
    "formats": ["webp", "png", "jpeg"],
    "quality_options": ["standard", "hd"]
  }
}

Response Fields

slug
string
Model identifier used in /generate requests.
token_cost
integer
Base token cost per generation.
min_token_cost
integer
Minimum possible cost (cheapest params).
max_token_cost
integer
Maximum possible cost (most expensive params).
min_plan
string
free (Starter-tier) or basic (Basic+ required).
config
object
Model-specific parameters: available sizes, formats, quality options, etc.
See List Models for the full catalog.