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

# Descripción general de la migración de los endpoints de Reposts

> Migra la consulta, creación y eliminación de Reposts (retweets) desde Standard v1.1 a X API v2 con comparaciones lado a lado de endpoints, parámetros y límites.

## Comparación de los endpoints de Retweets de la X API

**Retweets lookup**

El endpoint v2 de Retweets lookup reemplazará a los endpoints estándar [v1.1 GET statuses/retweets/:id](https://developer.x.com/en/docs/twitter-api/v1/tweets/post-and-engage/api-reference/get-statuses-retweets-id) y [v1.1 GET statuses/retweets/:ids](https://developer.x.com/en/docs/twitter-api/v1/tweets/post-and-engage/api-reference/get-statuses-retweeters-ids).

Las siguientes tablas comparan los endpoints estándar v1.1 y de X API v2 de Retweets:

| Description                                                                                                                                                    | Standard v1.1                                               | X API v2                                                                                                                                                                                                                                                                                                                                                                   |
| :------------------------------------------------------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Métodos HTTP admitidos                                                                                                                                         | GET                                                         | GET                                                                                                                                                                                                                                                                                                                                                                        |
| Host domain                                                                                                                                                    | [https://api.x.com](https://api.x.com)                      | [https://api.x.com](https://api.x.com)                                                                                                                                                                                                                                                                                                                                     |
| Endpoint path                                                                                                                                                  | /1.1/retweeters/id.json<br /><br />`/1.1/retweets/ids.json` | /2/users/:id/retweeted\_by                                                                                                                                                                                                                                                                                                                                                 |
| [Autenticación](/resources/fundamentals/authentication)                                                                                                        | OAuth 1.0a User Context                                     | OAuth 2.0 Bearer Token<br /><br />OAuth 1.0a User Context                                                                                                                                                                                                                                                                                                                  |
| [Límites de tasa](/resources/fundamentals/rate-limits) de solicitud predeterminados                                                                            | 75 solicitudes por 15 min                                   | 75 solicitudes por 15 min (por App)<br /><br />75 solicitudes por 15 min (por usuario)                                                                                                                                                                                                                                                                                     |
| Formato de datos                                                                                                                                               | Formato Standard v1.1                                       | [Formato X API v2](/x-api/fundamentals/data-dictionary) (determinado por los parámetros de solicitud fields y expansions, no es retrocompatible con formatos v1.1)<br /><br />Para obtener más información sobre cómo migrar del formato Standard v1.1 al formato X API v2, visita nuestra [guía de migración de formatos de datos](/x-api/migrate/data-format-migration). |
| Requiere el uso de credenciales de una [developer App](/resources/fundamentals/developer-apps) asociada a un [Project](/resources/fundamentals/developer-apps) |                                                             | ✔️                                                                                                                                                                                                                                                                                                                                                                         |

### Manage Retweets

Las siguientes tablas comparan los endpoints estándar v1.1 y de X API v2 para deshacer Retweet:

**Retweetear un Post**

| Description                                                                                                                                                    | Standard v1.1                                                                                                            | X API v2                                                                                                                                                                    |
| :------------------------------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Métodos HTTP admitidos                                                                                                                                         | POST                                                                                                                     | POST                                                                                                                                                                        |
| Host domain                                                                                                                                                    | [https://api.x.com](https://api.x.com)                                                                                   | [https://api.x.com](https://api.x.com)                                                                                                                                      |
| Endpoint path                                                                                                                                                  | /1.1/statuses/retweet/:id.json                                                                                           | /2/users/:id/retweets                                                                                                                                                       |
| [Autenticación](/resources/fundamentals/authentication)                                                                                                        | OAuth 1.0a User Context                                                                                                  | OAuth 1.0a User Context                                                                                                                                                     |
| [Límites de tasa](/resources/fundamentals/rate-limits) de solicitud predeterminados                                                                            | Ninguno<br /><br />300 solicitudes por ventana de 3 horas (por usuario, por app). Compartidas con el endpoint POST Tweet | 50 solicitudes por 15 min (por usuario)<br /><br />300 solicitudes por ventana de 3 horas (por usuario, por app). Compartidas con el endpoint POST Tweet para manage Posts. |
| Requiere el uso de credenciales de una [developer App](/resources/fundamentals/developer-apps) asociada a un [Project](/resources/fundamentals/developer-apps) |                                                                                                                          | ✔️                                                                                                                                                                          |

#### Deshacer un Retweet

Las siguientes tablas comparan los endpoints estándar v1.1 y de X API v2 para deshacer Retweet:

| Description                                                                                                                                                    | Standard v1.1                          | X API v2                                 |
| :------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------- | :--------------------------------------- |
| Métodos HTTP admitidos                                                                                                                                         | POST                                   | DELETE                                   |
| Host domain                                                                                                                                                    | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com)   |
| Endpoint path                                                                                                                                                  | /1.1/statuses/unretweet/:id.json       | /2/users/:id/retweets/:source\_tweet\_id |
| [Autenticación](/resources/fundamentals/authentication)                                                                                                        | OAuth 1.0a User Context                | OAuth 1.0a User Context                  |
| [Límites de tasa](/resources/fundamentals/rate-limits) de solicitud predeterminados                                                                            | Ninguno                                | 50 solicitudes por 15 min (por usuario)  |
| Requiere el uso de credenciales de una [developer App](/resources/fundamentals/developer-apps) asociada a un [Project](/resources/fundamentals/developer-apps) |                                        | ✔️                                       |

**Otros recursos de migración**

[Retweets lookup: Standard v1.1 a X API v2](/x-api/posts/retweets#retweets-lookup-standard-v1-1-compared-to-x-api-v2 "Retweets lookup: Standard v1.1 a X API v2")

[Manage Retweets: Standard v1.1 a X API v2](/x-api/posts/retweets#manage-retweets-standard-v1-1-compared-to-x-api-v2)

[Centro de migración de la X API](/x-api/migrate/overview)
