Four steps from zero to your first dark web posts. You need an API token with Cyber API permission.
Find your API token in your Webz.io dashboard. Your account must have Cyber API access - without it, requests return 401.
GET
https://api.webz.io/cyberFilter?token=YOUR_TOKEN&q=bitcoin extended.network:tor
In real requests, URL-encode the q value.
The JSON response contains a cyberDocs array plus paging fields:
{
"cyberDocs": [ ... ],
"totalResults": 4210,
"moreResultsAvailable": 4200,
"next": "/cyberFilter?token=YOUR_TOKEN&format=json&ts=1751630400000&q=...",
"requestsLeft": 989,
"warnings": null
}Append the next value to https://api.webz.io and call it again. Repeat until moreResultsAvailable reaches 0. See Pagination.
That's it - you are up and running. Next, sharpen your query with Query Syntax and Filters.
Responses return up to 10 posts each - pagination matters more here than on other Webz.io APIs. See Request Parameters.