# Acefitness — 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 through thousands of exercises and fitness articles while getting personalized BMI calculations and locating certified trainers in your area by ZIP code. This comprehensive fitness resource helps you build workouts, learn proper techniques, and connect with professional guidance all in one place.

**Category:** Healthcare | **Website:** [acefitness.org/](https://acefitness.org/) | **Docs:** [parse.bot/marketplace/7555d5c7-1ff7-4600-934c-57a3ac1f8a85/acefitness-org-api](https://parse.bot/marketplace/7555d5c7-1ff7-4600-934c-57a3ac1f8a85/acefitness-org-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-acefitness-org-api-7555d5c7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### browse_articles

Browse ACE Fitness blog articles, optionally filtered by category slug. Returns the most recent articles with title, URL, date, author, category, description, and image.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category slug to filter articles (e.g. 'nutrition', 'strength-training', 'workouts', 'fitness', 'active-aging'). Omitting returns all categories. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-acefitness-org-api-7555d5c7/browse_articles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```

### calculate_bmi

Calculate Body Mass Index (BMI) from weight in pounds and height in feet/inches. Uses the standard formula: BMI = (weight_lbs / total_inches^2) * 703. Returns the BMI value and a classification (Underweight, Normal weight, Overweight, or Obese).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `height_feet` | integer | Yes | Height in feet (whole number component). |
| `height_inches` | number | No | Additional inches beyond the feet component. |
| `weight_lbs` | number | Yes | Body weight in pounds. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-acefitness-org-api-7555d5c7/calculate_bmi \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"height_feet":"<integer>","height_inches":"<number>","weight_lbs":"<number>"}'
```

### find_trainer

Find ACE certified fitness professionals near a given US ZIP code. Returns trainer name, city, state, profile URL, and profile image.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of trainers to return. |
| `zip_code` | string | Yes | US ZIP code to search near (e.g. '10001', '90210'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-acefitness-org-api-7555d5c7/find_trainer \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","zip_code":"<string>"}'
```

### search_exercises

Search the ACE Fitness exercise library by keyword. Returns up to 10 exercises per page with title, URL, description, and image. Pagination is supported via the page parameter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. Each page returns up to 10 results. |
| `query` | string | Yes | Search keyword for exercises (e.g. 'squat', 'push up', 'deadlift'). |

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