curl https://api.snapgen.org/v1/models \
-H "Authorization: Bearer sk-xxxx"
{
"object": "list",
"data": [
{
"id": "gpt-5.4-mini",
"object": "model",
"created": 1730000000,
"owned_by": "snapgen"
}
]
}
Endpoint Reference
List models
Discover models available to your API key.
GET
/
v1
/
models
curl https://api.snapgen.org/v1/models \
-H "Authorization: Bearer sk-xxxx"
{
"object": "list",
"data": [
{
"id": "gpt-5.4-mini",
"object": "model",
"created": 1730000000,
"owned_by": "snapgen"
}
]
}
List the models available to your API key before selecting a model in a request.
Use each returned
data[].id as the model value for compatible endpoints. The response is scoped to your key, so it is more reliable than a hardcoded model list.
For current public pricing, visit the SnapGen models page.
curl https://api.snapgen.org/v1/models \
-H "Authorization: Bearer sk-xxxx"
{
"object": "list",
"data": [
{
"id": "gpt-5.4-mini",
"object": "model",
"created": 1730000000,
"owned_by": "snapgen"
}
]
}