Endpoint Playground
Test Crawlora's Sonic Drive-In Item 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/sonic/item?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | Yes | A menu page path from /sonic/sitemap (section=menu) |
{
"code": 200,
"msg": "OK",
"data": {
"name": "Bacon, Egg and Cheese Bagel",
"description": "Local Favorite! Fluffy egg, melty cheese, and bacon between a toasted bagel.",
"image_url": "https://www.sonicdrivein.com/.../bacon-egg-cheese-bagel.png",
"nutrition_guide_url": "https://www.sonicdrivein.com/.../nutrition-guide.pdf",
"path": "menu/categories/breakfast/local-breakfast-favorites/bacon-egg-and-cheese-bagel",
"source_url": "https://www.sonicdrivein.com/_next/data/<buildId>/menu/categories/breakfast/local-breakfast-favorites/bacon-egg-and-cheese-bagel.json",
"fetched_at": "2026-09-04T12: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 one menu page's detail: name, description, image, and a link to Sonic's site-wide nutrition/allergen guide PDF. path must be a "menu" section path with kind category, subcategory, or item from GET /sonic/sitemap (or a path copied from a GET /sonic/menu-adjacent page you already know).
{
"code": 200,
"msg": "OK",
"data": {
"name": "Bacon, Egg and Cheese Bagel",
"description": "Local Favorite! Fluffy egg, melty cheese, and bacon between a toasted bagel.",
"image_url": "https://www.sonicdrivein.com/.../bacon-egg-cheese-bagel.png",
"nutrition_guide_url": "https://www.sonicdrivein.com/.../nutrition-guide.pdf",
"path": "menu/categories/breakfast/local-breakfast-favorites/bacon-egg-and-cheese-bagel",
"source_url": "https://www.sonicdrivein.com/_next/data/<buildId>/menu/categories/breakfast/local-breakfast-favorites/bacon-egg-and-cheese-bagel.json",
"fetched_at": "2026-09-04T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/sonic/item?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"