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

> Find detailed public records and person profiles by searching with a name, phone number, or address. Get comprehensive information about individuals including their contact details, address history, and personal background all in one lookup.

**Category:** Government & Public Data | **Website:** [www.fastpeoplesearch.com/](https://www.fastpeoplesearch.com/) | **Docs:** [parse.bot/marketplace/f17d9c95-1405-44b9-90bf-8514a38d00f7/fastpeoplesearch-com-api](https://parse.bot/marketplace/f17d9c95-1405-44b9-90bf-8514a38d00f7/fastpeoplesearch-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-fastpeoplesearch-com-api-f17d9c95/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_person_details

Get a full person profile by their profile slug. Returns comprehensive details including current address, all phone numbers with carrier info, email addresses, previous addresses, relatives with relationship info, associates, and aliases.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `person_slug` | string | Yes | Person profile slug from search results (e.g. 'john-smith_id_G-8653115056365742102'). |

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

### search_by_address

Search people associated with a street address. Returns person summaries for current and past residents. Each result includes a person_slug for get_person_details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city_state_zip` | string | Yes | City, state, and ZIP code (e.g. 'Anchorage AK 99502'). |
| `street` | string | Yes | Street address (e.g. '7000 Altoona Dr'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fastpeoplesearch-com-api-f17d9c95/search_by_address \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city_state_zip":"<string>","street":"<string>"}'
```

### search_by_name

Search people by name across public records. Returns matching person summaries with age, location, past addresses, relatives, and aliases. Each result includes a person_slug for get_person_details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | No | City and state to narrow search (e.g. 'Seattle, WA'). Omitting searches nationwide. |
| `name` | string | Yes | Full name to search for (e.g. 'John Smith'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fastpeoplesearch-com-api-f17d9c95/search_by_name \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>","name":"<string>"}'
```

### search_by_phone

Reverse phone lookup. Returns people associated with a US phone number, including current and past owners. Each result includes a person_slug for get_person_details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `phone` | string | Yes | 10-digit US phone number in any common format (e.g. '206-362-0608', '2063620608'). |

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