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

# Visão geral da migração do endpoint de Posts da List

> Compare o Standard v1.1 lists/statuses com o endpoint de Posts da List da X API v2, incluindo diferenças de parâmetros, autenticação e paginação.

export const Button = ({href, children}) => {
  return <div className="not-prose">
    <a href={href}>
      <button className="x-btn">
        <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>;
};

## Comparando os endpoints de consulta de Posts da List da X API

O endpoint v2 de consulta de Posts da List substituirá o standard v1.1 [GET lists/statuses](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-statuses). Se você tem código, apps ou ferramentas que utilizam esta versão do endpoint e está considerando migrar para o endpoint mais recente da X API v2, este conjunto de guias é para você.

As tabelas a seguir comparam os endpoints de List do standard v1.1 e da X API v2:

**Consulta de List por ID**

|                                                                     |                                                                                              |                                                                                                                                                  |
| :------------------------------------------------------------------ | :------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------- |
| Descrição                                                           | Standard v1.1                                                                                | X API v2                                                                                                                                         |
| Métodos HTTP suportados                                             | `GET`                                                                                        | `GET`                                                                                                                                            |
| Domínio do host                                                     | `https://api.x.com`                                                                          | `https://api.x.com`                                                                                                                              |
| Caminho do endpoint                                                 | `/1.1/lists/statuses.json`                                                                   | `/2/lists/:id/tweets`                                                                                                                            |
| [Autenticação](/resources/fundamentals/authentication)              | OAuth 1.0a User Context<br /><br />App only                                                  | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE<br /><br />App only                                                    |
| [Limites de requisição](/resources/fundamentals/rate-limits) padrão | 900 requisições por 15 min com OAuth 1.0a<br /><br />900 requisições por 15 min com App only | 900 requisições por 15 min com OAuth 1.0a<br /><br />900 requisições por 15 min com OAuth 2.0<br /><br />900 requisições por 15 min com App only |

Para acessar os endpoints da X API v2, você precisa [criar uma conta de desenvolvedor](https://developer.x.com/en/portal/petition/essential/basic-info). Ao autenticar, você deve usar chaves e tokens de um [App de desenvolvedor](/resources/fundamentals/developer-apps) que esteja em um [Project](/resources/fundamentals/developer-apps).

Saiba mais sobre como obter acesso aos endpoints da X API v2 na nossa página de [introdução](/x-api/getting-started/getting-access).

<div className="flex space-x-2">
  <Button href="/x-api/lists/list-tweets/quickstart">
    Guia rápido
  </Button>

  <Button href="https://github.com/xdevplatform/Twitter-API-v2-sample-code">
    Código de exemplo
  </Button>

  <Button href="https://www.postman.com/xapidevelopers/x-api-public-workspace/collection/34902927-2efc5689-99c6-4ab6-8091-996f35c2fd80">
    Executar no Postman
  </Button>
</div>
