메인 콘텐츠로 건너뛰기
Quote Posts 엔드포인트를 사용하면 특정 게시물을 인용한 포스트를 가져올 수 있습니다. 사용자가 콘텐츠에 대해 어떻게 댓글을 달고 공유하는지 확인해 보세요.

개요

인용 조회

하나의 게시물에 대한 모든 인용 포스트를 조회합니다

참여 인사이트

콘텐츠가 어떻게 논의되고 있는지 확인합니다

엔드포인트

MethodEndpointDescription
GET/2/tweets/:id/quote_tweets게시물에 대한 인용 포스트를 가져옵니다

예시 요청

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"

응답 예시

{
  "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
  }
}

시작하기

사전 준비 사항

빠른 시작

특정 게시물에 대한 인용 포스트 가져오기

API 참조 문서

전체 엔드포인트 문서