Returns models through the OpenAI-compatible /v1/models endpoint. Use Authorization: Bearer YOUR_API_KEY for this endpoint.
curl https://api.linkharbor.ai/v1/models \
-H "Authorization: Bearer $OPENAI_API_KEY"Returns an object with a data array. Each entry contains a model id you can pass to OpenAI-compatible Chat Completions; actual IDs come from the live catalog.
{
"object": "list",
"data": [
{
"id": "your-model-name",
"object": "model",
"created": 1715367049,
"owned_by": "linkharbor"
},
{
"id": "anthropic/model-name",
"object": "model",
"created": 1729382400,
"owned_by": "linkharbor"
},
{
"id": "google/model-name",
"object": "model",
"created": 1715904000,
"owned_by": "linkharbor"
}
]
}