Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

Authentication

Requests are authenticated with the Api-Key header.

Api-Key: abc123def456ghi789jkl012mno345pq
  • Token value: 32-character string issued to your account.
  • Required on every request. Missing or invalid token → 401.
Terminal window
curl -H "Api-Key: $API_KEY" https://api.telesint.dev/v1/me/

Call POST /v1/me/reset-token with the current token, or rotate via the bot. Once processing succeeds, the old token is invalidated immediately.

  • Never commit the token to git. Use environment variables or a secret manager.
  • Don’t ship the token into browser JavaScript — this API is server-to-server.