Sekai LinkDocs

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

Free
$0
  • 3 credentials
  • 10,000 requests/month
  • Basic support
PlusBest Value
$12
  • 10 credentials
  • Unlimited requests
  • Priority support
Pro
$25
  • Unlimited credentials
  • Unlimited requests
  • 24/7 support

Create a Credential

  1. 01Go to the Sekai Link dashboard and sign in with Google.
  2. 02Click Create Credentials and give it a name (e.g. Production_Web_Main).
  3. 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.

Requirements
  • 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.

  1. 01Download the collection file above.
  2. 02Open Bruno, Postman, or Insomnia and import the JSON file.
  3. 03Edit the collection variables:
url_providerhttps://sekailink.vercel.app/t_YOUR_CODE
api_keysk_YOUR_API_KEY
  1. 04Send the List Models request to verify connectivity.
  2. 05Send Chat Completion to test a full conversation round-trip.
Collection Preview
{
  "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"
      }
    }
  ]
}