# Exhibitors Gulfood — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Find and connect with Gulfood 2026 exhibitors by searching their company profiles and accessing their contact information including websites, emails, phone numbers, and social media accounts. Quickly retrieve detailed exhibitor data to network, schedule meetings, or reach out to potential business partners at the Dubai trade show.

**Category:** Business Directories | **Website:** [exhibitors.gulfood.com/](https://exhibitors.gulfood.com/) | **Docs:** [parse.bot/marketplace/1c31fbfd-c70b-4aed-aa64-ce9788270403/exhibitors-gulfood-com-api](https://parse.bot/marketplace/1c31fbfd-c70b-4aed-aa64-ce9788270403/exhibitors-gulfood-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-exhibitors-gulfood-com-api-1c31fbfd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_exhibitor_details

Retrieve full contact details for a specific Gulfood 2026 exhibitor by slug. Returns name, stand location, country, company profile, sectors, website URL, email, telephone, and social media links. Email and telephone are null for most exhibitors as the platform does not currently expose these fields for the majority of listings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | URL slug identifying the exhibitor, obtained from search_exhibitors results (e.g. 'nestle-pakistan', '1-attimo-informa'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-exhibitors-gulfood-com-api-1c31fbfd/get_exhibitor_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### search_exhibitors

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Filter by country name (e.g. 'United Kingdom', 'India'). Omitting returns all countries. |
| `keyword` | string | No | Free-text keyword search across exhibitor names and descriptions. |
| `letter` | string | No | Filter by initial letter A-Z. Omitting returns all exhibitors. |
| `page` | integer | No | Page number for pagination (10 results per page). |
| `sector` | string | No | Filter by venue/sector name (e.g. 'Beverages', 'Dairy'). Omitting returns all sectors. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-exhibitors-gulfood-com-api-1c31fbfd/search_exhibitors \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","keyword":"<string>","letter":"<string>","page":"<integer>","sector":"<string>"}'
```
