Endpoint Playground
Test Crawlora's Get a Tiffany & Co. product 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/product?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| product_id | string | Yes | Item id, from a search or category result's id field |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "60957398",
"style_id": "1414151568",
"name": "Elsa Peretti® Open Heart Pendant in Yellow Gold, 7 mm",
"description": "The simple, evocative shape of Elsa Peretti® Open Heart designs celebrates the spirit of love. This elegant style is one of her most celebrated icons.",
"collection": "Elsa Peretti",
"product_type": "Pendant w/Chain",
"material": "18k Yellow Gold",
"price": 950,
"currency": "USD",
"in_stock": true,
"available_quantity": 42,
"categories": [
"ecommerce_us_jewelry",
"ecommerce_us_jewelry_necklaces_and_pendants"
],
"images": [
"https://media.tiffany.com/is/image/tco/60957398_PDT_MAIN1X1"
],
"variations": [
{
"id": "60957398",
"color": "Yellow Gold",
"online": true
}
],
"url": "https://www.tiffany.com/jewelry/necklaces-pendants/ep-open-heart-18k-yellow-gold-necklaces-pendants-60957398.html",
"fetched_at": "2026-09-10T12:00:00Z"
}
}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 full product detail for one item: name, description, brand, collection, designer, material, gemstone, USD price, live stock status, category tree, every color/style variation, and images. product_id is Tiffany & Co.'s own item id, as returned by tiffany-search's or tiffany-category's own products[].id field.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "60957398",
"style_id": "1414151568",
"name": "Elsa Peretti® Open Heart Pendant in Yellow Gold, 7 mm",
"description": "The simple, evocative shape of Elsa Peretti® Open Heart designs celebrates the spirit of love. This elegant style is one of her most celebrated icons.",
"collection": "Elsa Peretti",
"product_type": "Pendant w/Chain",
"material": "18k Yellow Gold",
"price": 950,
"currency": "USD",
"in_stock": true,
"available_quantity": 42,
"categories": [
"ecommerce_us_jewelry",
"ecommerce_us_jewelry_necklaces_and_pendants"
],
"images": [
"https://media.tiffany.com/is/image/tco/60957398_PDT_MAIN1X1"
],
"variations": [
{
"id": "60957398",
"color": "Yellow Gold",
"online": true
}
],
"url": "https://www.tiffany.com/jewelry/necklaces-pendants/ep-open-heart-18k-yellow-gold-necklaces-pendants-60957398.html",
"fetched_at": "2026-09-10T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/tiffany/product?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"