Endpoint Playground
Test Crawlora's List public X profile posts 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>/posts" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| username (path) | string | Yes | X username | |
| limit | integer | No | Maximum posts returned from the first page payload. Defaults to 20 and must be 1-50. |
{
"code": 200,
"msg": "OK",
"data": {
"username": "Ansel_Flipradio",
"url": "https://x.com/Ansel_Flipradio",
"count": 1,
"posts": [
{
"id": "1860888559739343022",
"url": "https://x.com/Ansel_Flipradio/status/1860888559739343022",
"text": "Example public profile post text",
"author": {
"id": "1634026666518519808",
"username": "Ansel_Flipradio",
"name": "Fear_Nation_世界苦茶",
"url": "https://x.com/Ansel_Flipradio"
}
}
]
}
}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 posts present in the first public profile page payload for an X username. The endpoint does not paginate replies, media-only tabs, or search results.
{
"code": 200,
"msg": "OK",
"data": {
"username": "Ansel_Flipradio",
"url": "https://x.com/Ansel_Flipradio",
"count": 1,
"posts": [
{
"id": "1860888559739343022",
"url": "https://x.com/Ansel_Flipradio/status/1860888559739343022",
"text": "Example public profile post text",
"author": {
"id": "1634026666518519808",
"username": "Ansel_Flipradio",
"name": "Fear_Nation_世界苦茶",
"url": "https://x.com/Ansel_Flipradio"
}
}
]
}
}curl "https://api.crawlora.net/api/v1/x/profile/<username>/posts" \
-H "x-api-key: $CRAWLORA_API_KEY"