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)
Endpoint & Authentication
Request Parameters
Output Format
Post Data Fields
Pagination
Rate Limits & Errors
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)
Endpoint & Authentication
Request Parameters
Output Format
Post Data Fields
Pagination
Rate Limits & Errors

On this page

No sections

Webz.io DocumentationContact our team© 2026

Output Format

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.

By default the API returns JSON.

Top-level fields

FieldDescription
postsArray of matching posts. See Post Data Fields.
totalResultsTotal number of posts matching the query.
moreResultsAvailablePosts still available beyond the current response.
nextRelative URL for the next page. See Pagination.
requestsLeftAPI calls remaining on your plan.
warningsQuery-validation warnings (when warning=true or when a limit was applied).

Example

json
{
  "posts": [
    {
      "uuid": "abc123def456...",
      "url": "https://example.com/article",
      "title": "Example headline",
      "text": "Full article text...",
      "language": "english",
      "published": "2026-05-30T10:15:00.000+03:00",
      "sentiment": "neutral",
      "thread": {
        "site": "example.com",
        "site_type": "news",
        "country": "US"
      }
    }
  ],
  "totalResults": 12453,
  "moreResultsAvailable": 12353,
  "next": "/filterWebContent?token=YOUR_TOKEN&ts=1748000000000&q=...",
  "requestsLeft": 989
}

Response headers

HeaderDescription
X-WebHose-NextSame value as next.
X-WebHose-Requests-LeftSame value as requestsLeft.

Other formats

Set format to xml, rss, or excel to receive the same results in those formats instead of JSON.

Last updated: July 5, 2026
PreviousRequest ParametersNextPost Data Fields