# RoamingHunger Food Truck & Catering Scraper (`crawlerbros/roaminghunger-food-truck-scraper`) Actor

Scrape RoamingHunger.com's directory of 24,000+ food trucks, trailers, carts and caterers across the US, Canada and beyond. Browse by city, state/province, or cuisine, search by name, or look up vendors by slug. Get cuisine tags, menu highlights, ratings, images and booking URLs.

- **URL**: https://apify.com/crawlerbros/roaminghunger-food-truck-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Automation, Developer tools, Integrations
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## RoamingHunger Food Truck & Catering Scraper

Scrape [RoamingHunger.com](https://roaminghunger.com)'s directory of 24,000+ food trucks, trailers, carts and mobile caterers across the US, Canada, Puerto Rico, and select international markets. Browse by city, US state / Canadian province, or cuisine, run a free-text vendor search, or look up specific vendors by their profile slug. Built for event planners sourcing food trucks for weddings and corporate events, and for food-truck market researchers.

### What this actor does

- **Five modes:** `byCity`, `byState`, `search`, `byCuisine`, `byVendorSlugs`
- **180 curated market cities** across the US, Canada, and select international markets (dropdown, no typos)
- **62 US states / Canadian provinces** with active vendor coverage (dropdown)
- **164 cuisine & specialty tags** (Tacos, BBQ, Vegan, Halal, Korean BBQ, and 160+ more — dropdown)
- **12 event-type tags** (Weddings, Corporate Catering, Fundraisers, and more — dropdown)
- **Filters:** verified-only, instant-book-only, include-closed-vendors, sort order
- **7 sort orders:** ranking, newest, name, tier/level, highest rated, most reviewed, most booked
- **Rich per-vendor data:** cuisine tags, event suitability, menu highlights, booking/pricing options (incl. alcohol-service and included-hours), ratings, catering/vending booking split, vendor tier, city geo-coordinates, images, social links, profile URL
- **Empty fields are omitted** — no nulls, no placeholders

### Output per vendor

- `name`, `slug`, `vendorId`, `profileUrl`
- `description`, `shortDescription`
- `cuisineTags[]`, `primaryCuisine`, `eventTypes[]`
- `cityName`, `cityUrlSlug`, `cityLat`, `cityLng`, `stateOrProvince`, `stateCode`, `countryCode`, `countryName`
- `menuHighlights[]` — `{ category, item, description, price }`
- `bookingOptions[]` — `{ type, name, costPerHour, costPerMile, orderMinimum, freeMiles, maxMiles, includedHours, alcoholService }`
- `averageRating`, `totalReviews`, `totalBookings`, `totalCateringBookings`, `totalVendingBookings`
- `verified`, `featured`, `preferred`, `instantBook`, `closed`, `vendorTier`
- `images[]` — vendor photo URLs
- `website`, `menuUrl`, `twitterUrl`, `instagramUrl`, `facebookUrl`, `yelpUrl`
- `firstServiceDate`, `createdAt`
- `recordType: "foodTruck"`, `scrapedAt`

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `mode` | string | `byCity` | `byCity` / `byState` / `search` / `byCuisine` / `byVendorSlugs` |
| `citySlug` | string (select) | `austin-tx` | Market city (mode=byCity) |
| `state` | string (select) | `texas` | US state / Canadian province (mode=byState) |
| `searchQuery` | string | `taco` | Free-text vendor name/keyword (mode=search) |
| `vendorSlugs` | array | `["bohemian-burger-q"]` | Exact profile slugs (mode=byVendorSlugs) |
| `cuisineTag` | string (select) | – | Cuisine/specialty filter; required for mode=byCuisine, optional elsewhere |
| `eventType` | string (select) | – | Only vendors suited for this event type |
| `sortBy` | string (select) | `ranking` | `ranking` / `newest` / `name` / `level` / `rating` / `mostReviewed` / `mostBooked` |
| `verifiedOnly` | boolean | `false` | Only RoamingHunger-verified vendors |
| `instantBookOnly` | boolean | `false` | Only vendors with instant online booking |
| `includeClosedVendors` | boolean | `false` | Include permanently closed vendors |
| `maxItems` | integer | `30` | Max results (1–2000) |

#### Example: BBQ trucks in Austin, TX

```json
{ "mode": "byCity", "citySlug": "austin-tx", "cuisineTag": "bbq", "maxItems": 25 }
````

#### Example: wedding-suitable caterers in California

```json
{ "mode": "byState", "state": "california", "eventType": "weddings", "maxItems": 50 }
```

#### Example: search by name

```json
{ "mode": "search", "searchQuery": "kona ice", "maxItems": 20 }
```

#### Example: all taco trucks nationwide, verified only

```json
{ "mode": "byCuisine", "cuisineTag": "tacos", "verifiedOnly": true, "maxItems": 100 }
```

#### Example: look up specific vendors

```json
{ "mode": "byVendorSlugs", "vendorSlugs": ["bohemian-burger-q", "crepe-crazy"] }
```

### Use cases

- **Event planners** — source food trucks for weddings, corporate events, fundraisers, and private parties by city, cuisine, and event suitability
- **Food-truck market research** — analyze cuisine density and vendor counts by city/state
- **Caterer discovery apps** — build a searchable local food-truck directory
- **Competitive intelligence** — track which cuisines and vendors are trending in a given market
- **Lead generation** — find verified, bookable vendors in a target region

### FAQ

**What's RoamingHunger?** A nationwide food-truck and mobile-caterer booking directory covering 24,000+ vendors across the US, Canada, Puerto Rico, and a few international markets (UK, UAE, Ireland, Hong Kong).

**Is a proxy or login required?** No — the actor uses no cookies, no API key, and no paid proxy.

**Why do some vendors have no rating?** RoamingHunger only shows `averageRating`/`totalReviews` once a vendor has received at least one review through the platform; unreviewed vendors omit these fields rather than showing a fake `0`.

**What's the difference between `byCuisine` and adding `cuisineTag` to `byCity`/`byState`?** `byCuisine` browses that cuisine across **all** locations; adding `cuisineTag` to `byCity`/`byState` narrows results to that cuisine **within** the chosen city/state.

**Why are vendor profile pages (e.g. `roaminghunger.com/<slug>/`) sometimes unreachable with a plain `curl`?** RoamingHunger sits behind Cloudflare bot management, which serves a JS challenge to non-browser HTTP clients. The pages are real and load normally in any browser; automated HEAD checks need a browser-like TLS fingerprint (the actor itself handles this internally).

**How fresh is the data?** Vendor profiles, ratings, and booking counts are live from RoamingHunger's own booking platform at scrape time.

**Can I get vendors outside the curated city/state list?** The `search` mode is unconstrained by city/state — search any vendor name or keyword directly. The curated `citySlug`/`state` dropdowns cover every market RoamingHunger actively promotes with real vendor coverage.

# Actor input Schema

## `mode` (type: `string`):

Choose how to browse RoamingHunger's directory: by city, by US state/Canadian province, free-text vendor search, cuisine-only browse (all locations), or direct lookup of specific vendors by profile slug.

## `citySlug` (type: `string`):

Market city to browse food trucks/caterers in. Required for mode=byCity.

## `state` (type: `string`):

US state or Canadian province to browse food trucks/caterers in. Required for mode=byState.

## `searchQuery` (type: `string`):

Free-text keyword to search vendor names/descriptions (e.g. "taco", "BBQ", "Kona Ice"). Required for mode=search.

## `vendorSlugs` (type: `array`):

Exact RoamingHunger profile slugs to fetch directly, e.g. "bohemian-burger-q" from https://roaminghunger.com/bohemian-burger-q/. Required for mode=byVendorSlugs.

## `cuisineTag` (type: `string`):

Restrict results to a single cuisine or specialty tag. Required for mode=byCuisine; optional filter for byCity/byState/search.

## `eventType` (type: `string`):

Only include vendors RoamingHunger tags as suited for this event type (optional, all modes).

## `sortBy` (type: `string`):

How to order results before maxItems is applied.

## `verifiedOnly` (type: `boolean`):

Only include vendors RoamingHunger has manually verified.

## `instantBookOnly` (type: `boolean`):

Only include vendors that support instant online booking.

## `includeClosedVendors` (type: `boolean`):

By default, permanently closed food trucks are excluded. Enable to include them anyway (useful for historical market research).

## `maxItems` (type: `integer`):

Maximum number of vendor records to return.

## Actor input object example

```json
{
  "mode": "byCity",
  "citySlug": "austin-tx",
  "state": "texas",
  "searchQuery": "taco",
  "vendorSlugs": [
    "bohemian-burger-q"
  ],
  "sortBy": "ranking",
  "verifiedOnly": false,
  "instantBookOnly": false,
  "includeClosedVendors": false,
  "maxItems": 30
}
```

# Actor output Schema

## `foodTrucks` (type: `string`):

Dataset containing all scraped RoamingHunger vendor records.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "mode": "byCity",
    "citySlug": "austin-tx",
    "state": "texas",
    "searchQuery": "taco",
    "vendorSlugs": [
        "bohemian-burger-q"
    ],
    "sortBy": "ranking",
    "verifiedOnly": false,
    "instantBookOnly": false,
    "includeClosedVendors": false,
    "maxItems": 30
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/roaminghunger-food-truck-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "mode": "byCity",
    "citySlug": "austin-tx",
    "state": "texas",
    "searchQuery": "taco",
    "vendorSlugs": ["bohemian-burger-q"],
    "sortBy": "ranking",
    "verifiedOnly": False,
    "instantBookOnly": False,
    "includeClosedVendors": False,
    "maxItems": 30,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/roaminghunger-food-truck-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "mode": "byCity",
  "citySlug": "austin-tx",
  "state": "texas",
  "searchQuery": "taco",
  "vendorSlugs": [
    "bohemian-burger-q"
  ],
  "sortBy": "ranking",
  "verifiedOnly": false,
  "instantBookOnly": false,
  "includeClosedVendors": false,
  "maxItems": 30
}' |
apify call crawlerbros/roaminghunger-food-truck-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=crawlerbros/roaminghunger-food-truck-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "RoamingHunger Food Truck & Catering Scraper",
        "description": "Scrape RoamingHunger.com's directory of 24,000+ food trucks, trailers, carts and caterers across the US, Canada and beyond. Browse by city, state/province, or cuisine, search by name, or look up vendors by slug. Get cuisine tags, menu highlights, ratings, images and booking URLs.",
        "version": "1.0",
        "x-build-id": "IXeKPfwdfatdIRmsb"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~roaminghunger-food-truck-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-roaminghunger-food-truck-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/crawlerbros~roaminghunger-food-truck-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-roaminghunger-food-truck-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/crawlerbros~roaminghunger-food-truck-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-roaminghunger-food-truck-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "byCity",
                            "byState",
                            "search",
                            "byCuisine",
                            "byVendorSlugs"
                        ],
                        "type": "string",
                        "description": "Choose how to browse RoamingHunger's directory: by city, by US state/Canadian province, free-text vendor search, cuisine-only browse (all locations), or direct lookup of specific vendors by profile slug.",
                        "default": "byCity"
                    },
                    "citySlug": {
                        "title": "City (mode=byCity)",
                        "enum": [
                            "abilene-tx",
                            "albuquerque-nm",
                            "anchorage-ak",
                            "ann-arbor-mi",
                            "asheville-nc",
                            "atlanta-ga",
                            "austin-tx",
                            "baltimore-md",
                            "bangor-me",
                            "baton-rouge-la",
                            "bellingham-wa",
                            "bend-or",
                            "bentonville-ar",
                            "billings-mt",
                            "birmingham-al",
                            "bismarck-nd",
                            "bloomington-in",
                            "boise-id",
                            "boston-ma",
                            "boulder-co",
                            "bozeman-mt",
                            "branson-mo",
                            "buffalo-ny",
                            "calgary-ab-canada",
                            "cape-coral-fl",
                            "cedar-rapids-ia",
                            "champaign-il",
                            "charleston-sc",
                            "charleston-wv",
                            "charlotte-nc",
                            "charlottesville-va",
                            "chattanooga-tn",
                            "chicago-il",
                            "cincinnati-oh",
                            "cleveland-oh",
                            "college-station-tx",
                            "colorado-springs-co",
                            "columbia-mo",
                            "columbia-sc",
                            "columbus-oh",
                            "concord-nh",
                            "corpus-christi-tx",
                            "dallas-tx",
                            "davenport-ia",
                            "dayton-oh",
                            "del-rio-tx",
                            "denver-co",
                            "des-moines-ia",
                            "detroit-mi",
                            "dubai-united-arab-emirates",
                            "dublin-ireland",
                            "edmonton-ab-canada",
                            "el-paso-tx",
                            "eugene-or",
                            "evansville-in",
                            "fargo-nd",
                            "fayetteville-ar",
                            "flagstaff-az",
                            "fort-collins-co",
                            "fort-myers-fl",
                            "fort-wayne-in",
                            "fresno-ca",
                            "grand-junction-co",
                            "grand-rapids-mi",
                            "greensboro-nc",
                            "greenville-sc",
                            "halifax-ns-canada",
                            "hamilton-on-canada",
                            "harrisburg-pa",
                            "hartford-ct",
                            "holdrege-ne",
                            "hong-kong-china",
                            "honolulu-hi",
                            "houston-tx",
                            "huntsville-al",
                            "indianapolis-in",
                            "iowa-city-ia",
                            "jackson-ms",
                            "jacksonville-fl",
                            "jersey-city-nj",
                            "kansas-city-mo",
                            "kauai-hi",
                            "kelowna-bc-canada",
                            "knoxville-tn",
                            "lancaster-pa",
                            "las-vegas-nv",
                            "lexington-ky",
                            "lincoln-ne",
                            "little-rock-ar",
                            "london-united-kingdom",
                            "los-angeles-ca",
                            "louisville-ky",
                            "lubbock-tx",
                            "lynchburg-va",
                            "madison-wi",
                            "maui-hi",
                            "medford-or",
                            "memphis-tn",
                            "miami-fl",
                            "midland-tx",
                            "milwaukee-wi",
                            "minneapolis-mn",
                            "missoula-mt",
                            "mobile-al",
                            "montgomery-al",
                            "montreal-qc-canada",
                            "naples-fl",
                            "nashville-tn",
                            "new-haven-ct",
                            "new-orleans-la",
                            "new-york-ny",
                            "niagara-falls-ny",
                            "norwalk-ct",
                            "oklahoma-city-ok",
                            "omaha-ne",
                            "orange-county-ca",
                            "orlando-fl",
                            "ottawa-on-canada",
                            "palm-springs-ca",
                            "panama-city-fl",
                            "pensacola-fl",
                            "philadelphia-pa",
                            "phoenix-az",
                            "pittsburgh-pa",
                            "portland-me",
                            "portland-or",
                            "providence-ri",
                            "provo-ut",
                            "raleigh-durham-nc",
                            "regina-sk-canada",
                            "reno-nv",
                            "richland-wa",
                            "richmond-va",
                            "riverside-ca",
                            "rochester-ny",
                            "rome-ny",
                            "sacramento-ca",
                            "salem-or",
                            "salina-ks",
                            "salt-lake-city-ut",
                            "san-antonio-tx",
                            "san-diego-ca",
                            "san-francisco-ca",
                            "san-jose-ca",
                            "san-juan-pr",
                            "santa-barbara-ca",
                            "santa-fe-nm",
                            "sarasota-fl",
                            "saskatoon-sk-canada",
                            "seattle-wa",
                            "shreveport-la",
                            "sioux-falls-sd",
                            "spokane-wa",
                            "springfield-mo",
                            "st-george-ut",
                            "st-louis-mo",
                            "syracuse-ny",
                            "tallahassee-fl",
                            "tampa-fl",
                            "thunder-bay-on-canada",
                            "toledo-oh",
                            "topeka-ks",
                            "toronto-on-canada",
                            "traverse-city-mi",
                            "tucson-az",
                            "tulsa-ok",
                            "tuscaloosa-al",
                            "vancouver-bc-canada",
                            "victoria-bc-canada",
                            "virginia-beach-va",
                            "washington-dc",
                            "west-palm-beach-fl",
                            "whitefish-mt",
                            "whitehorse-yt-canada",
                            "wichita-falls-tx",
                            "wichita-ks",
                            "wilmington-de",
                            "wilmington-nc",
                            "winnipeg-mb-canada",
                            "york-pa"
                        ],
                        "type": "string",
                        "description": "Market city to browse food trucks/caterers in. Required for mode=byCity.",
                        "default": "austin-tx"
                    },
                    "state": {
                        "title": "State / Province (mode=byState)",
                        "enum": [
                            "alabama",
                            "alaska",
                            "alberta-canada",
                            "arizona",
                            "arkansas",
                            "british-columbia-canada",
                            "california",
                            "colorado",
                            "connecticut",
                            "delaware",
                            "district-of-columbia",
                            "florida",
                            "georgia",
                            "hawaii",
                            "idaho",
                            "illinois",
                            "indiana",
                            "iowa",
                            "kansas",
                            "kentucky",
                            "louisiana",
                            "maine",
                            "manitoba-canada",
                            "maryland",
                            "massachusetts",
                            "michigan",
                            "minnesota",
                            "mississippi",
                            "missouri",
                            "montana",
                            "nebraska",
                            "nevada",
                            "new-brunswick-canada",
                            "new-hampshire",
                            "new-jersey",
                            "new-mexico",
                            "new-york",
                            "newfoundland-and-labrador-canada",
                            "north-carolina",
                            "north-dakota",
                            "nova-scotia-canada",
                            "ohio",
                            "oklahoma",
                            "ontario-canada",
                            "oregon",
                            "pennsylvania",
                            "puerto-rico",
                            "quebec-canada",
                            "rhode-island",
                            "saskatchewan-canada",
                            "south-carolina",
                            "south-dakota",
                            "tennessee",
                            "texas",
                            "utah",
                            "vermont",
                            "virginia",
                            "washington",
                            "west-virginia",
                            "wisconsin",
                            "wyoming",
                            "yukon-canada"
                        ],
                        "type": "string",
                        "description": "US state or Canadian province to browse food trucks/caterers in. Required for mode=byState.",
                        "default": "texas"
                    },
                    "searchQuery": {
                        "title": "Search query (mode=search)",
                        "type": "string",
                        "description": "Free-text keyword to search vendor names/descriptions (e.g. \"taco\", \"BBQ\", \"Kona Ice\"). Required for mode=search.",
                        "default": "taco"
                    },
                    "vendorSlugs": {
                        "title": "Vendor profile slugs (mode=byVendorSlugs)",
                        "type": "array",
                        "description": "Exact RoamingHunger profile slugs to fetch directly, e.g. \"bohemian-burger-q\" from https://roaminghunger.com/bohemian-burger-q/. Required for mode=byVendorSlugs.",
                        "default": [
                            "bohemian-burger-q"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "cuisineTag": {
                        "title": "Cuisine / specialty filter",
                        "enum": [
                            "acai",
                            "afghan",
                            "african",
                            "alcohol",
                            "american-classics",
                            "argentinian",
                            "asian",
                            "asian-fusion",
                            "bbq",
                            "bacon",
                            "bagels",
                            "belgian",
                            "beverages",
                            "boba",
                            "bowls",
                            "brazilian",
                            "breakfast",
                            "brunch",
                            "burgers",
                            "burritos",
                            "cajun",
                            "cakes",
                            "california-cuisine",
                            "candy",
                            "caribbean",
                            "carnival-food",
                            "cheesesteaks",
                            "chicken-and-waffles",
                            "chili",
                            "chinese",
                            "churros",
                            "coffee",
                            "colombian",
                            "comfort-food",
                            "cookies",
                            "corn",
                            "corn-dogs",
                            "country-french",
                            "craft-services",
                            "creole",
                            "crepes",
                            "cuban",
                            "cupcakes",
                            "curry",
                            "custom-catering",
                            "czech",
                            "dessert",
                            "donuts",
                            "dumplings",
                            "east-coast",
                            "eastern-european",
                            "eclectic",
                            "eggrolls",
                            "empanadas",
                            "ethiopian",
                            "falafel",
                            "farm-to-table",
                            "filipino",
                            "fish-and-chips",
                            "flatbread",
                            "fondue",
                            "french",
                            "fried-chicken",
                            "fries",
                            "frozen-treats",
                            "frozen-yogurt",
                            "fruit",
                            "funnel-cakes",
                            "gastropub",
                            "gelato",
                            "german",
                            "gluten-free-friendly",
                            "greek",
                            "grilled-cheese",
                            "guatemalan",
                            "halal",
                            "hawaiian",
                            "healthy-food",
                            "hot-dogs",
                            "hungarian",
                            "ice-cream",
                            "ice-cream-sandwiches",
                            "ice-pops",
                            "indian",
                            "indonesian",
                            "irish",
                            "italian",
                            "italian-ice",
                            "jamaican",
                            "japanese",
                            "juice",
                            "kebabs",
                            "kenyan",
                            "korean",
                            "korean-bbq",
                            "kosher",
                            "latin-fusion",
                            "lobster-rolls",
                            "locally-sourced",
                            "mac-n-cheese",
                            "malaysian",
                            "meatballs",
                            "mediterranean",
                            "mexican",
                            "middle-eastern",
                            "native-american",
                            "noodles",
                            "nuts",
                            "organic",
                            "pakistani",
                            "paleo",
                            "paninis",
                            "pasta",
                            "pastries",
                            "peruvian",
                            "pies",
                            "pizza",
                            "poke",
                            "polish",
                            "popcorn",
                            "portuguese",
                            "poutine",
                            "puerto-rican",
                            "ramen",
                            "rotisserie",
                            "salads",
                            "salvadoran",
                            "sandwiches",
                            "sausages",
                            "savory",
                            "scandinavian",
                            "seafood",
                            "shaved-ice",
                            "singaporean",
                            "sliders",
                            "smoothies",
                            "snacks",
                            "soda",
                            "somalian",
                            "soul-food",
                            "soup",
                            "southern",
                            "southwestern",
                            "spanish",
                            "stationary",
                            "surf-and-turf",
                            "sushi",
                            "sweet",
                            "tacos",
                            "taiwanese",
                            "tater-tots",
                            "tea",
                            "tex-mex",
                            "thai",
                            "tibetan",
                            "turkish",
                            "vegan",
                            "vegetarian",
                            "venezuelan",
                            "vietnamese",
                            "waffles",
                            "wings",
                            "world-fare",
                            "wraps"
                        ],
                        "type": "string",
                        "description": "Restrict results to a single cuisine or specialty tag. Required for mode=byCuisine; optional filter for byCity/byState/search."
                    },
                    "eventType": {
                        "title": "Event type filter",
                        "enum": [
                            "corporate-catering",
                            "custom-menus",
                            "family-events",
                            "fancy-affairs",
                            "fundraisers",
                            "huge-events",
                            "indoor-events",
                            "on-set-catering",
                            "smaller-spaces",
                            "vegans-vegetarians",
                            "vegetarians",
                            "weddings"
                        ],
                        "type": "string",
                        "description": "Only include vendors RoamingHunger tags as suited for this event type (optional, all modes)."
                    },
                    "sortBy": {
                        "title": "Sort order",
                        "enum": [
                            "ranking",
                            "newest",
                            "name",
                            "level",
                            "rating",
                            "mostReviewed",
                            "mostBooked"
                        ],
                        "type": "string",
                        "description": "How to order results before maxItems is applied.",
                        "default": "ranking"
                    },
                    "verifiedOnly": {
                        "title": "Verified vendors only",
                        "type": "boolean",
                        "description": "Only include vendors RoamingHunger has manually verified.",
                        "default": false
                    },
                    "instantBookOnly": {
                        "title": "Instant-book vendors only",
                        "type": "boolean",
                        "description": "Only include vendors that support instant online booking.",
                        "default": false
                    },
                    "includeClosedVendors": {
                        "title": "Include permanently closed vendors",
                        "type": "boolean",
                        "description": "By default, permanently closed food trucks are excluded. Enable to include them anyway (useful for historical market research).",
                        "default": false
                    },
                    "maxItems": {
                        "title": "Max results",
                        "minimum": 1,
                        "maximum": 2000,
                        "type": "integer",
                        "description": "Maximum number of vendor records to return.",
                        "default": 30
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
