Skip to main content
  1. Sign up here to get started — every account comes with $5 in free credits.
  2. Navigate to Billing, and click “Set Up Billing” to add your payment information.
  3. Create an API key.
  4. Run the following GET /health request to confirm connectivity. /health is the only public endpoint and does not require an API key.
    Request
      curl --request GET \
      --url https://api.yutori.com/health
    
  5. Try creating a Browsing task!
    Request
      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"
        }'
    
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.