# Ifa Berlin — 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.

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

**Category:** Business Directories | **Website:** [ifa-berlin.com/](https://ifa-berlin.com/) | **Docs:** [parse.bot/marketplace/7c6b0d05-a60e-447f-994a-63a4084810b2/ifa-berlin-com-api](https://parse.bot/marketplace/7c6b0d05-a60e-447f-994a-63a4084810b2/ifa-berlin-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-ifa-berlin-com-api-7c6b0d05/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_all_exhibitors_paginated

Fetch exhibitors across multiple pages in a single call. Iterates through pages up to the specified limit and aggregates results. Each page contains 20 exhibitors.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit_pages` | integer | No | Maximum number of pages to fetch. Each page contains 20 exhibitors. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ifa-berlin-com-api-7c6b0d05/get_all_exhibitors_paginated \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit_pages":"<integer>"}'
```

### get_exhibitor_detail

Get detailed information for a specific exhibitor by their URL slug. Returns company info, description, location, show areas, social links, and associated IFA Moments events. The slug is obtained from list_exhibitors results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Exhibitor URL slug, obtainable from list_exhibitors results (e.g. 'acer-inc', 'bosch'). |

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

### list_exhibitors

List exhibitors from the IFA Berlin directory with pagination and optional filters. Returns 20 exhibitors per page. Supports free-text search, hall, country, and show-area filtering. Paginated by integer page number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Country filter ID to restrict results to exhibitors from a specific country. |
| `hall` | string | No | Hall filter ID to restrict results to a specific hall (e.g. 'H4.1', 'H23'). |
| `page` | integer | No | Page number for pagination (1-based). |
| `search` | string | No | Free-text search query to filter exhibitors by name or keyword. |
| `show_area` | string | No | Show area filter ID to restrict results to a specific exhibition area. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ifa-berlin-com-api-7c6b0d05/list_exhibitors \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","hall":"<string>","page":"<integer>","search":"<string>","show_area":"<string>"}'
```

### list_ifa_moments

List IFA Moments programme events. Optionally filter by a specific date. Returns all scheduled events including brand information, location, and timing.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `days` | string | No | Date filter in YYYY-MM-DD format (e.g. '2025-09-03') to show events on a specific day. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ifa-berlin-com-api-7c6b0d05/list_ifa_moments \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"days":"<string>"}'
```
