# 𝚋𝚊𝚡𝚝𝚎𝚕.𝚌𝚘𝚖 — 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 Baxtel's data center facilities to find real-time operational details like power capacity, status, geographic coordinates, and nearby infrastructure. Quickly locate and compare data centers to identify the best options for your deployment or infrastructure planning needs.

**Category:** Business Directories | **Website:** [baxtel.com/%F0%9D%9A%8D%F0%9D%9A%8A%F0%9D%9A%9D%F0%9D%9A%8A-%F0%9D%9A%8C%F0%9D%9A%8E%F0%9D%9A%97%F0%9D%9A%9D%F0%9D%9A%8E%F0%9D%9A%9B/%F0%9D%9A%9E%F0%9D%9A%97%F0%9D%9A%92%F0%9D%9A%9D%F0%9D%9A%8E%F0%9D%9A%8D-%F0%9D%9A%9C%F0%9D%9A%9D%F0%9D%9A%8A%F0%9D%9A%9D%F0%9D%9A%8E%F0%9D%9A%9C/%F0%9D%9A%9D%F0%9D%9A%8E%F0%9D%9A%A1%F0%9D%9A%8A%F0%9D%9A%9C](https://baxtel.com/%F0%9D%9A%8D%F0%9D%9A%8A%F0%9D%9A%9D%F0%9D%9A%8A-%F0%9D%9A%8C%F0%9D%9A%8E%F0%9D%9A%97%F0%9D%9A%9D%F0%9D%9A%8E%F0%9D%9A%9B/%F0%9D%9A%9E%F0%9D%9A%97%F0%9D%9A%92%F0%9D%9A%9D%F0%9D%9A%8E%F0%9D%9A%8D-%F0%9D%9A%9C%F0%9D%9A%9D%F0%9D%9A%8A%F0%9D%9A%9D%F0%9D%9A%8E%F0%9D%9A%9C/%F0%9D%9A%9D%F0%9D%9A%8E%F0%9D%9A%A1%F0%9D%9A%8A%F0%9D%9A%9C) | **Docs:** [parse.bot/marketplace/c70220c6-e0fb-4c29-a78c-0c3a20c026df/api](https://parse.bot/marketplace/c70220c6-e0fb-4c29-a78c-0c3a20c026df/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-api-c70220c6/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_data_center

Retrieve full details for a specific data center facility by its slug. Returns power capacity (MW), coordinates, operational status, facility category, year built, operator, location hierarchy, nearby sites, and document links.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | URL slug identifying the data center (e.g. '7401-e-ben-white-digital-realty'). Obtained from list_data_centers results. |

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

### list_data_centers

List data center facilities in a geographic region (state or metro/city). Returns name, operating company, size class, operational status, and facility type for each facility. City/metro-level regions return complete facility tables; state-level regions return top facilities with a total count. Results are paginated at 50 per page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for paginated results. Each page returns up to 50 facilities. |
| `region` | string | Yes | Region slug identifying the geographic area (e.g. 'austin', 'dallas', 'houston', 'texas'). Use city/metro slugs for complete listings. |

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