web3baseweb3base

Public Twitter user list with categories and follower count; search and filter by category.

Get Twitter users list

GET /api/open/twitter/users

Returns the public Twitter user list, ordered by follower count descending. Each item has twitterCategory / categorySlugs; use with GET /api/open/categories?scope=twitter and GET /api/open/category-groups?module=twitter for filtering and display.

Endpoint

GET /api/open/twitter/users

Query parameters

ParameterTypeRequiredDescription
localestringNoDisplay language when i18n fields exist
qstringNoSearch by name, handle, description
tagstringNoComma-separated category slugs for filtering

Response

200 OK, application/json:

FieldTypeDescription
usersobject[]List of TwitterUser

TwitterUser

FieldTypeDescription
handlestringTwitter handle (@xxx)
namestringDisplay name
descriptionstring | undefinedBio
twitterCategorystring[]Category labels (display)
categorySlugsstring[]Category slugs, aligned with categories key
followers_countnumberFollower count

Errors

HTTP statusWhen
429Open API rate limit
500Server error

Example request

curl -s "https://www.web3base.ai/api/open/twitter/users?locale=en" | jq '.users[0]'
curl -s "https://www.web3base.ai/api/open/twitter/users?tag=defi,protocol" | jq '.users | length'

Example response

{
  "users": [
    {
      "handle": "vitalikbuterin",
      "name": "Vitalik Buterin",
      "description": "Co-founder of Ethereum",
      "twitterCategory": ["Protocol"],
      "categorySlugs": ["protocol"],
      "followers_count": 5000000
    }
  ]
}

← Back to API overview