Endpoint Playground
Test Crawlora's Pristine Marketplace Page 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/pristine-marketplace/pages/<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| handle (path) | string | Yes | Page handle |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.pristinemarketplace.com",
"source_url": "https://www.pristinemarketplace.com",
"page": {
"id": "92269772844",
"handle": "nfl",
"title": "NFL Memorabilia: Helmets, Footballs, Jerseys",
"url": "https://www.pristinemarketplace.com/pages/nfl",
"content": "Shop autographed NFL memorabilia"
}
}
}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 normalized static page detail for one Pristine Marketplace (https://www.pristinemarketplace.com) page handle. The storefront URL is fixed server-side. The "Shop by Sport" nav landing pages are reachable here as handles `nfl`, `mlb`, `nba`, `nhl`, and `nascar`.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.pristinemarketplace.com",
"source_url": "https://www.pristinemarketplace.com",
"page": {
"id": "92269772844",
"handle": "nfl",
"title": "NFL Memorabilia: Helmets, Footballs, Jerseys",
"url": "https://www.pristinemarketplace.com/pages/nfl",
"content": "Shop autographed NFL memorabilia"
}
}
}curl "https://api.crawlora.net/api/v1/pristine-marketplace/pages/<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"