# Archello — 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 architecture brands, firms, and products by location or search query to discover design resources and project information. Access detailed brand profiles and company data to research architectural suppliers and service providers.

**Category:** Business Directories | **Website:** [archello.com/](https://archello.com/) | **Docs:** [parse.bot/marketplace/7c3c9a89-bd24-4967-914e-0f35b759e595/archello-com-api](https://parse.bot/marketplace/7c3c9a89-bd24-4967-914e-0f35b759e595/archello-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-archello-com-api-7c3c9a89/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_brand_detail

Get detailed information for a specific brand or architecture firm by its slug. Returns name, address, description, website URL, offices, and email when available. Works for both brand and firm slugs on Archello.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The unique slug of the brand or firm (e.g., 'grohe', 'geze', 'mvrdv'). |

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

### list_brands_by_country

List manufacturers and brands filtered by country with optional sector or product type filters. Returns paginated results with brand names, slugs, and URLs. Use page parameter to navigate through results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `code` | string | No | ISO country code. |
| `country` | string | No | Country name for filtering brands. |
| `page` | integer | No | Page number for pagination. |
| `product_type` | string | No | Product type filter (e.g., facades, windows-and-doors). |
| `sector` | string | No | Sector filter (e.g., residential, commercial). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-archello-com-api-7c3c9a89/list_brands_by_country \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"code":"<string>","country":"<string>","page":"<integer>","product_type":"<string>","sector":"<string>"}'
```

### list_firms

List architecture firms filtered by country and optional firm type. Returns paginated results with firm names, slugs, and URLs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `code` | string | No | ISO country code. |
| `country` | string | No | Country name for filtering firms. |
| `firm_type` | string | No | Firm type filter (e.g., architects, engineers). |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-archello-com-api-7c3c9a89/list_firms \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"code":"<string>","country":"<string>","firm_type":"<string>","page":"<integer>"}'
```

### search

Search across all Archello content including projects, brands, firms, news, and products. Returns up to 24 results per page with title, URL, and content type.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword (e.g., 'MVRDV', 'house', 'concrete'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-archello-com-api-7c3c9a89/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
