Newscatcher · Schema

Newscatcher Search Response

Schema for the search response returned by the Newscatcher News API v3 /api/search endpoint.

NewsSearchNLPSentiment AnalysisEntity ExtractionClusteringMedia IntelligenceFinancial IntelligenceArtificial IntelligenceEnterprise

Properties

Name Type Description
status string Status of the response (ok or error).
total_hits integer The total number of articles matching the search query.
page integer The current page number.
total_pages integer The total number of pages available.
page_size integer The number of articles returned per page.
articles array The list of articles matching the search criteria.
user_input object Echo of the user's input parameters.
clusters_count integer The number of article clusters returned (when clustering is enabled).
clusters array Article clusters (returned when clustering_enabled is true).
View JSON Schema on GitHub

JSON Schema

newscatcher-search-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/newscatcher/main/json-schema/newscatcher-search-response-schema.json",
  "title": "Newscatcher Search Response",
  "description": "Schema for the search response returned by the Newscatcher News API v3 /api/search endpoint.",
  "type": "object",
  "required": ["status", "total_hits", "page", "total_pages", "page_size", "articles"],
  "properties": {
    "status": {
      "type": "string",
      "description": "Status of the response (ok or error).",
      "enum": ["ok", "error", "No matches for your search parameters"]
    },
    "total_hits": {
      "type": "integer",
      "description": "The total number of articles matching the search query."
    },
    "page": {
      "type": "integer",
      "description": "The current page number.",
      "minimum": 1
    },
    "total_pages": {
      "type": "integer",
      "description": "The total number of pages available."
    },
    "page_size": {
      "type": "integer",
      "description": "The number of articles returned per page.",
      "minimum": 1,
      "maximum": 1000
    },
    "articles": {
      "type": "array",
      "description": "The list of articles matching the search criteria.",
      "items": {
        "$ref": "newscatcher-article-schema.json"
      }
    },
    "user_input": {
      "type": "object",
      "description": "Echo of the user's input parameters.",
      "properties": {
        "q": {"type": "string"},
        "search_in": {"type": "array", "items": {"type": "string"}},
        "lang": {"type": "array", "items": {"type": "string"}},
        "not_lang": {"type": "array", "items": {"type": "string"}},
        "countries": {"type": "array", "items": {"type": "string"}},
        "not_countries": {"type": "array", "items": {"type": "string"}},
        "from": {"type": "string"},
        "to": {"type": "string"},
        "ranked_only": {"type": "boolean"},
        "from_rank": {"type": "integer"},
        "to_rank": {"type": "integer"},
        "sort_by": {"type": "string"},
        "page_size": {"type": "integer"},
        "page": {"type": "integer"},
        "include_nlp_data": {"type": "boolean"},
        "has_nlp": {"type": "boolean"},
        "theme": {"type": "string"},
        "clustering_enabled": {"type": "boolean"},
        "clustering_threshold": {"type": "number"}
      }
    },
    "clusters_count": {
      "type": "integer",
      "description": "The number of article clusters returned (when clustering is enabled)."
    },
    "clusters": {
      "type": "array",
      "description": "Article clusters (returned when clustering_enabled is true).",
      "items": {
        "$ref": "#/$defs/ClusterEntity"
      }
    }
  },
  "$defs": {
    "ClusterEntity": {
      "type": "object",
      "description": "A cluster of related articles grouped by topic similarity.",
      "required": ["cluster_id", "cluster_size", "articles"],
      "properties": {
        "cluster_id": {
          "type": "string",
          "description": "The unique identifier for the cluster."
        },
        "cluster_size": {
          "type": "integer",
          "description": "The number of articles in the cluster."
        },
        "articles": {
          "type": "array",
          "description": "The articles belonging to this cluster.",
          "items": {
            "$ref": "newscatcher-article-schema.json"
          }
        }
      }
    }
  }
}

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/newscatcher-search-response"
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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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