# Baxtel — 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.

> Access data from baxtel.com.

**Category:** Business Directories | **Website:** [baxtel.com/](https://baxtel.com/) | **Docs:** [parse.bot/marketplace/783b8419-bcfb-4e6d-ae64-c6763e843d7c/baxtel-com-api](https://parse.bot/marketplace/783b8419-bcfb-4e6d-ae64-c6763e843d7c/baxtel-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-baxtel-com-api-783b8419/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_data_center_details

Retrieve full details for a specific data center using its slug. Includes location hierarchy via breadcrumbs, operational status, coordinates (longitude/latitude from map center), metrics and specifications, and document links. Coordinates may be null if the site does not expose a map. Metrics may be empty if behind paywall.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The unique slug for the data center, as returned in search_data_centers results (e.g. 'infomart-dallas-equinix-dallas-1950-n-stemmons-fwy'). |

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

### list_all_ids

Fetch all data center public IDs from the Baxtel database. Returns a list of alphanumeric IDs that can be used to reference individual sites. Note: this endpoint does not include slugs or coordinates.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-baxtel-com-api-783b8419/list_all_ids \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_data_centers

Search for data centers by name or location. Returns a paginated list of matching site results with name, slug, address, and URL. Results are filtered to Site type only.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | No | Search keyword (company name, city, or site name). |

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