Endpoint Playground
Test Crawlora's Browse a Tiffany & Co. category 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/tiffany/category?category=<category>&sort=recommended" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | Category id -- see tiffany-categories | |
| sort | string | No | recommended | Sort order |
| page | integer | No | One-based page | |
| per_page | integer | No | Results per page | |
| material | string | No | Material filter -- see tiffany-filters | |
| gemstone | string | No | Gemstone filter -- see tiffany-filters | |
| color | string | No | Color filter -- see tiffany-filters | |
| product_type | string | No | Product type filter -- see tiffany-filters | |
| gender | string | No | Gender filter -- see tiffany-filters | |
| designer | string | No | Designer/collection filter -- see tiffany-filters |
{
"code": 200,
"msg": "OK",
"data": {
"category": "ecommerce_us_jewelry_necklaces_and_pendants",
"sort": "recommended",
"page": 1,
"per_page": 24,
"total_pages": 23,
"total_products": 536,
"count": 1,
"fetched_at": "2026-09-10T12:00:00Z",
"products": [
{
"id": "60014128",
"style_id": "1154463802",
"name": "Return to Tiffany®:Pink Double Heart Tag Pendant in Silver, Mini",
"product_type": "Pendant w/Chain",
"collection": "Return to Tiffany",
"material": "Sterling Silver",
"color": "Pink",
"price": 325,
"currency": "USD",
"in_stock": true,
"image_url": "https://media.tiffany.com/is/image/tco/60014128_PDT_MAIN1X1",
"url": "https://www.tiffany.com/jewelry/necklaces-pendants/return-to-tiffany-sterling-silver-necklaces-pendants-60014128.html"
}
]
}
}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 one page of a Tiffany & Co. category/browse listing. category is a category id from tiffany-categories's own id field (e.g. ecommerce_us_jewelry_necklaces_and_pendants). sort selects recommended (default), price_asc, price_desc, or newest. material, gemstone, color, product_type, gender, and designer are optional single-value filters -- see tiffany-filters for the live covered value space for each. A hub-level or emptied-out category id, or a filter combination with no matches, returns a well-formed empty result rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"category": "ecommerce_us_jewelry_necklaces_and_pendants",
"sort": "recommended",
"page": 1,
"per_page": 24,
"total_pages": 23,
"total_products": 536,
"count": 1,
"fetched_at": "2026-09-10T12:00:00Z",
"products": [
{
"id": "60014128",
"style_id": "1154463802",
"name": "Return to Tiffany®:Pink Double Heart Tag Pendant in Silver, Mini",
"product_type": "Pendant w/Chain",
"collection": "Return to Tiffany",
"material": "Sterling Silver",
"color": "Pink",
"price": 325,
"currency": "USD",
"in_stock": true,
"image_url": "https://media.tiffany.com/is/image/tco/60014128_PDT_MAIN1X1",
"url": "https://www.tiffany.com/jewelry/necklaces-pendants/return-to-tiffany-sterling-silver-necklaces-pendants-60014128.html"
}
]
}
}curl "https://api.crawlora.net/api/v1/tiffany/category?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"