Getting Started

Authentication

Authenticate every protected request using the API token from your Qoest dashboard.

#Get Your API Token

You'll receive 100 free credits to test the API.

#Send the Token

Use the token in the Authorization header:

Authorization: Bearer YOUR_API_TOKEN

#Example Request

curl "https://scrapingapi.qoest.com/v1/web" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://httpbin.org/html"}'

#Authentication Errors

  • 401 Unauthorized: missing or invalid token
  • 403 You do not have enough credits to perform this action.: valid token but not enough credits

#Credit Rules

Credits are only deducted for successful requests.