Discover/Gulfood API
live

Gulfood APIgulfood.com

Access Gulfood 2026 exhibitor profiles, products, brands, press releases, and sectors via 8 endpoints. Filter by country, category, venue, or keyword.

This API takes change requests — .
Endpoint health
verified 6d ago
get_exhibitor_list
get_exhibitor_detail
get_products_list
get_brands_list
get_key_sectors
8/8 passing latest checkself-healing
Endpoints
8
Updated
28d ago

What is the Gulfood API?

The Gulfood API provides 8 endpoints covering the full Gulfood 2026 exhibitor directory, including company profiles, products, brands, and press releases. The get_exhibitor_detail endpoint returns stand location, website, description, and social media links for any exhibitor. The export_all_exhibitors endpoint compiles full detail records across the directory in a single call, making bulk data collection straightforward.

Try it
Keyword search query to filter exhibitors by name.
Venue ID to filter by.
Single letter (A-Z) to filter exhibitors by first letter of name.
Pagination offset in multiples of 16.
Country ID(s) to filter by (comma-separated string for multiple).
Category ID to filter by.
api.parse.bot/scraper/55e16cd0-6314-4436-afa3-fc00e156680b/<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/55e16cd0-6314-4436-afa3-fc00e156680b/get_exhibitor_list?query=food&letter=A&offset=0' \
  -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 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 Directory SDK — bounded, re-runnable; every call capped."""
from parse_apis.gulfood_2026_directory_api import Gulfood, Letter, ExhibitorNotFound

gulfood = Gulfood()

# Browse key sectors at the event
for sector in gulfood.sectors.list(limit=5):
    print(sector.name, sector.venue)

# List exhibitors filtered by first letter using the Letter enum
for summary in gulfood.exhibitors.list(letter=Letter.B, limit=5):
    print(summary.name, summary.country, summary.stand)

# Navigate from a summary to full exhibitor detail
summary = gulfood.exhibitors.search(query="chocolate", limit=1).first()
if summary:
    exhibitor = summary.details()
    print(exhibitor.name, exhibitor.website, exhibitor.description)

# Typed error handling on a direct get
try:
    detail = gulfood.exhibitors.get(slug="nonexistent-slug-xyz")
    print(detail.name, detail.stand)
except ExhibitorNotFound as exc:
    print(f"not found: {exc.slug}")

# Browse products with a keyword filter
for product in gulfood.products.list(query="coffee", limit=3):
    print(product.name, product.exhibitor)

# Browse press releases
for pr in gulfood.pressreleases.list(limit=3):
    print(pr.title, pr.exhibitor)

print("exercised: sectors.list / exhibitors.list / exhibitors.search / exhibitors.get / summary.details / products.list / pressreleases.list")
All endpoints · 8 totalmissing one? ·

Fetch the paginated list of exhibitors with optional filters. Returns 16 exhibitors per page. Supports filtering by first letter, country, category, venue, and keyword search. Offset advances in multiples of 16; manual paging via the offset parameter.

Input
ParamTypeDescription
querystringKeyword search query to filter exhibitors by name.
venuestringVenue ID to filter by.
letterstringSingle letter (A-Z) to filter exhibitors by first letter of name.
offsetintegerPagination offset in multiples of 16.
countrystringCountry ID(s) to filter by (comma-separated string for multiple).
categorystringCategory ID to filter by.
Response
{
  "type": "object",
  "fields": {
    "total": "integer, total number of matching exhibitors (may be null if pagination info unavailable)",
    "offset": "integer, current pagination offset",
    "exhibitors": "array of exhibitor summary objects"
  },
  "sample": {
    "data": {
      "total": 6684,
      "offset": 0,
      "exhibitors": [
        {
          "logo": "https://d1l8km4g5s76x5.cloudfront.net/Production/media/2041/gulfood_logo.png/fit-in/200x200",
          "name": "\"ATS Food\" LLC",
          "slug": "ats-food-llc",
          "stand": "51-40 | South Hall 8",
          "country": "Azerbaijan",
          "detail_url": "https://exhibitors.gulfood.com/gulfood-2026/Exhibitors/ExbDetails/ats-food-llc",
          "sector_icon": "https://exhibitor-manual-004.s3.ap-south-1.amazonaws.com/Production/media/2041/World-Food.jpg"
        }
      ]
    },
    "status": "success"
  }
}

