Skip to main content
  1. Sign up here to get access to the API.
  2. Once you get access, log in to scouts.yutori.com using your email.
  3. Navigate to Settings > Billing > Manage API Billing to add your pay-as-you-go information. Navigate to Billing
  4. Generate an API key. Generate an API key from Settings
  5. Run the following GET /health request to confirm connectivity.
    Request
      curl --request GET \
      --url https://api.yutori.com/health
    
  6. 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.