KonbiniAPI

Get user profile from X with KonbiniAPI

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

This API endpoint returns profile information for a public X account including bio, follower counts, verification flags, and profile images.

Perfect for

  • Influencer research and audience size verification
  • Competitor account monitoring and benchmarking
  • Brand account metadata extraction

1. Make the request

const response = await fetch("https://api.konbiniapi.com/v1/x/users/KhabyLame", {
  headers: { "Authorization": "Bearer YOUR_API_KEY" }
});

const data = await response.json();

2. Get clean JSON

Response (200 OK)
{
  "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
  }
}