# Zephira — 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 global company registries to instantly access official corporate information, officer details, and registration data from government sources worldwide. Retrieve verified company profiles, leadership information, and corporate records all in one place.

**Category:** Business Directories | **Website:** [zephira.ai/](https://zephira.ai/) | **Docs:** [parse.bot/marketplace/e770c2db-32c0-4ed3-b4dc-f921e31d3e79/zephira-ai-api](https://parse.bot/marketplace/e770c2db-32c0-4ed3-b4dc-f921e31d3e79/zephira-ai-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-zephira-ai-api-e770c2db/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_details

Retrieve detailed company information including status, registration number, incorporation date, VAT number, legal form, registered address, and website. Requires a company_id obtained from search_companies.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_id` | string | Yes | Numeric company identifier from search_companies results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-zephira-ai-api-e770c2db/get_company_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_id":"<string>"}'
```

### get_company_officers

Retrieve the list of officers (directors, secretaries) for a specific company. Includes appointment dates, resignation dates, job titles, and address information. Requires a company_id obtained from search_companies. Returns the first page of officers along with total_pages and total_results metadata.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_id` | string | Yes | Numeric company identifier from search_companies results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-zephira-ai-api-e770c2db/get_company_officers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_id":"<string>"}'
```

### search_companies

Full-text search for companies by name, registration number, VAT, LEI, or ticker across 150+ jurisdictions. Returns up to 10 matching company summaries per query. Results are auto-iterated.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `jurisdiction` | string | No | ISO 3166-1 alpha-2 country code to filter results by jurisdiction (e.g. 'gb', 'us'). Omitted returns results from all jurisdictions. |
| `query` | string | Yes | Company name, registration number, VAT, LEI, or ticker to search for. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-zephira-ai-api-e770c2db/search_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"jurisdiction":"<string>","query":"<string>"}'
```

### search_officers

Full-text search for corporate officers by name across 150+ jurisdictions. Returns matching officer appointments with their associated company information. Results are auto-iterated.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `jurisdiction` | string | No | ISO 3166-1 alpha-2 country code to filter results by jurisdiction (e.g. 'gb', 'us'). Omitted returns results from all jurisdictions. |
| `query` | string | Yes | Officer name to search for. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-zephira-ai-api-e770c2db/search_officers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"jurisdiction":"<string>","query":"<string>"}'
```
