# Ahconnects — 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 for adoptable pets at Anderson Humane by name or species to find your perfect companion. Browse available animals and their details to connect with pets ready for their new homes.

**Category:** Other | **Website:** [ahconnects.org/adopt/](https://ahconnects.org/adopt/) | **Docs:** [parse.bot/marketplace/d6f8a2e0-6f27-47c9-ad2a-5ce41735c48e/ahconnects-org-api](https://parse.bot/marketplace/d6f8a2e0-6f27-47c9-ad2a-5ce41735c48e/ahconnects-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-ahconnects-org-api-d6f8a2e0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_pets

Search available pets for adoption at Anderson Humane. Returns all matching animals filtered by name (substring match), species, and/or breed. Results are returned in a single page containing all matches. Each pet includes breed, sex, age group, color, location, attributes, and a cover photo URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `breed` | string | No | Filter pets whose breed contains this substring (case-insensitive). Matches against both primary and secondary breed fields. Omit to return all breeds. |
| `name` | string | No | Filter pets whose name contains this substring (case-insensitive). Omit to return all pets. |
| `species` | string | No | Filter by species (case-insensitive). Known values from the site include Cat, Dog, Bird, Gerbil, Guinea Pig, Rabbit, Rat, Snake. Omit to return all species. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ahconnects-org-api-d6f8a2e0/search_pets \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"breed":"<string>","name":"<string>","species":"<string>"}'
```
