curl --request GET \
--url https://api.hicap.ai/v1/models{
"object": "list",
"data": [
{
"id": "gpt-5.5",
"object": "model",
"owned_by": "openai"
},
{
"id": "gpt-5.5-pro",
"object": "model",
"owned_by": "openai"
},
{
"id": "gpt-5",
"object": "model",
"owned_by": "openai"
}
]
}Returns the public model catalog available through the Hicap API. Use model IDs from this response in OpenAI-compatible endpoints such as /chat/completions.
curl --request GET \
--url https://api.hicap.ai/v1/models{
"object": "list",
"data": [
{
"id": "gpt-5.5",
"object": "model",
"owned_by": "openai"
},
{
"id": "gpt-5.5-pro",
"object": "model",
"owned_by": "openai"
},
{
"id": "gpt-5",
"object": "model",
"owned_by": "openai"
}
]
}UseDocumentation Index
Fetch the complete documentation index at: https://docs.hicap.ai/llms.txt
Use this file to discover all available pages before exploring further.
GET /v1/models to list public Hicap model IDs. This endpoint does not require authentication. Pass one of these IDs as the model value in OpenAI-compatible endpoints such as chat completions.
curl https://api.hicap.ai/v1/models
{
"object": "list",
"data": [
{
"id": "gpt-5.5",
"object": "model",
"owned_by": "openai"
},
{
"id": "gpt-5.5-pro",
"object": "model",
"owned_by": "openai"
},
{
"id": "gpt-5",
"object": "model",
"owned_by": "openai"
}
]
}
| Model ID | Object | Reference |
|---|---|---|
gpt-5.5 | model | GPT-5.5 Model ↗ |
gpt-5.5-pro | model | GPT-5.5 pro Model ↗ |
Was this page helpful?