Endpoint Playground
Test Crawlora's Search Tiffany & Co. products 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/search?keyword=<keyword>&sort=recommended" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| keyword | string | Yes | Search keyword | |
| 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": {
"keyword": "necklace",
"sort": "recommended",
"page": 1,
"per_page": 24,
"total_pages": 25,
"total_products": 578,
"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.
Searches Tiffany & Co.'s product catalog by free-text keyword. Returns normalized product summaries with USD pricing, live stock status, material, gemstone, collection, and designer. 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 genuine non-matching keyword, or a filter combination with no matches, returns a well-formed empty result (zero total_products).
{
"code": 200,
"msg": "OK",
"data": {
"keyword": "necklace",
"sort": "recommended",
"page": 1,
"per_page": 24,
"total_pages": 25,
"total_products": 578,
"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/search?keyword=<keyword>" \
-H "x-api-key: $CRAWLORA_API_KEY"