KonbiniAPI

Get user profile — X API

Returns profile information for a public X account including bio, follower counts, verification flags, and profile images.

GET/v1/x/users/{username}1 credit per request
Example response200OK
{
  "data": {
    "type": "Person",
    "id": "https://x.com/KhabyLame",
    "url": "https://x.com/KhabyLame",
    "entityId": "2024515585569083437",
    "name": "Khabane Lame",
    "preferredUsername": "KhabyLame",
    "summary": "Just a guy who reacts",
    "location": "Chivasso, Italy",
    "followerCount": 82000000,
    "followingCount": 310,
    "isVerified": true,
    "isPaidVerified": false
  }
}

Make the request.

One authenticated GET to /v1/x/users/{username}. Authentication and error conventions stay consistent across endpoints. This page shows the path, parameters, response shape, limits, and credit rule for this operation.

Built for

  • Influencer research and audience size verification
  • Competitor account monitoring and benchmarking
  • Brand account metadata extraction
const response = await fetch("https://api.konbiniapi.com/v1/x/users/KhabyLame", {
  headers: { "Authorization": "Bearer YOUR_API_KEY" }
});

const data = await response.json();
Parameters1
  • usernamerequiredIn · PathType · stringX username (with or without @ symbol)

What you will probably call next.

The X endpoints around this one — the same object at a different depth, or the same kind of read.

Try it on your own data.

Get a free API key and make this request in minutes. Failed and timed-out requests are automatically refunded.