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

> 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.

**Category:** Business Directories | **Website:** [exhibitors.gamescom.global/](https://exhibitors.gamescom.global/) | **Docs:** [parse.bot/marketplace/ad02c746-55c9-4e06-80f1-b4be6be62ab3/exhibitors-gamescom-global-api](https://parse.bot/marketplace/ad02c746-55c9-4e06-80f1-b4be6be62ab3/exhibitors-gamescom-global-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-gamescom-global-api-ad02c746/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_exhibitor_detail

Retrieve full details for a specific exhibitor, including website URL, address, hall/booth, and product groups. Accepts slugs from list_exhibitors results (e.g. '_adva') or plain names (e.g. 'adva' - underscore prefix is tried automatically).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Exhibitor slug from list_exhibitors or search_exhibitors results[*].slug (e.g. '_nintendo', 'ubisoft'). |

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

### list_exhibitors

Retrieve the full paginated list of exhibitors. Use start parameter for pagination (increments of 10). Supports filtering by country code, starting letter, hall, and product group.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Filter by ISO 3166-1 alpha-2 country code (e.g. 'DE' for Germany, 'US' for United States, 'GB' for United Kingdom, 'FR' for France, 'JP' for Japan). |
| `hall` | string | No | Filter by hall identifier. |
| `letter` | string | No | Filter by starting letter. Accepted values: A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, 0-9. |
| `limit` | integer | No | Maximum number of exhibitors to return. |
| `product_group` | string | No | Filter by product group ID from list_product_groups endpoint. |
| `query` | string | No | Search keyword to filter exhibitors. |
| `start` | integer | No | Pagination offset (increments of 10). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-exhibitors-gamescom-global-api-ad02c746/list_exhibitors \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","hall":"<string>","letter":"<string>","limit":"<integer>","product_group":"<string>","query":"<string>","start":"<integer>"}'
```

### list_product_groups

Retrieve the full list of product categories (product groups) with IDs and exhibitor counts. Use the id values as the product_group filter in list_exhibitors and search_exhibitors.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-exhibitors-gamescom-global-api-ad02c746/list_product_groups \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_exhibitors

Search and filter exhibitors using a required keyword and optional category filters. Returns paginated results matching the search query.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Filter by ISO 3166-1 alpha-2 country code (e.g. 'DE' for Germany, 'US' for United States, 'GB' for United Kingdom, 'FR' for France, 'JP' for Japan). |
| `hall` | string | No | Filter by hall identifier. |
| `limit` | integer | No | Maximum number of exhibitors to return. |
| `product_group` | string | No | Filter by product group ID from list_product_groups endpoint. |
| `query` | string | Yes | Search keyword. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-exhibitors-gamescom-global-api-ad02c746/search_exhibitors \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","hall":"<string>","limit":"<integer>","product_group":"<string>","query":"<string>"}'
```
