Endpoint Playground
Test Crawlora's Sonic Drive-In Categories 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/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"name": "Tea & Coffee",
"slug": "tea-coffee",
"page_count": 24,
"url": "https://www.sonicdrivein.com/menu/categories/tea-coffee/"
}
],
"count": 20,
"source_url": "https://www.sonicdrivein.com/_next/data/<buildId>/menu/categories.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 Sonic Drive-In's national menu's top-level categories -- Breakfast, Value, Limited Time, Combos, Burgers, Chicken, Hot Dogs, Sandwiches, Snacks & Sides, Sweets, Tea & Coffee, Lemonades & Limeades, Sodas, Slushes, Refreshers, Wacky Pack Kids Meals and others -- each with its slug (the value GET /sonic/menu takes) and a page_count of subcategory/item pages nested under it.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"name": "Tea & Coffee",
"slug": "tea-coffee",
"page_count": 24,
"url": "https://www.sonicdrivein.com/menu/categories/tea-coffee/"
}
],
"count": 20,
"source_url": "https://www.sonicdrivein.com/_next/data/<buildId>/menu/categories.json",
"fetched_at": "2026-09-04T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/sonic/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"