Endpoint Playground
Test Crawlora's Find Tiffany & Co. store locations 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/stores?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| latitude | number | Yes | Latitude, -90 to 90 | |
| longitude | number | Yes | Longitude, -180 to 180 | |
| radius | number | No | Search radius in miles | |
| limit | integer | No | Maximum stores to return |
{
"code": 200,
"msg": "OK",
"data": {
"latitude": 40.7128,
"longitude": -74.006,
"radius": 50,
"count": 1,
"fetched_at": "2026-09-10T12:00:00Z",
"stores": [
{
"store_id": "1799593",
"internal_store_id": "682",
"name": "Tiffany & Co. - The Landmark",
"store_type": "Flagship",
"address1": "727 5th Avenue",
"city": "New York",
"region": "NY",
"postal_code": "10022",
"country_code": "US",
"phone": "+12127558000",
"latitude": 40.7626931,
"longitude": -73.9739144,
"distance_miles": 3.83,
"closed": false,
"timezone": "America/New_York",
"specialities": [
"Wedding registry",
"Gifts"
],
"services": [
"Watch Repair & Sales",
"Jewelry Cleaning & Repair"
],
"hours": [
{
"day": "monday",
"closed": false,
"intervals": [
{
"start": "10:00",
"end": "20:00"
}
]
}
],
"faqs": [
{
"question": "Do I need to book an appointment to visit The Landmark?",
"answer": "Appointments are not required for general visits."
}
],
"reservation_url": "https://customer.bookingbug.com/?client=tiffany&company=NY"
}
]
}
}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.
Finds Tiffany & Co. physical stores, boutiques, and cafes near a coordinate, ordered by distance. Each result includes address, phone, opening hours, in-store services and specialities, and live open/closed status.
{
"code": 200,
"msg": "OK",
"data": {
"latitude": 40.7128,
"longitude": -74.006,
"radius": 50,
"count": 1,
"fetched_at": "2026-09-10T12:00:00Z",
"stores": [
{
"store_id": "1799593",
"internal_store_id": "682",
"name": "Tiffany & Co. - The Landmark",
"store_type": "Flagship",
"address1": "727 5th Avenue",
"city": "New York",
"region": "NY",
"postal_code": "10022",
"country_code": "US",
"phone": "+12127558000",
"latitude": 40.7626931,
"longitude": -73.9739144,
"distance_miles": 3.83,
"closed": false,
"timezone": "America/New_York",
"specialities": [
"Wedding registry",
"Gifts"
],
"services": [
"Watch Repair & Sales",
"Jewelry Cleaning & Repair"
],
"hours": [
{
"day": "monday",
"closed": false,
"intervals": [
{
"start": "10:00",
"end": "20:00"
}
]
}
],
"faqs": [
{
"question": "Do I need to book an appointment to visit The Landmark?",
"answer": "Appointments are not required for general visits."
}
],
"reservation_url": "https://customer.bookingbug.com/?client=tiffany&company=NY"
}
]
}
}curl "https://api.crawlora.net/api/v1/tiffany/stores?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"