Endpoint Playground
Test Crawlora's Taco Bell 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/taco-bell/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"slug": "tacos",
"name": "Tacos",
"url": "https://www.tacobell.com/food/tacos",
"hidden_from_menu": false
}
],
"count": 17,
"source_url": "https://www.tacobell.com/food",
"fetched_at": "2026-08-31T16:40: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 Taco Bell's US menu categories -- 17 at time of writing, including tacos, burritos, quesadillas, nachos, bowls, breakfast, drinks, snacks-sweets, specialties, party-packs, vegetarian, boxes-and-combos and the value menus. Each entry's slug is the value GET /taco-bell/menu takes. A category flagged hidden_from_menu is one Taco Bell does not surface in its own navigation; it is still fetchable. Takes no parameters.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"slug": "tacos",
"name": "Tacos",
"url": "https://www.tacobell.com/food/tacos",
"hidden_from_menu": false
}
],
"count": 17,
"source_url": "https://www.tacobell.com/food",
"fetched_at": "2026-08-31T16:40:00Z"
}
}curl "https://api.crawlora.net/api/v1/taco-bell/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"