Skip to content

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.

Scraping API → Get Started → API Token in the dashboard. One is generated automatically the first time you open the page.

As a token query parameter, on every request.

Terminal window
curl "http://api.scraping.rayobyte.com/?token=YOUR_TOKEN&url=https://example.com"

It works the same on POST and on /balance.

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.

Terminal window
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 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?