Skip to main content

List Models

GET/v1/models

Retrieve the list of all model IDs available on IG1 AI.


Request

curl \
-H "Authorization: Bearer $IG1AI_API_KEY" \
https://api.ig1.ai/v1/models

Response

{
"object": "list",
"data": [
{
"id": "qwen35-397b-a17b-instruct-general",
"object": "model",
"created": 1773670733,
"owned_by": "ig1"
},
{
"id": "bge-m3",
"object": "model",
"created": 1773670733,
"owned_by": "ig1"
}
]
}

Response fields

FieldTypeDescription
objectstringAlways "list"
dataarrayArray of model objects
data[].idstringModel identifier to use in API calls
data[].objectstringAlways "model"
data[].createdintegerUnix timestamp of model registration
data[].owned_bystringAlways "ig1"