Discover/Gulfood API
live

Gulfood APIexhibitors.gulfood.com

Search and retrieve contact details for Gulfood 2026 exhibitors in Dubai. Access company profiles, stand locations, sectors, websites, and social media links.

This API takes change requests — .
Endpoint health
verified 4h ago
search_exhibitors
get_exhibitor_details
2/2 passing latest checkself-healing
Endpoints
2
Updated
5h ago

What is the Gulfood API?

The Gulfood Exhibitors API exposes 2 endpoints to search and retrieve data from the official Gulfood 2026 exhibitor directory. search_exhibitors returns paginated results with name, stand, country, description, and sector for each exhibitor, while get_exhibitor_details returns a full profile including website, email, telephone, and social media links. Together the endpoints cover the full directory of food and beverage trade show participants registered for Gulfood 2026 in Dubai.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination (10 results per page).
Filter by initial letter A-Z. Omitting returns all exhibitors.
Filter by venue/sector name (e.g. 'Beverages', 'Dairy'). Omitting returns all sectors.
Filter by country name (e.g. 'United Kingdom', 'India'). Omitting returns all countries.
Free-text keyword search across exhibitor names and descriptions.
api.parse.bot/scraper/ebdb59fc-52b4-4c80-90f6-6989e2e7d150/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/ebdb59fc-52b4-4c80-90f6-6989e2e7d150/search_exhibitors?page=1&keyword=nestle' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace exhibitors-gulfood-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Gulfood 2026 Exhibitor Directory — search, drill down, get details."""
from parse_apis.exhibitors_gulfood_com_api import Gulfood, ExhibitorNotFound

client = Gulfood()

# Search exhibitors by keyword, cap total items fetched.
for summary in client.exhibitor_summaries.search(keyword="nestle", limit=5):
    print(summary.name, "|", summary.country, "|", summary.stand)

# Drill down: take the first result and navigate to full details.
hit = client.exhibitor_summaries.search(keyword="chocolate", limit=1).first()
if hit is not None:
    exhibitor = hit.details()
    print(exhibitor.name, exhibitor.country)
    print("Website:", exhibitor.website)
    print("Sectors:", exhibitor.sectors)
    for platform, url in exhibitor.social_media.items():
        print(f"  {platform}: {url}")

# Point lookup by slug with error handling.
try:
    detail = client.exhibitors.get(slug="nestle-pakistan")
    print(detail.name, "|", detail.stand)
    print("Profile:", detail.company_profile[:120])
except ExhibitorNotFound:
    print("Exhibitor not found")

# Filter by country and letter.
for summary in client.exhibitor_summaries.search(country="India", letter="A", limit=3):
    print(summary.name, summary.description[:60])

print("exercised: exhibitor_summaries.search / details / exhibitors.get")
All endpoints · 2 totalmissing one? ·

Search exhibitors in the Gulfood 2026 directory with optional keyword, country, alphabetical letter, and sector filters. Returns paginated results of 10 exhibitors per page including name, slug (for use with get_exhibitor_details), stand location, country, description, and sectors.

Input
ParamTypeDescription
pageintegerPage number for pagination (10 results per page).
letterstringFilter by initial letter A-Z. Omitting returns all exhibitors.
sectorstringFilter by venue/sector name (e.g. 'Beverages', 'Dairy'). Omitting returns all sectors.
countrystringFilter by country name (e.g. 'United Kingdom', 'India'). Omitting returns all countries.
keywordstringFree-text keyword search across exhibitor names and descriptions.
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "exhibitors": "array of exhibitor summaries with name, slug, stand, country, description, and sectors"
  },
  "sample": {
    "page": 1,
    "exhibitors": [
      {
        "name": "Nestle Pakistan",
        "slug": "nestle-pakistan",
        "stand": "Stand No- 247, Hall 2",
        "country": "Pakistan",
        "sectors": [],
        "description": "We proudly export our iconic local brands..."
      }
    ]
  }
}

About the Gulfood API

Search the Exhibitor Directory

The search_exhibitors endpoint queries the Gulfood 2026 directory and returns 10 exhibitors per page. You can narrow results using four independent filters: letter (A–Z initial), sector (e.g. 'Beverages', 'Dairy'), country (e.g. 'United Kingdom', 'India'), and keyword for free-text search across names and descriptions. Each result in the exhibitors array includes name, slug, stand, country, description, and sectors. The slug field is what you pass to the second endpoint to fetch full contact details.

Retrieve Full Exhibitor Profiles

