Endpoint Playground
Test Crawlora's Tiffany & Co. Content 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/tiffany/content-search?keyword=<keyword>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| keyword | string | Yes | Search keyword | |
| page | integer | No | One-based page | |
| per_page | integer | No | Results per page |
{
"code": 200,
"msg": "OK",
"data": {
"keyword": "engagement ring guide",
"page": 1,
"per_page": 10,
"total_pages": 1,
"total_results": 1,
"count": 1,
"fetched_at": "2026-09-10T12:00:00Z",
"results": [
{
"title": "How to Choose a Wedding Band for Your Engagement Ring | Tiffany & Co. US",
"url": "https://www.tiffany.com/world-of-tiffany/style-guides/how-to-choose-wedding-band-for-your-engagement-ring.html",
"description": "Find the perfect wedding band to match your engagement ring at Tiffany & Co.",
"image_url": "https://media.tiffany.com/is/image/tco/2025_LE_WeddingBand_7x5_1"
}
]
}
}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 own editorial pages -- style guides, gift guides, and other "World of Tiffany" articles -- by free-text keyword. Not product data: no price, stock, or item id fields. A genuine non-matching keyword returns a well-formed empty result (zero total_results).
{
"code": 200,
"msg": "OK",
"data": {
"keyword": "engagement ring guide",
"page": 1,
"per_page": 10,
"total_pages": 1,
"total_results": 1,
"count": 1,
"fetched_at": "2026-09-10T12:00:00Z",
"results": [
{
"title": "How to Choose a Wedding Band for Your Engagement Ring | Tiffany & Co. US",
"url": "https://www.tiffany.com/world-of-tiffany/style-guides/how-to-choose-wedding-band-for-your-engagement-ring.html",
"description": "Find the perfect wedding band to match your engagement ring at Tiffany & Co.",
"image_url": "https://media.tiffany.com/is/image/tco/2025_LE_WeddingBand_7x5_1"
}
]
}
}curl "https://api.crawlora.net/api/v1/tiffany/content-search?keyword=<keyword>" \
-H "x-api-key: $CRAWLORA_API_KEY"