Get an API key
The Teeline REST APIrequires a personal API key for every endpoint except /api/v1/health. Getting one takes about a minute — no account, no password, no third-party sign-in. Your passkey (stored by your browser or password manager) is your identity.
Loading…
Save it now — it's shown once
Your new key (it looks like ak_…) is revealed exactly once, right after you create it. We only store a fingerprint of it, so it can never be shown to you again.
Copy it straight into a password manager (1Password, Bitwarden, or similar) before you refresh or leave the page. If you lose it, there's no way to recover it — revoke it on this page and create a new one.
Using your key
Send it as a bearer token on every request:
curl -H "Authorization: Bearer ak_your_key_here" \
https://api.tspsolver.com/api/v1/solversAn X-Api-Key header works the same way, if that fits your tooling better:
curl -H "X-Api-Key: ak_your_key_here" \
https://api.tspsolver.com/api/v1/solversManaging or revoking a key
Sign back in with your passkey any time — you'll land on your keys, where you can add more or revoke ones you no longer use.
For the full list of endpoints, request/response shapes, and to try requests directly in the browser, see theAPI reference (Scalar docs).