tljus.com APItljus.com ↗
Get all Tous Les Jours US bakery locations in one call. Returns addresses, phone numbers, hours, GPS coordinates, and emails for every store.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/ba35bc12-da4d-43cb-a21a-953fbf359eca/get_all_locations' \ -H 'X-API-Key: $PARSE_API_KEY'
Get all Tous Les Jours store locations with full details including address, phone, email, hours of operation, and geographic coordinates. Returns all locations in a single response.
No input parameters required.
{
"type": "object",
"fields": {
"total": "integer - total number of locations returned",
"locations": "array of location objects with id, name, address, phone, email, website, latitude, longitude, hours, tags, and description"
},
"sample": {
"data": {
"total": 214,
"locations": [
{
"id": 57683985,
"name": "Henderson",
"tags": "tous les jours",
"email": "[email protected]",
"hours": {
"friday": "7:30 am - 10:00pm",
"monday": "7:30 am - 10:00pm",
"sunday": "7:30 am - 10:00pm",
"tuesday": "7:30 am - 10:00pm",
"saturday": "7:30 am - 10:00pm",
"thursday": "7:30 am - 10:00pm",
"wednesday": "7:30 am - 10:00pm"
},
"phone": "+1 (555) 012-3456",
"address": "10050 S Eastern Ave Ste 110, Henderson, NV 89052",
"website": "https://tljus.com/",
"latitude": 36.006467,
"longitude": -115.11357,
"description": null
}
]
},
"status": "success"
}
}About the tljus.com API
The tljus.com API exposes a single endpoint, get_all_locations, that returns the complete list of Tous Les Jours bakery stores across the United States. Each location object includes 11 fields: id, name, address, phone, email, website, latitude, longitude, hours of operation, tags, and description. No parameters are required — one request returns every location at once.
What the API Returns
The get_all_locations endpoint returns a top-level total integer alongside a locations array. Every element in that array is a full location record containing the store's name, structured address, phone, and email contact details, a website URL, and hours covering each day of the week. Geographic fields latitude and longitude let you calculate distances or plot stores on a map without a secondary geocoding call.
Coverage and Scope
The API covers Tous Les Jours — the Korean-French bakery chain operated in the US — and includes every location published on the tljus.com locations page. The tags field on each record can carry category or feature labels (such as drive-through availability or in-store seating), and the description field provides any freeform notes attached to that location by the brand.
Using the Data
Because the endpoint takes no input parameters, the full dataset arrives in one response. Filtering by region, distance, or hours is done client-side against the returned locations array. The latitude and longitude fields are ready for use with any mapping or geospatial library. The hours field provides operating hours per location, enabling time-aware store-finder logic without additional lookups.
- Build a store-finder widget that calculates the nearest Tous Les Jours using latitude and longitude fields
- Populate a franchise directory or CRM with verified phone, email, and address data for all US locations
- Render an interactive map of every Tous Les Jours location using the coordinates from the locations array
- Check or display per-location hours of operation to surface open stores at a given time
- Aggregate Tous Les Jours contact details for a regional food-and-dining directory
- Monitor changes to the store count over time by comparing the total field across periodic calls
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.