LinkHarborLinkHarbor
ModelsPricingDocsContactStudioChat
Log inStart free
⌘K

Getting Started

  • Quick Start
  • Authentication

API Reference

  • List Models
  • Chat Completions
  • Error Codes

Advanced

  • OpenClaw
  • OpenAI-Compatible
  • Anthropic-Compatible
LinkHarborLinkHarbor

Unified AI model API gateway — access the world's leading LLMs in one place

Product

  • Models
  • Pricing

Resources

  • Docs
  • Contact

Legal

  • Privacy Policy
  • Terms of Service

© 2026 Future Intelligence Pte. Ltd. All rights reserved.

DocsList Models
API Reference
GET

List Models

Returns models through the OpenAI-compatible /v1/models endpoint. Use Authorization: Bearer YOUR_API_KEY for this endpoint.

Request

cURL
curl https://api.linkharbor.ai/v1/models \
  -H "Authorization: Bearer $OPENAI_API_KEY"

Response

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.

JSON
{
  "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"
    }
  ]
}