gulfood.com APIgulfood.com ↗
Access Gulfood 2026 exhibitor profiles, products, brands, press releases, and sectors via 8 endpoints. Filter by country, category, venue, or keyword.
curl -X GET 'https://api.parse.bot/scraper/55e16cd0-6314-4436-afa3-fc00e156680b/get_exhibitor_list?offset=0' \ -H 'X-API-Key: $PARSE_API_KEY'
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.
| Param | Type | Description |
|---|---|---|
| query | string | Keyword search query to filter exhibitors by name. |
| venue | string | Venue ID to filter by. |
| letter | string | Single letter (A-Z) to filter exhibitors by first letter of name. |
| offset | integer | Pagination offset in multiples of 16. |
| country | string | Country ID(s) to filter by (comma-separated string for multiple). |
| category | string | Category ID to filter by. |
{
"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 with name, slug, detail_url, stand, country, logo, sector_icon"
},
"sample": {
"data": {
"total": 242,
"offset": 0,
"exhibitors": [
{
"logo": "https://d1l8km4g5s76x5.cloudfront.net/Production/exb_doc/2041/48264/thumb_2041_48264_47359_9193.png/fit-in/200x200",
"name": "Nafeeseh Sweets",
"slug": "nafeeseh-sweets",
"stand": "51-107 | South Hall 9",
"country": "Jordan",
"detail_url": "https://exhibitors.gulfood.com/gulfood-2026/Exhibitors/ExbDetails/nafeeseh-sweets",
"sector_icon": "https://exhibitor-manual-004.s3.ap-south-1.amazonaws.com/Production/media/2041/World-Food.jpg"
}
]
},
"status": "success"
}
}About the gulfood.com 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.
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.
- 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
standfields 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.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does Gulfood have an official developer API?+
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?+
How does pagination work across the directory endpoints?+
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.