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

# List Posts

> List Posts エンドポイントを使うと、List のタイムラインから Post を取得できます。X API v2 スタンダード階層の 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>;
};

List Posts エンドポイントを使うと、List のタイムラインから Post を取得できます。List のすべてのメンバーからの最新の Post を取得します。

## 概要

<CardGroup cols={2}>
  <Card title="List タイムライン" icon="https://mintcdn.com/x-preview-mintlify-143107c1/-vUZNvNnsedeyKnT/icons/xds/icon-bulleted-list.svg?fit=max&auto=format&n=-vUZNvNnsedeyKnT&q=85&s=4ff4e2300afadbf6c9c64712c8d3f0fa" width="24" height="24" data-path="icons/xds/icon-bulleted-list.svg">
    List メンバーからの Post を取得
  </Card>

  <Card title="キュレーションフィード" icon="stream">
    キュレーションされたコンテンツフィードにアクセス
  </Card>
</CardGroup>

***

## エンドポイント

| Method | Endpoint                                             | Description      |
| :----- | :--------------------------------------------------- | :--------------- |
| GET    | [`/2/lists/:id/tweets`](/x-api/lists/get-list-posts) | List から Post を取得 |

***

## リクエスト例

```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"
```

***

## はじめに

<Note>
  **前提条件**

  * 承認済みの [developer account](https://developer.x.com/en/portal/petition/essential/basic-info)
  * Developer Console 内の [Project と App](/resources/fundamentals/developer-apps)
  * App の[キーとトークン](/resources/fundamentals/authentication)
</Note>

<CardGroup cols={2}>
  <Card title="クイックスタート" icon="https://mintcdn.com/x-preview-mintlify-143107c1/LjDupcgIJeQhUrTV/icons/xds/icon-rocket.svg?fit=max&auto=format&n=LjDupcgIJeQhUrTV&q=85&s=ab9d87f67ff2827df976c782467c9fe1" href="/x-api/lists/list-tweets/quickstart" width="24" height="24" data-path="icons/xds/icon-rocket.svg">
    List から Post を取得
  </Card>

  <Card title="連携ガイド" icon="https://mintcdn.com/x-preview-mintlify-143107c1/r6g1kiGndqT3mXyl/icons/xds/icon-book.svg?fit=max&auto=format&n=r6g1kiGndqT3mXyl&q=85&s=221001d25934bdf1f9d20077f943b9c8" href="/x-api/lists/list-tweets/integrate" width="24" height="24" data-path="icons/xds/icon-book.svg">
    主要な概念とベストプラクティス
  </Card>

  <Card title="List lookup" icon="https://mintcdn.com/x-preview-mintlify-143107c1/-vUZNvNnsedeyKnT/icons/xds/icon-bulleted-list.svg?fit=max&auto=format&n=-vUZNvNnsedeyKnT&q=85&s=4ff4e2300afadbf6c9c64712c8d3f0fa" href="/x-api/lists/list-lookup/introduction" width="24" height="24" data-path="icons/xds/icon-bulleted-list.svg">
    List の詳細を取得
  </Card>

  <Card title="API リファレンス" icon="https://mintcdn.com/x-preview-mintlify-143107c1/-vUZNvNnsedeyKnT/icons/xds/icon-code.svg?fit=max&auto=format&n=-vUZNvNnsedeyKnT&q=85&s=1df744166b46c62535ed328bca70d1c0" href="/x-api/lists/get-list-posts" width="24" height="24" data-path="icons/xds/icon-code.svg">
    エンドポイントの詳細ドキュメント
  </Card>
</CardGroup>
