Skip to main content
GET
/
2
/
news
/
{id}
Get news stories by ID
curl --request GET \
  --url https://api.x.com/2/news/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "category": "<string>",
    "cluster_posts_results": [
      {
        "post_id": "1346889436626259968"
      }
    ],
    "contexts": {
      "entities": {
        "events": [
          "<string>"
        ],
        "organizations": [
          "<string>"
        ],
        "people": [
          "<string>"
        ],
        "places": [
          "<string>"
        ],
        "products": [
          "<string>"
        ]
      },
      "finance": {
        "tickers": [
          "<string>"
        ]
      },
      "sports": {
        "teams": [
          "<string>"
        ]
      },
      "topics": [
        "<string>"
      ]
    },
    "disclaimer": "<string>",
    "hook": "<string>",
    "keywords": [
      "<string>"
    ],
    "last_updated_at_ms": "2025-7-14T04:35:55Z",
    "name": "<string>",
    "rest_id": "2244994945",
    "summary": "<string>"
  },
  "errors": [
    {
      "detail": "<string>",
      "status": 123,
      "title": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The ID of the news story.

Example:

"2244994945"

Query Parameters

news.fields
enum<string>[]

A comma separated list of News fields to display.

Minimum length: 1
Example:
[
"category",
"cluster_posts_results",
"contexts",
"disclaimer",
"hook",
"id",
"keywords",
"name",
"summary",
"updated_at"
]

Response

The request has succeeded.

data
object

An AI generated news story.

errors
object[]
Minimum length: 1