> ## 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.

# Retweets de mes Publications

> Récupérez vos Publications qui ont été retweetées

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>;
};

Ce guide vous explique comment récupérer vos Publications qui ont été retweetées par d'autres utilisateurs.

<Note>
  **Prérequis**

  Avant de commencer, vous aurez besoin de :

  * d'un [compte développeur](https://developer.x.com/en/portal/petition/essential/basic-info) avec une App approuvée
  * d'un jeton d'accès utilisateur (OAuth 1.0a ou OAuth 2.0 PKCE)
</Note>

***

<div id="why-use-retweets-of-me">
  ## Pourquoi utiliser Retweets of Me ?
</div>

L’endpoint Retweets of Me vous aide à :

* **Suivre l’engagement** — voir quelles de vos Publications sont partagées
* **Comprendre la résonance** — découvrir quels contenus trouvent un écho auprès de votre audience
* **Orienter votre stratégie** — ajuster votre stratégie de contenu en fonction des tendances de partage

***

<div id="get-your-retweeted-posts">
  ## Récupérer vos Publications retweetées
</div>

<CodeGroup dropdown>
  ```bash cURL theme={null}
  curl "https://api.x.com/2/users/reposts_of_me?\
  tweet.fields=created_at,public_metrics&\
  max_results=10" \
    -H "Authorization: Bearer $USER_ACCESS_TOKEN"
  ```

  ```python Python SDK theme={null}
  from xdk import Client

  client = Client(bearer_token="YOUR_USER_ACCESS_TOKEN")

  # Récupérer vos Publications retweetées
  for page in client.posts.get_reposts_of_me(
      tweet_fields=["created_at", "public_metrics"],
      max_results=10
  ):
      for post in page.data:
          print(f"{post.text[:50]}... - Retweets: {post.public_metrics.retweet_count}")
  ```

  ```javascript JavaScript SDK theme={null}
  import { Client } from "@xdevplatform/xdk";

  const client = new Client({ accessToken: "YOUR_USER_ACCESS_TOKEN" });

  // Récupérer vos Publications retweetées
  const paginator = client.posts.getRepostsOfMe({
    tweetFields: ["created_at", "public_metrics"],
    maxResults: 10,
  });

  for await (const page of paginator) {
    page.data?.forEach((post) => {
      console.log(`${post.text?.slice(0, 50)}... - Retweets: ${post.public_metrics?.retweet_count}`);
    });
  }
  ```
</CodeGroup>

***

<div id="response">
  ## Réponse
</div>

```json theme={null}
{
  "data": [
    {
      "id": "1848781937210802364",
      "text": "ever wanted to discover trends.. before they're trends?...",
      "created_at": "2024-01-15T10:30:00.000Z",
      "public_metrics": {
        "retweet_count": 42,
        "reply_count": 5,
        "like_count": 156,
        "quote_count": 8
      },
      "edit_history_tweet_ids": ["1848781937210802364"]
    },
    {
      "id": "1847990559081648620",
      "text": "posting is just journaling with an audience",
      "created_at": "2024-01-14T15:20:00.000Z",
      "public_metrics": {
        "retweet_count": 28,
        "reply_count": 12,
        "like_count": 89,
        "quote_count": 3
      },
      "edit_history_tweet_ids": ["1847990559081648620"]
    }
  ],
  "meta": {
    "result_count": 2,
    "next_token": "7140dibdnow9c7btw481s8m561gat797rboud5r80xvzm"
  }
}
```

***

<div id="filter-by-time-range">
  ## Filtrer par plage temporelle
</div>

Obtenez les Publications retweetées sur une période spécifique :

<CodeGroup dropdown>
  ```bash cURL theme={null}
  curl "https://api.x.com/2/users/reposts_of_me?\
  start_time=2024-01-01T00%3A00%3A00Z&\
  end_time=2024-01-31T23%3A59%3A59Z&\
  tweet.fields=created_at,public_metrics" \
    -H "Authorization: Bearer $USER_ACCESS_TOKEN"
  ```

  ```python Python SDK theme={null}
  from xdk import Client

  client = Client(bearer_token="YOUR_USER_ACCESS_TOKEN")

  # Obtenir les Publications retweetées sur une plage temporelle
  for page in client.posts.get_reposts_of_me(
      start_time="2024-01-01T00:00:00Z",
      end_time="2024-01-31T23:59:59Z",
      tweet_fields=["created_at", "public_metrics"]
  ):
      for post in page.data:
          print(f"{post.created_at}: {post.text[:50]}...")
  ```

  ```javascript JavaScript SDK theme={null}
  import { Client } from "@xdevplatform/xdk";

  const client = new Client({ accessToken: "YOUR_USER_ACCESS_TOKEN" });

  // Obtenir les Publications retweetées sur une plage temporelle
  const paginator = client.posts.getRepostsOfMe({
    startTime: "2024-01-01T00:00:00Z",
    endTime: "2024-01-31T23:59:59Z",
    tweetFields: ["created_at", "public_metrics"],
  });

  for await (const page of paginator) {
    page.data?.forEach((post) => {
      console.log(`${post.created_at}: ${post.text?.slice(0, 50)}...`);
    });
  }
  ```
</CodeGroup>

***

<div id="common-parameters">
  ## Paramètres communs
</div>

| Paramètre          | Description                                              | Valeur par défaut |
| :----------------- | :------------------------------------------------------- | :---------------- |
| `max_results`      | Résultats par page (1-100)                               | 10                |
| `start_time`       | Horodatage de la Publication la plus ancienne (ISO 8601) | —                 |
| `end_time`         | Horodatage de la Publication la plus récente (ISO 8601)  | —                 |
| `pagination_token` | Jeton pour la page suivante                              | —                 |
| `tweet.fields`     | Champs supplémentaires pour la Publication               | `id`, `text`      |

***

<div id="next-steps">
  ## Prochaines étapes
</div>

<CardGroup cols={2}>
  <Card title="Recherche de Retweets" icon="retweet" href="/fr/x-api/posts/retweets/quickstart/retweets-lookup">
    Voir qui a Retweeté une Publication
  </Card>

  <Card title="Gérer les Retweets" icon="share" href="/fr/x-api/posts/retweets/quickstart/manage-retweets">
    Retweeter et annuler des Retweets
  </Card>

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