TheNewsAPI · Schema

Article

A news article from TheNewsAPI with full metadata.

NewsArticlesHeadlinesMediaAggregationReal-Time

Properties

Name Type Description
uuid string Unique identifier for the article.
title string Article headline.
description stringnull Short summary or excerpt of the article.
keywords stringnull Comma-separated keywords associated with the article.
snippet stringnull Brief text snippet from the article body.
url string Full URL to the original article.
image_url stringnull URL of the article's primary image, if available.
language string ISO 639-1 language code (e.g., en, es, fr).
published_at string UTC timestamp when the article was published.
source string Domain of the source publication (e.g., bbc.com).
categories array Categories the article belongs to.
relevance_score numbernull Relevance score when sorting by relevance. Null when not applicable.
locale string Country code locale of the article (e.g., us, gb, ca).
similar array Array of similar articles (present in headlines response when include_similar=true).
View JSON Schema on GitHub

JSON Schema

article.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.thenewsapi.com/schemas/article.json",
  "title": "Article",
  "description": "A news article from TheNewsAPI with full metadata.",
  "type": "object",
  "properties": {
    "uuid": {
      "type": "string",
      "format": "uuid",
      "description": "Unique identifier for the article."
    },
    "title": {
      "type": "string",
      "description": "Article headline."
    },
    "description": {
      "type": ["string", "null"],
      "description": "Short summary or excerpt of the article."
    },
    "keywords": {
      "type": ["string", "null"],
      "description": "Comma-separated keywords associated with the article."
    },
    "snippet": {
      "type": ["string", "null"],
      "description": "Brief text snippet from the article body."
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "Full URL to the original article."
    },
    "image_url": {
      "type": ["string", "null"],
      "format": "uri",
      "description": "URL of the article's primary image, if available."
    },
    "language": {
      "type": "string",
      "minLength": 2,
      "maxLength": 5,
      "description": "ISO 639-1 language code (e.g., en, es, fr)."
    },
    "published_at": {
      "type": "string",
      "format": "date-time",
      "description": "UTC timestamp when the article was published."
    },
    "source": {
      "type": "string",
      "description": "Domain of the source publication (e.g., bbc.com)."
    },
    "categories": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": ["general", "science", "sports", "business", "health", "entertainment", "tech", "politics", "food", "travel"]
      },
      "description": "Categories the article belongs to."
    },
    "relevance_score": {
      "type": ["number", "null"],
      "description": "Relevance score when sorting by relevance. Null when not applicable."
    },
    "locale": {
      "type": "string",
      "description": "Country code locale of the article (e.g., us, gb, ca)."
    },
    "similar": {
      "type": "array",
      "items": {
        "$ref": "#"
      },
      "description": "Array of similar articles (present in headlines response when include_similar=true)."
    }
  },
  "required": ["uuid", "title", "url", "language", "published_at", "source"],
  "additionalProperties": false
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/article"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.