List Models
Get all available AI models.
GET
/v1/modelsPublicList all available AI models. Optionally filter by type.
Parameters
typestringFilter: image, video, or audioRequest
# All models
curl https://api.picxstudio.com/v1/models
# Video models only
curl "https://api.picxstudio.com/v1/models?type=video"Response
{
"models": [
{"id": "gemini-3.1-flash-image-preview", "name": "Nano Banana 2", "type": "image", "credits": {"1K": 12, "2K": 12, "4K": 24}},
{"id": "openai/gpt-image-2", "name": "GPT Image 2", "type": "image", "credits": {"1K": 20, "2K": 20, "4K": 40}},
{"id": "fal-ai/bytedance/seedance/v2", "name": "Seedance 2.0", "type": "video", "credits": {"720p": {"sound_on": 24, "sound_off": 24}}}
]
}