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

Facts Check API

Webz.io Facts Check uses AI to identify factual claims in online text, then cross-checks them against sources on the web. Each claim is marked true, false, or unverified when no references are found.

Try it in the Playground.

Requests

Use either of the following request forms:

ParameterDescriptionRequest
uuidUUID of an existing post.GET
post_textText to analyze; include the post title and text.POST
post_linkLink to the post.POST
datePost publication date.POST
tokenYour Webz.io token.GET or POST
http
GET https://api.webz.io/fact-check?token=[USER_TOKEN]&uuid=[POST_UUID]
http
POST https://api.webz.io/fact-check?token=[USER_TOKEN]&post_text=[POST_TITLE+POST_TEXT]&post_link=[POST_LINK]&date=[POST_PUBLISHED_DATE]

post_text must contain between 100 and 10,000 characters.

Response

FieldDescription
biasDetected political bias of the site.
claims[].claimClaim extracted from the submitted post.
claims[].verifiedVerification result: true, false, or unverified.
claims[].referencesSources used to verify the claim.
claims[].references[].textSupporting source text.
claims[].references[].linkSupporting source link.
json
{
  "bias": "left",
  "claims": [
    {
      "claim": "Iran's Supreme Leader Ayatollah Ali Khamenei has...",
      "verified": "true",
      "references": [
        {
          "text": "Iran leader Khamenei sees his inner circle hollowed out...",
          "link": "https://www.reuters.com/world/middle-east/"
        }
      ]
    }
  ]
}

Errors and credits

StatusMeaning
204No relevant facts were found.
400The request is invalid, including an invalid UUID or invalid text input.
401The token is missing or incorrect.
402There are not enough API calls available.

Facts Check is a premium feature. Each request consumes five API calls.

Last updated: August 6, 2026
PreviousErrors, Rate Limits & CreditsNextRequest Sources API