Endpoint Playground
Test Crawlora's Retrieve an X post 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/post/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | X post id | |
| username | string | No | Expected author username. When provided, mismatched authors return 404. |
{
"code": 200,
"msg": "OK",
"data": {
"id": "2071148560779976947",
"url": "https://x.com/Ansel_Flipradio/status/2071148560779976947",
"text": "Example public post text",
"author": {
"id": "1634026666518519808",
"username": "Ansel_Flipradio",
"name": "Fear_Nation_世界苦茶",
"url": "https://x.com/Ansel_Flipradio"
},
"metrics": {
"replies": 12,
"reposts": 5,
"likes": 62,
"bookmarks": 4,
"views": 15115
}
}
}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 a public X post by numeric post id, including author, text, visible metrics, and a quoted post preview when present.
{
"code": 200,
"msg": "OK",
"data": {
"id": "2071148560779976947",
"url": "https://x.com/Ansel_Flipradio/status/2071148560779976947",
"text": "Example public post text",
"author": {
"id": "1634026666518519808",
"username": "Ansel_Flipradio",
"name": "Fear_Nation_世界苦茶",
"url": "https://x.com/Ansel_Flipradio"
},
"metrics": {
"replies": 12,
"reposts": 5,
"likes": 62,
"bookmarks": 4,
"views": 15115
}
}
}curl "https://api.crawlora.net/api/v1/x/post/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"