# 10Times — 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 events from 10times.com, including conferences, trade shows, and exhibitions worldwide. Access detailed event data such as exhibitor lists, schedules, agendas, and venue information.

**Category:** Business Directories | **Website:** [10times.com/](https://10times.com/) | **Docs:** [parse.bot/marketplace/75758abb-e943-4a08-a086-306b74aad000/10times-com-api](https://parse.bot/marketplace/75758abb-e943-4a08-a086-306b74aad000/10times-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-10times-com-api-75758abb/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_event_details

Fetch full details for a single event by its slug. Returns the event name, date range, venue, meta description, and page URL. The slug is obtained from search_events results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The event slug from search_events results (e.g. 'hr-festival-asia'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-10times-com-api-75758abb/get_event_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_event_exhibitors

Fetch the list of exhibitors for a specific event by its slug. Returns up to 15 exhibitors with their names and optional profile URLs and websites. The slug is obtained from search_events results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The event slug from search_events results (e.g. 'hr-festival-asia'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-10times-com-api-75758abb/get_event_exhibitors \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### search_events

Full-text keyword search across events on 10times.com. Returns a paginated list of matching events with basic info (name, dates, location, description, categories). Results are ordered by relevance/date. Each event carries a slug usable for drill-down via get_event_details or get_event_exhibitors.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Keyword to search for (e.g. 'Technology', 'Medical', 'Finance'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-10times-com-api-75758abb/search_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
