> ## Documentation Index
> Fetch the complete documentation index at: https://docs.yutori.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get API key

> Generate a key and make your first API request

1. [Sign up here](https://platform.yutori.com/sign-up) to get started — every account comes with \$5 in free credits.
2. Navigate to [Billing](https://platform.yutori.com/billing), and click "Set Up Billing" to add your payment information.
3. Create an [API key](https://platform.yutori.com/settings).
4. Run the following [`GET /health`](/reference/health) request to confirm connectivity. `/health` is the only public endpoint and does not require an API key.
   ```bash Request theme={null}
     curl --request GET \
     --url https://api.yutori.com/health
   ```
5. Try [creating a Browsing task](/reference/browsing-create)!
   ```bash Request theme={null}
     curl --request POST \
       --url https://api.yutori.com/v1/browsing/tasks \
       --header 'X-API-Key: YOUR_API_KEY' \
       --header 'Content-Type: application/json' \
       --data '{
         "task": "Give me a list of all employees (names and titles) of Yutori.",
         "start_url": "https://yutori.com"
       }'
   ```

<Note>
  Most authenticated API requests accept either header:

  * `X-API-Key: YOUR_API_KEY`
  * `Authorization: Bearer YOUR_API_KEY`

  **Exception — Navigator API (`POST /v1/chat/completions`)**: this endpoint accepts only `Authorization: Bearer YOUR_API_KEY`. `X-API-Key` is not accepted on chat completions, so standard OpenAI clients work unmodified.

  Header names are case-insensitive.
</Note>
