Endpoint Playground
Test Crawlora's Mercari master 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/mercari/master" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": 1,
"name": "Women",
"icon_url": "https://u-mercari-images.mercdn.net/assets/img/home_categories/1.png"
},
{
"id": 11,
"name": "Dresses",
"parent_id": 1
}
],
"brands": [
{
"id": 1,
"name": "104+ Octane Boost"
},
{
"id": 4,
"name": "3.1 Phillip Lim"
}
],
"sizes": [
{
"id": 1,
"name": "XXS (00)",
"short_name": "XXS",
"code": "(00)"
},
{
"id": 2,
"name": "XS (0-2)",
"short_name": "XS",
"code": "(0-2)"
}
]
}
}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 Mercari's full reference taxonomy in one call: every category (with parent linkage), every recognized brand, and every clothing/shoe/apparel size. Large (tens of thousands of brand entries) and effectively static -- cache this response rather than polling it. Credential-free public data sourced from Mercari's own mobile-app API using an anonymous, login-free session.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": 1,
"name": "Women",
"icon_url": "https://u-mercari-images.mercdn.net/assets/img/home_categories/1.png"
},
{
"id": 11,
"name": "Dresses",
"parent_id": 1
}
],
"brands": [
{
"id": 1,
"name": "104+ Octane Boost"
},
{
"id": 4,
"name": "3.1 Phillip Lim"
}
],
"sizes": [
{
"id": 1,
"name": "XXS (00)",
"short_name": "XXS",
"code": "(00)"
},
{
"id": 2,
"name": "XS (0-2)",
"short_name": "XS",
"code": "(0-2)"
}
]
}
}curl "https://api.crawlora.net/api/v1/mercari/master" \
-H "x-api-key: $CRAWLORA_API_KEY"