Skip to main content
GET
/
x
/
users
/
batch
Get users (batch)
curl --request GET \
  --url https://api.example.com/x/users/batch \
  --header 'x-api-key: <x-api-key>'
1 credit per user returned · All plans from $0.00012/credit
curl "https://xquik.com/api/v1/x/users/batch?ids=44196397,987654321" \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq

Query parameters

ids
string
required
Comma-separated user IDs. Maximum 100 per request.

Headers

x-api-key
string
required
Your API key. Session cookie authentication is also supported.

Response

users
object[]
Array of user profiles matching the requested IDs.
has_next_page
boolean
Always false for batch requests.
next_cursor
string
Always empty for batch requests.
{
  "users": [
    {
      "id": "44196397",
      "username": "elonmusk",
      "name": "Elon Musk",
      "followers": 200000000,
      "verified": true
    }
  ],
  "has_next_page": false,
  "next_cursor": ""
}