コンテンツにスキップ
Twexapi
日本語
Esc
移動開く⌘Jプレビュー

リストの検索

リストの検索.

POST/twitter/list/search
API 認証
AuthorizationBearer token · header必須
TwexAPIのグローバル認証トークン (Bearer Token)。ヘッダーに含める必要があります:Authorization: Bearer <YOUR_TWEXAPI_KEY>。
リクエストボディ
必須application/json
querystring必須
The query to search for.
target_countinteger必須
The number of lists to search.
レスポンス
200A list of list objects.
codeinteger必須
HTTP ステータスコード(200 は成功)
msgstring必須
レスポンスメッセージ(例: 'success')
dataListModel[]必須
返却されるコアデータオブジェクトまたは配列
プロパティを表示
Array of ListModel
idstring必須
The ID of the list
namestring必須
ユーザー表示名
descriptionstring必須
プロフィール自己紹介文(Bio)
is_privateboolean必須
Whether the list is private
member_countinteger必須
The number of members in the list
subscriber_countinteger必須
The number of subscribers in the list
422パラメータバリデーションエラー
detailValidationError[]
プロパティを表示
Array of ValidationError
locstring | integer[]必須
プロパティを表示
Array of string | integer
Any of:
string
string
integer
integer
msgstring必須
レスポンスメッセージ(例: 'success')
typestring必須
inputany
ctxobject
インタラクティブテストPOST
インタラクティブテスト / Try APIPOST
Live Console
🌐対象サーバー:https://api.twexapi.io
● 本番環境レディ
🔍
公開データ取得(TwexAPIキーのみ、Twitter Cookie不要)

本エンドポイントは公開Twitterデータの検索・取得用です。TwitterアカウントやCookieは一切不要です!下記の「API認証」に TwexAPIプラットフォームキー (Bearer Token) を入力するだけで即座にテストできます。

🔑API 認証
📝リクエストボディapplication/json
📡
暂无响应数据

请在「请求配置」中确认参数后,点击底部的「发送请求」按钮。

リクエスト例
curl -X POST "https://api.twexapi.io/twitter/list/search" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "query": "string",
  "target_count": 0
}'
レスポンス例
{
  "code": 0,
  "msg": "string",
  "data": [
    {
      "id": "string",
      "name": "string",
      "description": "string",
      "is_private": true,
      "member_count": 0,
      "subscriber_count": 0
    }
  ]
}