Endpoint Playground
Test Crawlora's Pristine Marketplace Reviews 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/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| page | integer | No | 1-based page, defaults to 1. 5 reviews per page. |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.pristinemarketplace.com",
"source_url": "https://cdn.judge.me/reviews/all_reviews_js_based?...",
"page": 1,
"total_pages": 18,
"total_count": 88,
"reviews": [
{
"id": "4a8567d4-b397-5ff5-b327-a8cbec368987",
"rating": 5,
"body": "Excellent condition \"Nico Collins\" signed football. This made for a great birthday gift!!!!",
"reviewer_name": "Mario Henao",
"verified_buyer": true,
"created_at": "2026-08-25T18:17:23.000Z",
"product_title": "Nico Collins Autographed Michigan Wolverines Logo Football w/ Go Blue- JSA Witness",
"product_url": "https://www.pristinemarketplace.com/products/nico-collins-autographed-michigan-wolverines-logo-football-w-go-blue-jsa-witness"
}
]
}
}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 one page of Pristine Marketplace's (https://www.pristinemarketplace.com) public Judge.me store review feed. This is a store-wide, most-recent-first feed, not a per-product one: confirmed live, the storefront's own on-page review widget draws from and displays this same feed (labeled "Reviews for other products" on an individual product page), and no product/handle filter parameter narrows it. The storefront URL is fixed server-side. Judge.me fixes 5 reviews per upstream page regardless of any requested size, so this endpoint has no `limit` parameter -- `page` maps 1:1 onto Judge.me's own pagination.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.pristinemarketplace.com",
"source_url": "https://cdn.judge.me/reviews/all_reviews_js_based?...",
"page": 1,
"total_pages": 18,
"total_count": 88,
"reviews": [
{
"id": "4a8567d4-b397-5ff5-b327-a8cbec368987",
"rating": 5,
"body": "Excellent condition \"Nico Collins\" signed football. This made for a great birthday gift!!!!",
"reviewer_name": "Mario Henao",
"verified_buyer": true,
"created_at": "2026-08-25T18:17:23.000Z",
"product_title": "Nico Collins Autographed Michigan Wolverines Logo Football w/ Go Blue- JSA Witness",
"product_url": "https://www.pristinemarketplace.com/products/nico-collins-autographed-michigan-wolverines-logo-football-w-go-blue-jsa-witness"
}
]
}
}curl "https://api.crawlora.net/api/v1/pristine-marketplace/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"