Refinitiv Eikon · Schema

NewsHeadlinesResponse

Response containing news headlines matching the query.

AnalyticsFinancial DataFinancial NewsMarket DataReal-Time DataTrading

Properties

Name Type Description
data array Array of news headline entries.
meta object Pagination metadata.
View JSON Schema on GitHub

JSON Schema

refinitiv-eikon-newsheadlinesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NewsHeadlinesResponse",
  "title": "NewsHeadlinesResponse",
  "type": "object",
  "description": "Response containing news headlines matching the query.",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of news headline entries.",
      "items": {
        "$ref": "#/components/schemas/NewsHeadline"
      }
    },
    "meta": {
      "type": "object",
      "description": "Pagination metadata.",
      "properties": {
        "count": {
          "type": "integer",
          "description": "Total number of matching headlines."
        },
        "next": {
          "type": "string",
          "description": "Cursor for the next page of results."
        }
      }
    }
  }
}