Endpoint Playground
Test Crawlora's Panera Bread Geocode 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/panera/geocode?address=<address>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| address | string | Yes | Free-text address, city, or postal code |
{
"code": 200,
"msg": "OK",
"data": {
"address": "Chicago, IL",
"results": [
{
"latitude": 41.85003,
"longitude": -87.65005,
"city": "Chicago",
"state": "IL",
"country": "US",
"formatted_address": "Chicago, IL US",
"resolved": true
}
],
"count": 1,
"source_url": "https://www-api.panerabread.com/www-api/public/cafe/geocoding?address=Chicago%2C+IL",
"fetched_at": "2026-09-01T12: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.
Resolves a free-text address, city, or postal code to coordinates using Panera Bread's own locator geocoder -- the same lookup its site uses to center a cafe search. Returns latitude/longitude plus the resolved city, state, country and formatted address. An address Panera cannot resolve returns a single result with resolved false rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"address": "Chicago, IL",
"results": [
{
"latitude": 41.85003,
"longitude": -87.65005,
"city": "Chicago",
"state": "IL",
"country": "US",
"formatted_address": "Chicago, IL US",
"resolved": true
}
],
"count": 1,
"source_url": "https://www-api.panerabread.com/www-api/public/cafe/geocoding?address=Chicago%2C+IL",
"fetched_at": "2026-09-01T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/panera/geocode?address=<address>" \
-H "x-api-key: $CRAWLORA_API_KEY"