Four steps from zero to your first records. You need an API token with Leaked Cookies API permission.
Find your API token in your Webz.io dashboard. Your account must have Leaked Cookies API access - without it, requests return 401.
GET
https://api.webz.io/cookies?token=YOUR_TOKEN&domain=example.com
Every request needs a token and a domain. Send the bare domain (example.com) - schemes, paths, and ports are ignored.
The JSON response contains a records array plus paging and status fields:
{
"records": [ ... ],
"totalResults": 105,
"moreResultsAvailable": 5,
"next": "/cookies?token=YOUR_TOKEN&domain=example.com&next=CURSOR",
"requestsLeft": 989,
"domainStatus": "active"
}If this is the first time anyone queried the domain, domainStatus is pending and records may be empty - come back in a few minutes.
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, learn the Filters and Record Data Fields.
Responses return up to 100 records each. There is no default time window - a query covers everything collected for the domain. See Request Parameters.