Models API
List available models and their metadata.
List models
GET https://sovereigneg.com/v1/v1/models
Authentication required — include your API key as a Bearer token:
curl https://sovereigneg.com/v1/v1/models \
-H "Authorization: Bearer $INFERGO_API_KEY"Response
OpenAI-compatible list shape. Each entry includes an id you pass as the model parameter on chat completions:
{
"object": "list",
"data": [
{
"id": "meta-llama-3-1-8b-instruct",
"object": "model",
"owned_by": "sovereigneg"
}
]
}Call GET /v1/models or browse the Model Library for the current id list — do not hardcode ids from examples.
Model IDs
For detailed comparisons and EGP pricing, see Models Overview.