Endpoint Playground
Test Crawlora's Get a Prada product 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/prada/product?pv=<pv>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| pv | string | Yes | Product/color identifier, from a search, category, or product result's own pv field |
{
"code": 200,
"msg": "OK",
"data": {
"pv": "1BA274_2CYS_F0002_V_YO0",
"model": "1BA274",
"name": "Prada Galleria large leather bag",
"description": "Leather handles---Detachable, adjustable leather shoulder strap---Removable leather key ring---External zipper pockets---Metal hardware",
"product_type": "Galleria",
"gender": [
"Woman"
],
"color": "Black",
"color_hex": "#000000",
"material": "Leather",
"country": "US",
"price": 6100,
"currency": "USD",
"in_stock": true,
"stock_quantity": 1,
"sizes": [
{
"label": "TU",
"code": "1501"
}
],
"breadcrumbs": [
"Womens",
"Bags",
"Prada Galleria"
],
"other_colors": [
{
"name": "Black",
"hex": "#000000",
"code": "F0002",
"url": "https://www.prada.com/us/en/p/prada-galleria-large-leather-bag/1BA274_2CYS_F0002_V_YO0"
},
{
"name": "Natural",
"hex": "#F0E5D6",
"code": "F0018",
"url": "https://www.prada.com/us/en/p/prada-galleria-large-leather-bag/1BA274_2CYS_F0018_V_YO0"
}
],
"images": [
"https://www.prada.com/content/dam/pradabkg_products/1/1BA/1BA274/2CYSF0002/1BA274_2CYS_F0002_V_YO0_SLF.jpg",
"https://www.prada.com/content/dam/pradabkg_products/1/1BA/1BA274/2CYSF0002/1BA274_2CYS_F0002_V_YO0_MDL.jpg"
],
"url": "https://www.prada.com/us/en/p/prada-galleria-large-leather-bag/1BA274_2CYS_F0002_V_YO0"
}
}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 product-detail data for one Prada product/color variant: name, price, stock, available sizes, breadcrumb, alternate colors, and images. pv is the product/color identifier, returned by prada-search's, prada-category's, and this endpoint's own products[].pv/other_colors[] fields (also the trailing path segment of a Prada product URL). description and the full image gallery are populated on a best-effort basis from the product's own page and may be briefly absent even for a valid pv; every other field is always populated. An unknown pv returns a not-found error.
{
"code": 200,
"msg": "OK",
"data": {
"pv": "1BA274_2CYS_F0002_V_YO0",
"model": "1BA274",
"name": "Prada Galleria large leather bag",
"description": "Leather handles---Detachable, adjustable leather shoulder strap---Removable leather key ring---External zipper pockets---Metal hardware",
"product_type": "Galleria",
"gender": [
"Woman"
],
"color": "Black",
"color_hex": "#000000",
"material": "Leather",
"country": "US",
"price": 6100,
"currency": "USD",
"in_stock": true,
"stock_quantity": 1,
"sizes": [
{
"label": "TU",
"code": "1501"
}
],
"breadcrumbs": [
"Womens",
"Bags",
"Prada Galleria"
],
"other_colors": [
{
"name": "Black",
"hex": "#000000",
"code": "F0002",
"url": "https://www.prada.com/us/en/p/prada-galleria-large-leather-bag/1BA274_2CYS_F0002_V_YO0"
},
{
"name": "Natural",
"hex": "#F0E5D6",
"code": "F0018",
"url": "https://www.prada.com/us/en/p/prada-galleria-large-leather-bag/1BA274_2CYS_F0018_V_YO0"
}
],
"images": [
"https://www.prada.com/content/dam/pradabkg_products/1/1BA/1BA274/2CYSF0002/1BA274_2CYS_F0002_V_YO0_SLF.jpg",
"https://www.prada.com/content/dam/pradabkg_products/1/1BA/1BA274/2CYSF0002/1BA274_2CYS_F0002_V_YO0_MDL.jpg"
],
"url": "https://www.prada.com/us/en/p/prada-galleria-large-leather-bag/1BA274_2CYS_F0002_V_YO0"
}
}curl "https://api.crawlora.net/api/v1/prada/product?pv=<pv>" \
-H "x-api-key: $CRAWLORA_API_KEY"