Real-time web search
Inject fresh search context into chat responses when a request depends on what is happening now.
OpenAI-compatible gateway
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.
LinkIt gives you a familiar API surface with the controls you need when the stack belongs to you.
Inject fresh search context into chat responses when a request depends on what is happening now.
Keep keys, prompts, retrieval, and gateway policy under your control from local dev to production.
Point existing SDKs and apps at LinkIt with the chat completions format they already understand.
A small path from setup to shipping, with the gateway doing the routing work behind the scenes.
Create a LinkIt key and store it wherever your app already manages secrets.
Use the OpenAI-compatible endpoint from backend services, agents, tools, or internal dashboards.
Stream responses, add retrieval, enable search context, and keep the whole loop under your rules.
Use the same request shape your tools already know, with LinkIt as the gateway to your model stack.
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
}'