/x/post/{id}apiKey8 credits/requestRetrieve an X post
Returns a public X post by numeric post id, including author, text, visible metrics, and a quoted post preview when present.
Required params: id:path
API Reference
Use Crawlora's X API endpoints to extract supported public X data as structured JSON. This documentation covers 3 active endpoints including Retrieve an X post, Retrieve an X profile, List public X profile posts. Developers can use these endpoints for monitoring, enrichment, research dashboards, internal data pipelines, and agent-native workflows without maintaining platform-specific scraping code. Each endpoint page documents authentication, request parameters such as id, username, cURL examples, response examples, response schemas, errors, credit cost, and Playground testing. Send requests to the Crawlora API with an x-api-key header, review usage and plan limits on pricing, and test safe sample requests in Playground before moving the workflow into production.
Choose an endpoint, send an authenticated request with the x-api-key header, and inspect the normalized JSON response. The examples below use the public Crawlora API base URL and the same endpoint catalog used by Playground.
curl -X GET "https://api.crawlora.net/api/v1/x/post/example" \
-H "x-api-key: $CRAWLORA_API_KEY"These endpoint cards are generated from the active Crawlora endpoint catalog, including method, path, auth mode, credit cost, parameter summary, docs, and Playground links.
/x/post/{id}apiKey8 credits/requestReturns a public X post by numeric post id, including author, text, visible metrics, and a quoted post preview when present.
Required params: id:path
/x/profile/{username}apiKey8 credits/requestReturns public profile details for an X username, including visible counts and profile media when available.
Required params: username:path
/x/profile/{username}/postsapiKey8 credits/requestReturns 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.
Required params: username:path
| Endpoint | API path | Method | Credits | Required params | Docs | Playground |
|---|---|---|---|---|---|---|
| Retrieve an X post | /x/post/{id} | GET | 8 credits/request | id:path | View docs | Try endpoint |
| Retrieve an X profile | /x/profile/{username} | GET | 8 credits/request | username:path | View docs | Try endpoint |
| List public X profile posts | /x/profile/{username}/posts | GET | 8 credits/request | username:path | View docs | Try endpoint |