Endpoint Playground
Test Crawlora's Get a Macy's product's full detail 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/macys/product/<productId>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| productId (path) | string | Yes | Numeric Macy's product id, from a product page's ?ID= query parameter |
{
"code": 200,
"data": {
"available": true,
"brand": "sample",
"bullet_points": [
"sample"
],
"categories": [
"sample"
],
"colors": [
{
"current_price": 1.23,
"id": "sample-id",
"name": "sample",
"on_sale": true,
"regular_price": 1.23
}
],
"currency_code": "sample",
"current_price": 1.23,
"department_name": "sample",
"description": "sample",
"division_name": "sample",
"fetched_at": "sample",
"images": [
"sample"
],
"low_availability": true,
"name": "sample",
"on_sale": true,
"product_id": "sample-id",
"rating": 1.23,
"regular_price": 1.23,
"review_count": 1,
"source_url": "https://example.com/resource",
"url": "https://example.com/resource"
},
"msg": "OK"
}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 Macy's product's full detail: name, brand, description, department/division, category breadcrumb, pricing (with sale detection), availability, images, aggregate rating, and every purchasable color variant with its own price. productId is a numeric id, taken from a Macy's product page's ?ID= query parameter.
{
"code": 200,
"data": {
"available": true,
"brand": "sample",
"bullet_points": [
"sample"
],
"categories": [
"sample"
],
"colors": [
{
"current_price": 1.23,
"id": "sample-id",
"name": "sample",
"on_sale": true,
"regular_price": 1.23
}
],
"currency_code": "sample",
"current_price": 1.23,
"department_name": "sample",
"description": "sample",
"division_name": "sample",
"fetched_at": "sample",
"images": [
"sample"
],
"low_availability": true,
"name": "sample",
"on_sale": true,
"product_id": "sample-id",
"rating": 1.23,
"regular_price": 1.23,
"review_count": 1,
"source_url": "https://example.com/resource",
"url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/macys/product/<productId>" \
-H "x-api-key: $CRAWLORA_API_KEY"