Endpoint Playground
Test Crawlora's Retrieve an X profile API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/x/profile/<username>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| username (path) | string | Yes | X username |
{
"code": 200,
"msg": "OK",
"data": {
"id": "1634026666518519808",
"username": "Ansel_Flipradio",
"name": "Fear_Nation_世界苦茶",
"url": "https://x.com/Ansel_Flipradio",
"avatar_url": "https://pbs.twimg.com/profile_images/example_normal.jpg",
"banner_url": "https://pbs.twimg.com/profile_banners/example/banner",
"is_blue_verified": true,
"description": "Public profile description",
"external_url": "https://example.com",
"metrics": {
"followers": 39608,
"following": 188,
"posts": 5498
}
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns public profile details for an X username, including visible counts and profile media when available.
{
"code": 200,
"msg": "OK",
"data": {
"id": "1634026666518519808",
"username": "Ansel_Flipradio",
"name": "Fear_Nation_世界苦茶",
"url": "https://x.com/Ansel_Flipradio",
"avatar_url": "https://pbs.twimg.com/profile_images/example_normal.jpg",
"banner_url": "https://pbs.twimg.com/profile_banners/example/banner",
"is_blue_verified": true,
"description": "Public profile description",
"external_url": "https://example.com",
"metrics": {
"followers": 39608,
"following": 188,
"posts": 5498
}
}
}curl "https://api.crawlora.net/api/v1/x/profile/<username>" \
-H "x-api-key: $CRAWLORA_API_KEY"