search_gulfood_exhibitors
exhibitors.gulfood.comSearches the Gulfood 2026 exhibitor directory at https://exhibitors.gulfood.com with optional keyword, country, letter, sector, and page filters. Returns up to 10 exhibitor profiles per page with directory details and reusable slugs.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_gulfood_exhibitors?
Searches the Gulfood 2026 exhibitor directory at https://exhibitors.gulfood.com with optional keyword, country, letter, sector, and page filters. Returns up to 10 exhibitor profiles per page with directory details and reusable slugs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, country, letter, sector, page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"has_more": true,
"page_size": 0,
"exhibitors": [
{
"name": "<string>",
"slug": "<string>",
"country": "<string>",
"sectors": [
"<string>"
],
"logo_url": "<string>",
"description": "<string>",
"profile_url": "<string>",
"stand_map_url": "<string>",
"stand_location": "<string>"
}
],
"result_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/5ce0f753-b7ee-4171-bb67-e5787ebcfc94/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "5ce0f753-b7ee-4171-bb67-e5787ebcfc94",
"variables": {
"keyword": "",
"country": "",
"letter": "",
"sector": "",
"page": 1
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="5ce0f753-b7ee-4171-bb67-e5787ebcfc94") — the "search_gulfood_exhibitors" function, which searches the Gulfood 2026 exhibitor directory at https://exhibitors.gulfood.com with optional keyword, country, letter, sector, and page filters. Returns up to 10 exhibitor profiles per page with directory details and reusable slugs.. It takes keyword (str), country (str), letter (str), sector (str), page (int). Return the result as structured JSON.