Images
List endpoints for an image model
Returns the full per-endpoint records for an image model: each endpoint's definitive supported parameters, pricing, and passthrough allowlist.
get/images/models/{author}/{slug}/endpoints
Path parameters
authorstring required
Model author/organization
Example:bytedance-seed
Model author/organization
slugstring required
Model slug
Example:seedream-4.5
Model slug
Response
The full per-endpoint records for an image model
Example response
{
"endpoints": [
{
"allowed_passthrough_parameters": [],
"pricing": [
{
"billable": "output_image",
"cost_usd": 0.05,
"unit": "image"
}
],
"provider_name": "Bytedance",
"provider_slug": "bytedance",
"provider_tag": "bytedance",
"supported_parameters": {
"resolution": {
"type": "enum",
"values": [
"1K",
"2K",
"4K"
]
}
},
"supports_streaming": false
}
],
"id": "bytedance-seed/seedream-4.5"
}