Endpoint Playground
Test Crawlora's Prada Category & Gender 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/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"fetched_at": "2026-09-09T12:00:00Z",
"count": 214,
"categories": [
{
"id": "10067US",
"name": "Top handles",
"path": [
"Womens",
"Bags"
],
"path_ids": [
"10047US",
"10062US"
],
"url": "https://www.prada.com/us/en/womens/bags/top-handles/c/10067US"
},
{
"id": "11108US",
"name": "Pop Charms",
"path": [
"Fine Jewelry",
"Eternal Gold"
],
"path_ids": [
"10614US",
"10763US"
],
"url": "https://www.prada.com/us/en/fine-jewelry/eternal-gold/pop-charms/c/11108US"
}
],
"genders": [
{
"value": "Woman",
"count": 3867
},
{
"value": "Man",
"count": 1830
}
]
}
}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 Prada's (prada.com) full category taxonomy -- every browsable category with its own breadcrumb path and canonical URL -- plus the two gender values products.prada.com currently carries. categories[].id is exactly the value prada-category accepts as its own category_id parameter; genders[].value is exactly what prada-search and prada-category accept as their own gender parameter.
{
"code": 200,
"msg": "OK",
"data": {
"fetched_at": "2026-09-09T12:00:00Z",
"count": 214,
"categories": [
{
"id": "10067US",
"name": "Top handles",
"path": [
"Womens",
"Bags"
],
"path_ids": [
"10047US",
"10062US"
],
"url": "https://www.prada.com/us/en/womens/bags/top-handles/c/10067US"
},
{
"id": "11108US",
"name": "Pop Charms",
"path": [
"Fine Jewelry",
"Eternal Gold"
],
"path_ids": [
"10614US",
"10763US"
],
"url": "https://www.prada.com/us/en/fine-jewelry/eternal-gold/pop-charms/c/11108US"
}
],
"genders": [
{
"value": "Woman",
"count": 3867
},
{
"value": "Man",
"count": 1830
}
]
}
}curl "https://api.crawlora.net/api/v1/prada/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"