Endpoint Playground
Test Crawlora's List Tiffany & Co. 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/tiffany/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"count": 279,
"fetched_at": "2026-09-10T12:00:00Z",
"categories": [
{
"id": "ecommerce_us_jewelry",
"label": "Jewelry",
"kind": "category",
"product_count": 1561
},
{
"id": "ecommerce_us_jewelry_necklaces_and_pendants",
"label": "Jewelry Necklaces And Pendants",
"kind": "category",
"product_count": 536
},
{
"id": "curated_ecommerce_us_gifts_anniversary_gifts",
"label": "Gifts Anniversary Gifts",
"kind": "curated_shop",
"product_count": 229
}
]
}
}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.
Lists every category id Tiffany & Co.'s own product catalog accepts, each with a human-readable label, a kind (category for a real navigable department/subcategory, curated_shop for a curated gift/merchandising shelf), and a live product count. Each id is exactly what tiffany-category's own category parameter accepts -- resolves the category-discovery gap that parameter would otherwise leave as "find one from a storefront URL".
{
"code": 200,
"msg": "OK",
"data": {
"count": 279,
"fetched_at": "2026-09-10T12:00:00Z",
"categories": [
{
"id": "ecommerce_us_jewelry",
"label": "Jewelry",
"kind": "category",
"product_count": 1561
},
{
"id": "ecommerce_us_jewelry_necklaces_and_pendants",
"label": "Jewelry Necklaces And Pendants",
"kind": "category",
"product_count": 536
},
{
"id": "curated_ecommerce_us_gifts_anniversary_gifts",
"label": "Gifts Anniversary Gifts",
"kind": "curated_shop",
"product_count": 229
}
]
}
}curl "https://api.crawlora.net/api/v1/tiffany/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"