Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.youka.io/llms.txt

Use this file to discover all available pages before exploring further.

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_..."