Endpoint Playground
Test Crawlora's Moda Operandi search 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/search?gender=women&availability=available_now&sort=default" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| gender | string | Yes | women | Department |
| q | string | No | Free-text search | |
| category | string | No | Category slug from modaoperandi-categories | |
| designer | string | No | Designer slug from modaoperandi-designers | |
| color | string | No | Color facet value | |
| size | string | No | Size facet value | |
| attribute | string | No | Attribute facet value | |
| availability | string | No | available_now | Availability |
| price_min | number | No | Minimum price | |
| price_max | number | No | Maximum price | |
| on_sale | boolean | No | Sale items only | |
| sort | string | No | default | Sort |
| page | integer | No | 1-based page | |
| limit | integer | No | Results per page |
{
"code": 200,
"msg": "OK",
"data": {
"gender": "women",
"category": "bags",
"page": 1,
"limit": 60,
"total": 1049,
"count": 1,
"products": [
{
"id": "747835",
"name": "Veneta Intrecciato Leather Hobo Bag",
"designer": "Bottega Veneta",
"price": 5600,
"currency": "USD",
"availability": "preorder",
"in_stock": true
}
]
}
}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.
Searches or browses Moda Operandi's public catalog with category, designer, color, size, availability, price, sale, sort, and page filters.
{
"code": 200,
"msg": "OK",
"data": {
"gender": "women",
"category": "bags",
"page": 1,
"limit": 60,
"total": 1049,
"count": 1,
"products": [
{
"id": "747835",
"name": "Veneta Intrecciato Leather Hobo Bag",
"designer": "Bottega Veneta",
"price": 5600,
"currency": "USD",
"availability": "preorder",
"in_stock": true
}
]
}
}curl "https://api.crawlora.net/api/v1/modaoperandi/search?gender=<gender>" \
-H "x-api-key: $CRAWLORA_API_KEY"