Skip to main content

Authentication

The API uses Bearer authentication with a Youka API key. Create one at online.youka.io/account under API keys.

Send the API key

Authorization: Bearer yk_...
  • Store the API key outside your source tree.
  • Inject it at runtime through environment variables or a secrets manager.
  • Send the header on every request, including polling requests.

Example

curl https://api.youka.io/api/v1/projects/proj_123 \
  -H "Authorization: Bearer yk_..."