Skip to main content
The Quote Posts endpoint lets you retrieve Posts that quote a specific Post. See how users are commenting on and sharing content.

Overview

Quote lookup

Get all Quote Posts for a Post

Engagement insight

See how content is being discussed

Endpoint

MethodEndpointDescription
GET/2/tweets/:id/quote_tweetsGet Quote Posts for a Post

Example request

curl "https://api.x.com/2/tweets/1234567890/quote_tweets?\
tweet.fields=created_at,author_id,public_metrics&\
expansions=author_id&\
user.fields=username" \
  -H "Authorization: Bearer $BEARER_TOKEN"

Example response

{
  "data": [
    {
      "id": "9876543210",
      "text": "Great point! This is exactly what we need.",
      "author_id": "1111111111",
      "created_at": "2024-01-15T10:30:00.000Z"
    }
  ],
  "includes": {
    "users": [
      {
        "id": "1111111111",
        "username": "example_user"
      }
    ]
  },
  "meta": {
    "result_count": 1
  }
}

Getting started

Prerequisites