0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

XAPIのbasicplanまとめ

Last updated at Posted at 2025-09-25

なんか、色々変わったな

項目 制限内容
プロジェクト数 1 件
アプリ数 2 つ / プロジェクト
読み取り(read) 15,000 件 / 月
書き込み(write) 50,000 件 / 月(ツイート投稿・削除、いいね、リツイート、フォロー、リスト操作などすべて含む)
エンドポイントアクセス v2 全エンドポイント利用可能(ただし Full-archive searchFiltered stream など一部は Pro 以上でのみ利用可)

エンドポイント

エンドポイント Basic プラン制限
ツイート投稿 POST /2/tweets 100 リクエスト / 15分 / ユーザー または 10,000 リクエスト / 24h / アプリ
ツイート削除 DELETE /2/tweets/:id 50 リクエスト / 15分 / ユーザー
リツイート / 解除 POST /2/users/:id/retweets / DELETE 50 リクエスト / 15分 / ユーザー
いいね / 解除 POST /2/users/:id/likes / DELETE 1,000 リクエスト / 24h / ユーザー
フォロー / アンフォロー POST /2/users/:id/following / DELETE 50 リクエスト / 15分 / ユーザー
ユーザーのツイート取得 GET /2/users/:id/tweets 900 リクエスト / 15分 / ユーザー、1,500 / 15分 / アプリ
ツイート取得 GET /2/tweets/:id 900 リクエスト / 15分 / ユーザー、450 / 15分 / アプリ
ツイート検索(recent) GET /2/tweets/search/recent 300 リクエスト / 15分 / ユーザー、450 / 15分 / アプリ
いいねしたユーザー取得 GET /2/tweets/:id/liking_users 75 リクエスト / 15分 / ユーザー、75 / 15分 / アプリ
引用ツイート取得 GET /2/tweets/:id/quote_tweets 75 リクエスト / 15分 / ユーザー、75 / 15分 / アプリ
リツイートしたユーザー取得 GET /2/tweets/:id/retweeted_by 75 リクエスト / 15分 / ユーザー、75 / 15分 / アプリ
フォロワー取得 GET /2/users/:id/followers 15 リクエスト / 15分 / ユーザー
フォロー中取得 GET /2/users/:id/following 15 リクエスト / 15分 / ユーザー
リスト操作 POST /2/lists など 300 リクエスト / 15分 / ユーザー
スペース取得 GET /2/spaces/:id 300 リクエスト / 15分 / ユーザー、300 / 15分 / アプリ
ブックマーク取得 GET /2/users/:id/bookmarks 180 リクエスト / 15分 / ユーザー

read か write のどちらを消費するか

カテゴリ エンドポイント例 内容 カウント区分
ツイート操作 POST /2/tweets ツイート投稿 write
DELETE /2/tweets/:id ツイート削除 write
POST /2/users/:id/retweets / DELETE リツイート・解除 write
POST /2/users/:id/likes / DELETE いいね・解除 write
フォロー関係 POST /2/users/:source_user_id/following フォロー write
DELETE /2/users/:source_user_id/following/:target_user_id フォロー解除 write
リスト操作 POST /2/lists / DELETE /2/lists/:id リスト作成・削除 write
POST /2/lists/:id/members / DELETE リストメンバー追加・削除 write
ブロック / ミュート POST /2/users/:id/blocking / DELETE ブロック・解除 write
POST /2/users/:id/muting / DELETE ミュート・解除 write
読み取り(ツイート取得) GET /2/tweets/:id / GET /2/tweets ツイート取得 read
GET /2/tweets/search/recent 最近の検索(7日) read
GET /2/tweets/:id/retweeted_by リツイートしたユーザー取得 read
GET /2/tweets/:id/liking_users いいねしたユーザー取得 read
ユーザー情報 GET /2/users/:id ユーザー情報取得 read
GET /2/users/by/username/:username ユーザー名で検索 read
GET /2/users/:id/followers フォロワー一覧 read
GET /2/users/:id/following フォロー中一覧 read
GET /2/users/:id/liked_tweets いいねしたツイート read
リスト取得 GET /2/lists/:id / GET /2/lists/:id/tweets リスト内容 read
GET /2/users/:id/owned_lists 所有リスト read
スペース GET /2/spaces/:id / GET /2/spaces/search スペース情報取得 read
トレンド GET /2/trends/place 地域別トレンド取得 read
その他 GET /2/apps/:id/usage 使用状況取得 read

残りは確認できるの?

read は、 developer もしくは api で確認可能。
write は、確認できないらしい。。。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?