What is Sekai Link?
Sekai Link is a secure tunnel that connects cloud AI tools to local LLM servers. It exposes an HTTPS endpoint that proxies requests to your local Ollama instance with zero data exposure — all processing stays on your hardware.
Install a lightweight binary (sekai-server) on your machine, point it at your local LLM, and get a public URL — https://sekailink.vercel.app/t_YOUR_CODE — that you can use from any OpenAI-compatible client.
Plans
- ✓ 3 credentials
- ✓ 10,000 requests/month
- ✓ Basic support
- ✓ 10 credentials
- ✓ Unlimited requests
- ✓ Priority support
- ✓ Unlimited credentials
- ✓ Unlimited requests
- ✓ 24/7 support
Create a Credential
- 01Go to the Sekai Link dashboard and sign in with Google.
- 02Click Create Credentials and give it a name (e.g. Production_Web_Main).
- 03Copy the URL Provider and API Key — you will need both for the next step.
Install sekai-server
Run this command in your terminal to download and start the tunnel binary. It will run in the background and automatically connect to your local LLM.
curl -sL https://sekailink.vercel.app/install | sh -s -- \ --url-provider=https://sekailink.vercel.app/t_YOUR_CODE \ --api-key=YOUR_API_KEY
Replace t_YOUR_CODE with your URL Provider code and YOUR_API_KEY with your API key. The binary will start in the background and poll for incoming requests.
- ✓Ollama (or any OpenAI-compatible server, e.g. LiteLLM) running locally on port 11434
- ✓An active Internet connection
- ✓macOS, Linux, or Windows
Test with Bruno / Postman / Insomnia
Download the Sekai Link collection and import it into Bruno (recommended), Postman, or Insomnia. Set your url_provider and api_key variables to start testing.
- 01Download the collection file above.
- 02Open Bruno, Postman, or Insomnia and import the JSON file.
- 03Edit the collection variables:
https://sekailink.vercel.app/t_YOUR_CODEsk_YOUR_API_KEY- 04Send the List Models request to verify connectivity.
- 05Send Chat Completion to test a full conversation round-trip.
{
"info": {
"name": "Sekai Link",
"description": "Test your Sekai Link tunnel connection"
},
"variable": [
{ "key": "url_provider", "value": "https://sekailink.vercel.app/YOUR_CODE" },
{ "key": "api_key", "value": "YOUR_API_KEY" }
],
"item": [
{
"name": "List Models",
"request": {
"method": "GET",
"header": [
{ "key": "x-api-key", "value": "{{api_key}}" }
],
"url": "{{url_provider}}/v1/models"
}
},
{
"name": "Chat Completion",
"request": {
"method": "POST",
"header": [
{ "key": "Content-Type", "value": "application/json" },
{ "key": "x-api-key", "value": "{{api_key}}" }
],
"body": {
"mode": "raw",
"raw": "{ \"model\": \"llama3.2:3b\", \"messages\": [...] }"
},
"url": "{{url_provider}}/v1/chat/completions"
}
}
]
}