Getting Started
Authentication
Authenticate every protected request using the API token from your Qoest dashboard.
#Get Your API Token
- Sign up at developers.qoest.com/register
- Verify your email
- Open your dashboard
- Copy 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 token403 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.