Reuters · Schema

Reuters Connect Search Result

A search response from the Reuters Connect API containing a list of content items matching the search criteria, along with metadata about the total result count and the query that was executed.

BusinessFinanceJournalismMediaNewsWire Service

Properties

Name Type Description
results array Array of content item summaries matching the search criteria.
totalResults integer Total number of items matching the search criteria across all pages.
query string The search query string that was executed.
View JSON Schema on GitHub

JSON Schema

reuters-search-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/kinlane/reuters/json-schema/reuters-search-result-schema.json",
  "title": "Reuters Connect Search Result",
  "description": "A search response from the Reuters Connect API containing a list of content items matching the search criteria, along with metadata about the total result count and the query that was executed.",
  "type": "object",
  "required": [
    "results",
    "totalResults"
  ],
  "properties": {
    "results": {
      "type": "array",
      "description": "Array of content item summaries matching the search criteria.",
      "items": {
        "$ref": "#/$defs/itemSummary"
      }
    },
    "totalResults": {
      "type": "integer",
      "description": "Total number of items matching the search criteria across all pages.",
      "minimum": 0
    },
    "query": {
      "type": "string",
      "description": "The search query string that was executed."
    }
  },
  "$defs": {
    "itemSummary": {
      "type": "object",
      "description": "A summary representation of a content item containing key metadata for display in search results without the full content body.",
      "required": [
        "id",
        "headline"
      ],
      "properties": {
        "id": {
          "type": "string",
          "description": "The unique identifier for the item, typically in tag URI format.",
          "examples": [
            "tag:reuters.com,2025:newsml_L1N3KT0AB:1"
          ]
        },
        "guid": {
          "type": "string",
          "description": "A globally unique identifier for the item regardless of version."
        },
        "version": {
          "type": "string",
          "description": "The version number of this item revision."
        },
        "headline": {
          "type": "string",
          "description": "The headline or title of the content item."
        },
        "dateCreated": {
          "type": "string",
          "format": "date-time",
          "description": "The date and time when the item was originally created."
        },
        "dateModified": {
          "type": "string",
          "format": "date-time",
          "description": "The date and time when the item was last modified."
        },
        "channel": {
          "type": "string",
          "description": "The alias of the channel this item belongs to."
        },
        "mediaType": {
          "type": "string",
          "description": "The media type of the content.",
          "enum": [
            "TEXT",
            "PICTURE",
            "VIDEO",
            "GRAPHIC",
            "COMPOSITE"
          ]
        },
        "slug": {
          "type": "string",
          "description": "A short keyword slug summarizing the item topic."
        }
      }
    }
  }
}

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/reuters-search-result"
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.