Webz.io logoDocs
Overview
Start Here
News, Blogs, Forums & Reviews APIs
What Are the News, Blogs & Forums APIs
News API
Blogs API
Forums API
API Reference
Query Syntax
Time Range & History
Endpoints & Authentication
Request Parameters
Response Format
Pagination
Segmentation API
Errors, Rate Limits & Credits
Facts Check API
Request Sources API
Reviews API
News Search API
Firehose
Cyber API
Data Breaches API
News, Blogs, Forums & Reviews Archive
Web Content API (Deprecated)
Webz.io logo
Overview
Start Here
News, Blogs, Forums & Reviews APIs
What Are the News, Blogs & Forums APIs
News API
Blogs API
Forums API
API Reference
Query Syntax
Time Range & History
Endpoints & Authentication
Request Parameters
Response Format
Pagination
Segmentation API
Errors, Rate Limits & Credits
Facts Check API
Request Sources API
Reviews API
News Search API
Firehose
Cyber API
Data Breaches API
News, Blogs, Forums & Reviews Archive
Web Content API (Deprecated)

On this page

No sections

Webz.io DocumentationContact our team© 2026

Response Format

Search responses are JSON with the same envelope on all three products - your parsing code works everywhere.

json
{
  "posts": [
    {
      "uuid": "6bd4f2f1a2...",
      "url": "https://www.example.com/article",
      "title": "Example headline",
      "text": "Full extracted text of the post...",
      "language": "english",
      "published": "2026-07-04T11:20:00.000+03:00",
      "thread": {
        "site": "example.com",
        "site_type": "news",
        "...": "..."
      },
      "...": "..."
    }
  ],
  "next": "/api/news?q=bitcoin&ts=1751713632000&ni=6bd4f2f1a2...",
  "total_results": 12453,
  "more_results_available": 12353,
  "requests_left": 989,
  "warnings": null
}

Envelope fields

FieldTypeDescription
postsarrayMatching posts - see post data fields for News, Blogs, or Forums
nextstringRelative URL of the next page. Append it to https://api.webz.io - see Pagination
total_resultsintegerTotal posts matching the query
more_results_availableintegerPosts still available after this page
requests_leftintegerYour remaining credit balance
warningsarrayQuery issues, only when warning=true was sent. Each has message, type, level

Migrating from the deprecated Web Content API? Meta fields are snake_case here: rename totalResults to total_results, moreResultsAvailable to more_results_available, and requestsLeft to requests_left. The posts structure is unchanged.

Last updated: July 28, 2026
PreviousRequest ParametersNextPagination