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

# List Posts

> The List Posts endpoint lets you retrieve Posts from a List's timeline. Reference for the X API v2 standard tier covering list tweets.

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

The List Posts endpoint lets you retrieve Posts from a List's timeline. Get the latest Posts from all members of a List.

## Overview

<CardGroup cols={2}>
  <Card title="List timeline" icon="https://mintcdn.com/x-preview-mintlify-b8c19c78/oeE9e4yE1fVC7B9c/icons/xds/icon-bulleted-list.svg?fit=max&auto=format&n=oeE9e4yE1fVC7B9c&q=85&s=4b09f402b02ad0b59c45de2f9c27a300" width="24" height="24" data-path="icons/xds/icon-bulleted-list.svg">
    Get Posts from List members
  </Card>

  <Card title="Curated feed" icon="stream">
    Access your curated content feeds
  </Card>
</CardGroup>

***

## Endpoint

| Method | Endpoint                                             | Description           |
| :----- | :--------------------------------------------------- | :-------------------- |
| GET    | [`/2/lists/:id/tweets`](/x-api/lists/get-list-posts) | Get Posts from a List |

***

## Example request

```bash theme={null}
curl "https://api.x.com/2/lists/1234567890/tweets?\
tweet.fields=created_at,author_id,public_metrics&\
expansions=author_id&\
user.fields=username&\
max_results=100" \
  -H "Authorization: Bearer $BEARER_TOKEN"
```

***

## Getting started

<Note>
  **Prerequisites**

  * An approved [developer account](https://developer.x.com/en/portal/petition/essential/basic-info)
  * A [Project and App](/resources/fundamentals/developer-apps) in the Developer Console
  * Your App's [keys and tokens](/resources/fundamentals/authentication)
</Note>

<CardGroup cols={2}>
  <Card title="Quickstart" icon="https://mintcdn.com/x-preview-mintlify-b8c19c78/dFhTI5o_cnAxhj8C/icons/xds/icon-rocket.svg?fit=max&auto=format&n=dFhTI5o_cnAxhj8C&q=85&s=3106e95425211d3b3a3bf22fdc4d994f" href="/x-api/lists/list-tweets/quickstart" width="24" height="24" data-path="icons/xds/icon-rocket.svg">
    Get Posts from a List
  </Card>

  <Card title="Integration guide" icon="https://mintcdn.com/x-preview-mintlify-b8c19c78/E26_WOQX_WsneS5z/icons/xds/icon-book.svg?fit=max&auto=format&n=E26_WOQX_WsneS5z&q=85&s=5c792c385b10a7b9a4cb673257c8d1f8" href="/x-api/lists/list-tweets/integrate" width="24" height="24" data-path="icons/xds/icon-book.svg">
    Key concepts and best practices
  </Card>

  <Card title="List lookup" icon="https://mintcdn.com/x-preview-mintlify-b8c19c78/oeE9e4yE1fVC7B9c/icons/xds/icon-bulleted-list.svg?fit=max&auto=format&n=oeE9e4yE1fVC7B9c&q=85&s=4b09f402b02ad0b59c45de2f9c27a300" href="/x-api/lists/list-lookup/introduction" width="24" height="24" data-path="icons/xds/icon-bulleted-list.svg">
    Get List details
  </Card>

  <Card title="API Reference" icon="https://mintcdn.com/x-preview-mintlify-b8c19c78/oeE9e4yE1fVC7B9c/icons/xds/icon-code.svg?fit=max&auto=format&n=oeE9e4yE1fVC7B9c&q=85&s=236739f51e6676fcc23005cc510ca3d5" href="/x-api/lists/get-list-posts" width="24" height="24" data-path="icons/xds/icon-code.svg">
    Full endpoint documentation
  </Card>
</CardGroup>
