centrodeayuda.chilexpress.cl APIcentrodeayuda.chilexpress.cl ↗
Query all Chilexpress store locations across Chile by commune. Returns addresses, coordinates, store codes, types, and phone numbers for every branch.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/14998115-1d2b-404f-8594-0f7cb7b73ed3/get_communes' \ -H 'X-API-Key: $PARSE_API_KEY'
Get list of all communes (comunas) with Chilexpress coverage. Returns commune codes, names, region codes, and coverage names. Use commune names (county_name field) as input for get_stores_by_commune.
No input parameters required.
{
"type": "object",
"fields": {
"communes": "array of commune objects with county_code, county_name, region_code, coverage_name",
"total_communes": "integer total count of communes"
},
"sample": {
"data": {
"communes": [
{
"county_code": "ACHA",
"county_name": "QUINCHAO",
"region_code": "R10",
"coverage_name": "ACHAO"
},
{
"county_code": "ALGA",
"county_name": "ALGARROBO",
"region_code": "R5",
"coverage_name": "ALGARROBO"
},
{
"county_code": "ALHU",
"county_name": "ALHUE",
"region_code": "RM",
"coverage_name": "ALHUE"
}
],
"total_communes": 343
},
"status": "success"
}
}About the centrodeayuda.chilexpress.cl API
The Chilexpress Sucursales API exposes 2 endpoints that cover the full directory of Chilexpress pickup points and service offices across Chile. Call get_communes to retrieve every covered commune with its code and region, then pass any county_name value to get_stores_by_commune to get the complete list of branch locations — including addresses, GPS coordinates, store type, and contact numbers — for that area.
Commune Coverage
The get_communes endpoint requires no input and returns an array of commune objects, each containing a county_code, county_name, region_code, and coverage_name. The total_communes integer in the response tells you how many communes Chilexpress currently serves. The county_name values from this response (always uppercase, e.g. PROVIDENCIA, LAS CONDES, TEMUCO) are the valid inputs for the second endpoint.
Store-Level Detail
Passing a commune name to get_stores_by_commune returns a stores array where each object includes the branch name, internal code, type, full address, parsed street and street_number, an optional complement, commune, region, latitude, longitude, and phone. The total_stores field tells you how many branches exist in that commune. All coordinates are returned as decimal degrees and can be fed directly into any mapping library.
Practical Notes
Commune names must be submitted in uppercase exactly as returned by get_communes. Passing a mixed-case or abbreviated name will not match. The type field on each store distinguishes between different Chilexpress service modalities (e.g. own branches vs. authorized agents), which is relevant if you need to filter for a specific service level. Store code values are Chilexpress internal identifiers and can be used to uniquely reference a branch in downstream systems.
- Build a store-locator widget for an e-commerce checkout that surfaces nearby Chilexpress pickup points using latitude/longitude fields.
- Generate a national branch directory by iterating all communes from get_communes and collecting store records per commune.
- Filter branches by store type to show only official Chilexpress offices, excluding third-party agents.
- Validate that a customer-entered commune is covered by Chilexpress before offering pickup-point delivery as an option.
- Populate a CRM or logistics database with canonical store codes and addresses for mapping shipment handoff locations.
- Display branch phone numbers and full addresses in a mobile shipping app for customers arranging drop-offs.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.