Skip to main content
  1. Sign up here to get access to the API.
  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.
    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"
        }'
    
All API requests must carry the x-api-key: <YOUR_API_KEY> header.