The Web Content API is deprecated. Use the News, Blogs & Forums APIs instead - same content, one endpoint per content type, and where new features land.
The API returns up to size posts per call (max 100). To collect more, follow the next link.
posts and moreResultsAvailable.next value from the response (or the X-WebHose-Next header).https://api.webz.io and call again.moreResultsAvailable is 0 (or posts is empty).First call:
https://api.webz.io/filterWebContent?token=YOUR_TOKEN&q=bitcoin
Response:
{
"posts": [ ... ],
"moreResultsAvailable": 8200,
"next": "/filterWebContent?token=YOUR_TOKEN&ts=1748000000000&q=bitcoin&ni=abc123"
}Next call:
https://api.webz.io/filterWebContent?token=YOUR_TOKEN&ts=1748000000000&q=bitcoin&ni=abc123
The next URL carries cursor fields (ts, ni, ns) so each page continues where the last one stopped. Use it as-is rather than building it yourself.