# Exhibitors Cphi — 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 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.

**Category:** Business Directories | **Website:** [exhibitors.cphi.com/](https://exhibitors.cphi.com/) | **Docs:** [parse.bot/marketplace/93e53f52-1d14-4d5c-91e5-f38a18dad905/exhibitors-cphi-com-api](https://parse.bot/marketplace/93e53f52-1d14-4d5c-91e5-f38a18dad905/exhibitors-cphi-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-cphi-com-api-93e53f52/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_exhibitor_details

Fetch full details for a specific exhibitor by company ID. Returns contact information, employee count, address, website, stand number, country, categories, and company description. The company_id is obtained from list_exhibitors results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_id` | string | Yes | The exhibitor company ID (numeric string). Obtain from list_exhibitors results. |
| `event_id` | string | No | The event ID for the target CPHI event. |
| `site_id` | string | No | The site ID for the CPHI portal. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-exhibitors-cphi-com-api-93e53f52/get_exhibitor_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_id":"<string>","event_id":"<string>","site_id":"<string>"}'
```

### list_exhibitor_names

Compile a complete list of all exhibitor company names for a given event. Returns all names in a single response without pagination. Useful for quick lookups or autocomplete without the overhead of fetching full profiles.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | No | The event ID for the target CPHI event. |
| `site_id` | string | No | The site ID for the CPHI portal. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-exhibitors-cphi-com-api-93e53f52/list_exhibitor_names \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_id":"<string>","site_id":"<string>"}'
```

### list_exhibitors

Fetch exhibitor profiles with pagination. Returns detailed exhibitor data including company name, website, employees, phone, address, country, stand number, categories, and description. Each page fetches full details for each exhibitor from both JSON and HTML sources; larger page sizes are slower proportionally. Offset-based: pass offset and limit to page through results manually.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | No | The event ID for the target CPHI event. |
| `limit` | integer | No | Max number of exhibitors to return per page. |
| `offset` | integer | No | Starting index for pagination. |
| `site_id` | string | No | The site ID for the CPHI portal. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-exhibitors-cphi-com-api-93e53f52/list_exhibitors \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_id":"<string>","limit":"<integer>","offset":"<integer>","site_id":"<string>"}'
```
