Endpoint Playground
Test Crawlora's Pristine Marketplace Collections 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/collections/<handle>/products" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| handle (path) | string | Yes | Collection handle | |
| page | integer | No | 1-based page, defaults to 1 | |
| limit | integer | No | Maximum products, defaults to 50 and supports up to 250 |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.pristinemarketplace.com",
"source_url": "https://www.pristinemarketplace.com",
"collection": "pop-culture",
"page": 1,
"limit": 2,
"products": [
{
"handle": "billie-eilish-authentic-signed-framed-hit-me-hard-and-soft-album-flat-bas",
"title": "Billie Eilish Authentic Signed & Framed Hit Me Hard and Soft Album Flat BAS",
"price": 709
}
]
}
}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 products from one Pristine Marketplace (https://www.pristinemarketplace.com) collection. The storefront URL is fixed server-side; `handle` is the collection's URL slug (typically a player, team, or memorabilia-type collection, e.g. `pop-culture`).
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.pristinemarketplace.com",
"source_url": "https://www.pristinemarketplace.com",
"collection": "pop-culture",
"page": 1,
"limit": 2,
"products": [
{
"handle": "billie-eilish-authentic-signed-framed-hit-me-hard-and-soft-album-flat-bas",
"title": "Billie Eilish Authentic Signed & Framed Hit Me Hard and Soft Album Flat BAS",
"price": 709
}
]
}
}curl "https://api.crawlora.net/api/v1/pristine-marketplace/collections/<handle>/products" \
-H "x-api-key: $CRAWLORA_API_KEY"