Webz.io logoDocs
Overview
Start Here
News, Blogs, Forums & Reviews APIs
News Search API
Firehose
Cyber API
Data Breaches API
News, Blogs, Forums & Reviews Archive
Web Content API (Deprecated)
What Is the Web Content API
Use Cases
Quickstart
Webz.io logo
Overview
Start Here
News, Blogs, Forums & Reviews APIs
News Search API
Firehose
Cyber API
Data Breaches API
News, Blogs, Forums & Reviews Archive
Web Content API (Deprecated)
What Is the Web Content API
Use Cases
Quickstart

On this page

No sections

Webz.io DocumentationContact our team© 2026

Quickstart

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.

1. Get your token

Find your API token in your Webz.io dashboard. Every request needs it.

2. Run a query

GET

https://api.webz.io/filterWebContent?token=YOUR_TOKEN&q=title:bitcoin language:english

In real requests, URL-encode the q value.

3. Read the response

The JSON response contains a posts array plus paging fields:

json
{
  "posts": [ ... ],
  "totalResults": 12453,
  "moreResultsAvailable": 12353,
  "next": "/filterWebContent?token=YOUR_TOKEN&ts=1748000000000&q=...",
  "requestsLeft": 989
}

4. Get the next page

Append the next value to https://api.webz.io and call it again. See Pagination.

Default coverage is the last 3 days. To go further back set ts, and beyond 31 days set allowNewsHistory=true - see Time Range & News History.

Last updated: July 28, 2026
PreviousUse CasesNextQuery Syntax