Endpoint Playground
Test Crawlora's Moda Operandi categories 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/modaoperandi/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"gender": "women",
"categories": [
{
"name": "Bags",
"slug": "bags",
"total_items": 1049,
"url": "https://www.modaoperandi.com/women/products/bags"
}
],
"availability": {
"availableNow": 925,
"preorder": 120,
"trunkshow": 4
},
"sorts": [
"default",
"price_low_to_high",
"price_high_to_low",
"newest"
]
}
}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 the live category tree, designer, color, size, availability, and sort values discovered from Moda Operandi's public catalog. Returned category and designer slugs are valid for modaoperandi-search.
{
"code": 200,
"msg": "OK",
"data": {
"gender": "women",
"categories": [
{
"name": "Bags",
"slug": "bags",
"total_items": 1049,
"url": "https://www.modaoperandi.com/women/products/bags"
}
],
"availability": {
"availableNow": 925,
"preorder": 120,
"trunkshow": 4
},
"sorts": [
"default",
"price_low_to_high",
"price_high_to_low",
"newest"
]
}
}curl "https://api.crawlora.net/api/v1/modaoperandi/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"