OpenAI-compatible gateway

LinkIt

Your own AI. Your own keys. Your own rules.

A clean API layer for private models, live web context, and self-hosted control. Built for teams that want modern AI capability without handing away the steering wheel.

LIVE GATEWAY
linkithealthz
{ "status": "ok", "service": "LinkIt" }
modelOpenAI-compatible chat completions
toolsweb search + private context
Response stream ready

Built for serious AI work.

LinkIt gives you a familiar API surface with the controls you need when the stack belongs to you.

Real-time web search

Inject fresh search context into chat responses when a request depends on what is happening now.

Private & self-hosted

Keep keys, prompts, retrieval, and gateway policy under your control from local dev to production.

OpenAI-compatible API

Point existing SDKs and apps at LinkIt with the chat completions format they already understand.

From key to first response.

A small path from setup to shipping, with the gateway doing the routing work behind the scenes.

01

Get your API key

Create a LinkIt key and store it wherever your app already manages secrets.

02

Connect your app

Use the OpenAI-compatible endpoint from backend services, agents, tools, or internal dashboards.

03

Start building

Stream responses, add retrieval, enable search context, and keep the whole loop under your rules.

Drop-in API access.

Use the same request shape your tools already know, with LinkIt as the gateway to your model stack.

chat-completions.sh POST /v1/chat/completions
curl -X POST https://gateway.linkitai.workers.dev/v1/chat/completions \
  -H "Authorization: Bearer $LINKIT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "LinkIt",
    "messages": [
      {
        "role": "user",
        "content": "Search for the latest AI infrastructure news"
      }
    ],
    "stream": true
  }'