# Agencyspotter — 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 and discover agencies with detailed information including their locations, staff profiles, and client reviews. Find the right agency partner by browsing comprehensive directory listings and accessing insights into their team and reputation.

**Category:** Business Directories | **Website:** [agencyspotter.com/](https://agencyspotter.com/) | **Docs:** [parse.bot/marketplace/b4fcc015-3e33-4391-8a71-b8289d0058ce/agencyspotter-com-api](https://parse.bot/marketplace/b4fcc015-3e33-4391-8a71-b8289d0058ce/agencyspotter-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-agencyspotter-com-api-b4fcc015/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_agency_detail

Retrieve the full profile of a specific agency by its slug. Returns comprehensive information including staff LinkedIn profiles, client reviews with ratings, portfolio projects, services offered, social media links, location details, and aggregate stats. The slug is obtainable from search_agencies results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The unique slug of the agency, obtainable from search_agencies results (e.g. 'sociallyin', 'simpletiger') |

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

### search_agencies

Search the Agency Spotter directory for agencies by keyword and location. Returns a paginated list of agency summaries including name, slug, rating, and services. Results are ordered by relevance. Each page returns up to 30 agencies. Omitting all filters returns the full directory browsed alphabetically.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | No | Location to filter results by (e.g. 'New York', 'Los Angeles') |
| `page` | integer | No | Page number for pagination |
| `query` | string | No | Agency name or keyword to search for (e.g. 'digital marketing', 'SEO') |

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