# Centrodeayuda Chilexpress — 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.

> Find all Chilexpress store and office locations throughout Chile by searching communes or browsing the complete directory to get addresses and internal branch names. Easily locate the nearest pickup point or service center for your shipping needs across the country.

**Category:** Maps & Geospatial | **Website:** [centrodeayuda.chilexpress.cl/sucursales](https://centrodeayuda.chilexpress.cl/sucursales) | **Docs:** [parse.bot/marketplace/52cfaf65-186a-41d0-8012-007c6e63bc93/centrodeayuda-chilexpress-cl-api](https://parse.bot/marketplace/52cfaf65-186a-41d0-8012-007c6e63bc93/centrodeayuda-chilexpress-cl-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-centrodeayuda-chilexpress-cl-api-52cfaf65/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_communes

Get list of all communes (comunas) with Chilexpress coverage. Returns commune codes, names, region codes, and coverage names. The county_name field values serve as input for get_stores_by_commune. Currently returns 344 communes across all Chilean regions.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-centrodeayuda-chilexpress-cl-api-52cfaf65/get_communes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_stores_by_commune

Get all Chilexpress store locations in a specific commune, including store name, code, type, full address, coordinates, and phone number. Returns pickup points, full-service locations, and agency offices.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `commune` | string | Yes | Commune name in uppercase as returned by get_communes county_name field (e.g. PROVIDENCIA, TEMUCO, LAS CONDES, SANTIAGO). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-centrodeayuda-chilexpress-cl-api-52cfaf65/get_stores_by_commune \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"commune":"<string>"}'
```
