Skip to main content
POST
/
api
/
twitter
/
user
/
lists
/twitter/user/lists
curl --request POST \
  --url https://api.anysite.io/api/twitter/user/lists \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "count": 123,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "@twitter_list",
    "description": "<string>",
    "mode": "<string>",
    "member_count": 123,
    "subscriber_count": 123,
    "created_at": 123,
    "banner_url": "<string>",
    "facepile_urls": [],
    "owner": {
      "internal_id": "<string>",
      "rest_id": "<string>",
      "name": "<string>",
      "alias": "<string>",
      "url": "<string>",
      "@type": "@twitter_user",
      "description": "<string>",
      "location": "<string>",
      "follower_count": 123,
      "following_count": 123,
      "tweet_count": 123,
      "listed_count": 123,
      "favorites_count": 123,
      "media_count": 123,
      "image": "<string>",
      "banner_url": "<string>",
      "verified": false,
      "verified_type": "<string>",
      "is_blue_verified": false,
      "created_at": 123,
      "professional": {
        "rest_id": "<string>",
        "professional_type": "<string>",
        "@type": "@twitter_user_professional",
        "categories": [
          {}
        ]
      },
      "verification_info": {
        "@type": "@twitter_user_verification",
        "is_identity_verified": false,
        "verified_since": "<string>",
        "reason_description": "<string>"
      },
      "profile_urls": [],
      "mentions": [],
      "birthdate": {
        "day": 123,
        "month": 123,
        "@type": "@twitter_user_birthdate",
        "year": 123,
        "visibility": "",
        "year_visibility": "",
        "timestamp": 123
      },
      "is_profile_translatable": false,
      "has_hidden_subscriptions": false,
      "can_highlight_tweets": false,
      "highlighted_tweets_count": 0,
      "user_seed_tweet_count": 0,
      "premium_gifting_eligible": false,
      "creator_subscriptions_count": 0
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
user
string
required

User ID, alias or URL

Example:

"NASA"

count
integer
required

Max result count

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
name
string
required
url
string
required
@type
string
default:@twitter_list
description
string | null
mode
string | null
member_count
integer | null
subscriber_count
integer | null
created_at
integer | null
banner_url
string | null
facepile_urls
string[]
owner
TwitterUser · object