> ## Documentation Index
> Fetch the complete documentation index at: https://generaltranslation.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Publications citées

> Récupérer les Publications citées pour une Publication spécifique

export const Button = ({href, children}) => {
  return <div className="not-prose group">
    <a href={href}>
      <button className="flex items-center space-x-2.5 py-1 px-4 bg-primary-dark dark:bg-white text-white dark:text-gray-950 rounded-full group-hover:opacity-[0.9] font-medium">
        <span>
          {children}
        </span>
        <svg width="3" height="24" viewBox="0 -9 3 24" class="h-6 rotate-0 overflow-visible"><path d="M0 0L3 3L0 6" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"></path></svg>
      </button>
    </a>
  </div>;
};

L’endpoint Quote Posts vous permet de récupérer les Publications qui citent une Publication donnée. Découvrez comment les utilisateurs commentent et partagent du contenu.

<div id="overview">
  ## Vue d’ensemble
</div>

<CardGroup cols={2}>
  <Card title="Recherche de Publications citées" icon="quote-right">
    Récupérer toutes les Publications citées d’une Publication
  </Card>

  <Card title="Aperçu de l’engagement" icon="chart-line">
    Voir comment le contenu est commenté
  </Card>
</CardGroup>

***

<div id="endpoint">
  ## Endpoint
</div>

| Method | Endpoint                                                         | Description                                         |
| :----- | :--------------------------------------------------------------- | :-------------------------------------------------- |
| GET    | [`/2/tweets/:id/quote_tweets`](/fr/x-api/posts/get-quoted-posts) | Récupérer les Publications citées d’une Publication |

***

<div id="example-request">
  ## Exemple de requête
</div>

```bash theme={null}
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"
```

<div id="example-response">
  ## Exemple de réponse
</div>

```json theme={null}
{
  "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
  }
}
```

***

<div id="getting-started">
  ## Premiers pas
</div>

<Note>
  **Prérequis**

  * Un [compte développeur](https://developer.x.com/en/portal/petition/essential/basic-info) approuvé
  * Un [Project and App](/fr/resources/fundamentals/developer-apps) dans la Console de développement
  * Les [clés et jetons](/fr/resources/fundamentals/authentication) de votre App
</Note>

<CardGroup cols={2}>
  <Card title="Démarrage rapide" icon="rocket" href="/fr/x-api/posts/quote-tweets/quickstart">
    Obtenir les Publications citées d’une Publication
  </Card>

  <Card title="Référence de l’API" icon="code" href="/fr/x-api/posts/quote-tweets-lookup">
    Documentation complète du point de terminaison
  </Card>
</CardGroup>