The get_exhibitor_details endpoint accepts a slug obtained from search_exhibitors and returns a single exhibitor record with the following fields: name, stand, country, company_profile, sectors, website, email, telephone, and social_media. The social_media object maps platform keys — facebook, linkedin, instagram, twitter, youtube — to their respective profile URLs where the exhibitor has provided them.

Contact Data Coverage

The email and telephone fields are present in the response schema but are null for most exhibitors, reflecting what the Gulfood directory itself publishes. website and social_media links have broader coverage and are the most reliable contact vectors available. Stand and hall location data is populated for all registered exhibitors.

Reliability & maintenanceVerified

The Gulfood API is a managed, monitored endpoint for exhibitors.gulfood.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when exhibitors.gulfood.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official exhibitors.gulfood.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4h ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a searchable internal database of Gulfood 2026 food and beverage suppliers filtered by sector and country.
  • Identify exhibitors in a specific sector like 'Dairy' or 'Beverages' to target for pre-show outreach.
  • Extract website and LinkedIn URLs from exhibitor profiles to enrich a CRM before the trade show.
  • Map exhibitor stand locations to plan booth visit routes during the event.
  • Filter exhibitors by country of origin to find regional suppliers or distributors.
  • Aggregate sector distribution across the full exhibitor list to analyze market representation at Gulfood 2026.
  • Cross-reference exhibitor slugs against a proprietary contact list to identify which existing partners are attending.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Gulfood have an official developer API for the exhibitor directory?+
Gulfood does not publish a documented public developer API for its exhibitor directory at exhibitors.gulfood.com.
How do filters work in search_exhibitors, and can I combine them?+
Each filter parameter — letter, sector, country, and keyword — is optional and omitting any returns all values for that dimension. The endpoint supports combining parameters in a single request, for example filtering by country='India' and sector='Beverages' simultaneously. Results are paginated at 10 exhibitors per page using the page parameter.
Does the API return direct email and phone numbers for exhibitors?+
The email and telephone fields are included in get_exhibitor_details responses but are null for most exhibitors because the Gulfood directory does not require exhibitors to publish that information. Website URLs and social media links have considerably better coverage and are the more reliable contact channels available through this API.
Does the API cover past Gulfood editions or only Gulfood 2026?+
The API currently covers the Gulfood 2026 edition only. Historical exhibitor data from prior years is not included. You can fork this API on Parse and revise it to target archived directory pages if prior-year data becomes available.
Can I retrieve a list of all available sector or country filter values?+
The API does not expose a dedicated endpoint that enumerates valid sector or country values. The sectors field in each exhibitor record and the country field in search results reflect what the directory uses, so you can derive the full set by iterating through paginated results. You can fork this API on Parse and revise it to add a dedicated facets or filter-values endpoint.
Page content last updated . Spec covers 2 endpoints from exhibitors.gulfood.com.
Related APIs in B2b DirectorySee all →
gulfood.com API
Access the complete Gulfood exhibitor directory, including exhibitor profiles, products, brands, press releases, and exhibition sectors. Filter by country, category, venue, or keyword to find exhibitors and retrieve detailed profiles with stand locations, contact information, and social media links.
exhibitors.gitex.com API
Search and browse exhibitors participating in GITEX Global 2025 by company profile, technology sector, country, and category to find the vendors and solutions you're looking for. Instantly access detailed information about thousands of exhibitors including their full profiles and industry classifications to discover relevant partners and technologies.
exhibitors.cphi.com API
Find and explore pharmaceutical exhibitors at CPHI events by searching company names, accessing detailed contact information, employee counts, and company descriptions. Quickly identify potential partners, suppliers, or competitors with comprehensive exhibitor profiles and directory listings.
exhibitors.gamescom.global API
Search and discover Gamescom 2025 exhibitors by company name or product category, and access detailed information about each exhibitor including their offerings and booth details. Browse the complete exhibitor directory to find specific companies, explore product groups, and learn more about the games and services each participant is showcasing.
infocomm26.mapyourshow.com API
Search and discover InfoComm 2026 exhibitors by name, category, or hall location, and access detailed company profiles with booth information. Browse hall layouts, explore featured vendors, and quickly find the products and services you need at the conference.
attend.expowest.com API
Find speaker and exhibitor information from Natural Products Expo West, including names, titles, and company details to research attendees and discover industry contacts. Search and filter through the event directory to identify potential networking opportunities and business partners.
10times.com API
Search and discover events from 10times.com, including conferences, trade shows, and exhibitions worldwide. Access detailed event data such as exhibitor lists, schedules, agendas, and venue information.
ifa-berlin.com API
Browse exhibitors and event details from IFA Berlin, including paginated listings and specific company information. Discover IFA moments and explore the complete exhibitor directory for the tech conference.