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
| Field | Type | Description |
|---|---|---|
object | string | Always "list" |
data | array | Array of model objects |
data[].id | string | Model identifier to use in API calls |
data[].object | string | Always "model" |
data[].created | integer | Unix timestamp of model registration |
data[].owned_by | string | Always "ig1" |