About the Gulfood API

Exhibitor Directory

The get_exhibitor_list endpoint returns paginated sets of 16 exhibitors and supports six filter parameters: query for keyword search, letter for alphabetical browsing, country for one or more country IDs, category for sector filtering, venue for hall-specific results, and offset for pagination. Each result includes the exhibitor's name, slug, stand, country, logo, and sector_icon. The total field indicates the full match count, though it may be null when pagination metadata is unavailable. search_exhibitors is a dedicated keyword-search shortcut that wraps the same underlying filter and returns the same response shape.

Exhibitor Detail and Bulk Export

get_exhibitor_detail accepts an exhibitor slug from list results and returns the full company profile: description, website, stand, country, logo, and a social_links object with optional keys for facebook, twitter, linkedin, and instagram. For bulk use cases, export_all_exhibitors accepts a limit parameter and returns a combined dataset that merges list-level summary fields with full detail fields for each exhibitor. Because this endpoint fetches details sequentially, response time scales with the number of records requested.

Products, Brands, and Press Releases

get_products_list and get_brands_list each accept an optional query and offset, returning arrays of objects with name, exhibitor, and image. Note that the exhibitor field is typically null in brand entries. get_press_releases_list follows the same pattern, returning title, exhibitor, and image per entry. All three support broad keyword matching and paginate in groups of 16.

Sectors and Venues

get_key_sectors requires no inputs and returns a flat array of 15 sector objects, each with a name and associated venue. This is useful for mapping category or venue IDs used as filter parameters in get_exhibitor_list.

Reliability & maintenanceVerified

The Gulfood API is a managed, monitored endpoint for gulfood.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when 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 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
6d ago
Latest check
8/8 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 exhibitor directory filtered by country and product category for trade show planning tools.
  • Monitor press releases from Gulfood exhibitors to track new product announcements in the food and beverage industry.
  • Export full exhibitor profiles including website and social media links for CRM enrichment or lead generation.
  • Map stand locations and hall assignments by querying exhibitor stand fields for event navigation apps.
  • Aggregate brand listings by sector to analyze market representation across Gulfood's 15 exhibition sectors.
  • Cross-reference exhibitor product listings with brand data to identify which companies are launching new products.
  • Filter exhibitors by venue to generate hall-specific attendee guides or printed directories.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. 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?+
Gulfood does not publish an official public developer API. The Gulfood website is a trade show directory without documented API access for third-party developers.
What does get_exhibitor_detail return beyond what the list endpoint provides?+
get_exhibitor_list returns summary fields: name, slug, stand, country, logo, and sector_icon. get_exhibitor_detail adds the full company description, website URL, and a social_links object containing any available Facebook, Twitter, LinkedIn, and Instagram profile URLs.
Are exhibitor contact details like email addresses or phone numbers available?+
The API does not currently expose email addresses or phone numbers. The detail endpoint covers website URL and social media links. You can fork this API on Parse and revise it to add an endpoint targeting any contact fields that appear on individual exhibitor pages.
How does pagination work across the directory endpoints?+
All list endpoints paginate in fixed groups of 16 records. Use the offset parameter in multiples of 16 to step through pages. The total field in exhibitor list responses indicates the full match count but may return null if the source page does not include that metadata.
Does the API cover historical Gulfood events or only Gulfood 2026?+
The API covers Gulfood 2026 data only. Past event editions, historical exhibitor records, and archived editions are not included. You can fork this API on Parse and revise it to point at archived event URLs if historical directory pages are publicly accessible.
Page content last updated . Spec covers 8 endpoints from gulfood.com.
Related APIs in B2b DirectorySee all →
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.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.
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.
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.
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.
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.
gcc.luluhypermarket.com API
Search and browse Lulu Hypermarket's complete product catalog from your app, including categories, product details, brands, and lifestyle collections. Get real-time access to pricing, availability, and trending searches to help users find exactly what they need from the UAE's leading online grocery and retail store.
globalsources.com API
Search Global Sources for products and suppliers, then fetch related product info and a supplier’s latest product listings using product IDs and organization IDs.