Authentication
One token per account. There are no sub-accounts here. If you need separated credentials and per-user limits, that is a proxy product feature.
Finding your token
Section titled “Finding your token”Scraping API → Get Started → API Token in the dashboard. One is generated automatically the first time you open the page.
Sending it
Section titled “Sending it”As a token query parameter, on every request.
curl "http://api.scraping.rayobyte.com/?token=YOUR_TOKEN&url=https://example.com"It works the same on POST and on /balance.
Keep it out of your code
Section titled “Keep it out of your code”The token is in the URL, which means it lands in shell history, server access logs and any proxy in between. Read it from the environment and never commit it.
export RAYOBYTE_TOKEN=...curl -G "http://api.scraping.rayobyte.com/" \ --data-urlencode "token=$RAYOBYTE_TOKEN" \ --data-urlencode "url=https://example.com"If a token leaks, regenerate it from the dashboard. The old one stops working immediately.
Web Unblocker uses different credentials
Section titled “Web Unblocker uses different credentials”Web Unblocker is a proxy port, so it authenticates with a proxy username and password rather than this token. Both draw from the same account.
Was this page helpful?
Thanks — that helps us fix it.