Marketplace
No threads yet
Live

get_exhibitor_details

exhibitors.gulfood.com

Retrieves a full Gulfood 2026 exhibitor profile by slug from https://exhibitors.gulfood.com. Returns company, stand, sector, website, available email and telephone, and social media contact details.

Parameters1
Runs9
Updated10d ago
Operational9 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_exhibitor_details?

Retrieves a full Gulfood 2026 exhibitor profile by slug from https://exhibitors.gulfood.com. Returns company, stand, sector, website, available email and telephone, and social media contact details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass slug and get the result back without maintaining a scraper.

Response

{
  "name": "<string>",
  "slug": "<string>",
  "email": "<string>",
  "country": "<string>",
  "sectors": [
    "<string>"
  ],
  "logo_url": "<string>",
  "telephone": "<string>",
  "profile_url": "<string>",
  "website_url": "<string>",
  "stand_map_url": "<string>",
  "stand_location": "<string>",
  "company_profile": "<string>",
  "social_media_links": [
    {
      "url": "<string>",
      "platform": "<string>"
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/ed512cb7-21b1-495e-86f7-4e21b1d3874d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "ed512cb7-21b1-495e-86f7-4e21b1d3874d",
    "variables": {
        "slug": "0-we-get-any-stock-uks-leading-fmcg-exporter-of-uk-eu-usa-products"
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="ed512cb7-21b1-495e-86f7-4e21b1d3874d") — the "get_exhibitor_details" function, which retrieves a full Gulfood 2026 exhibitor profile by slug from https://exhibitors.gulfood.com. Returns company, stand, sector, website, available email and telephone, and social media contact details..

It takes slug (str). Return the result as structured JSON.