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

> Discover and search Google Business Profile categories to find the right classification for your business, then retrieve recommended services and detailed metadata for any category. Streamline your business profile setup by instantly accessing category information and their associated service offerings.

**Category:** Maps & Geospatial | **Website:** [app.gmbeverywhere.com/release7/category-tool/category-finder.html](https://app.gmbeverywhere.com/release7/category-tool/category-finder.html) | **Docs:** [parse.bot/marketplace/34051cc5-417f-4d84-accc-d82305098e38/app-gmbeverywhere-com-api](https://parse.bot/marketplace/34051cc5-417f-4d84-accc-d82305098e38/app-gmbeverywhere-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-app-gmbeverywhere-com-api-34051cc5/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_category_info

Get metadata for a GBP category including monthly search volume and description. Category lookup is case-insensitive. Use search_categories to discover valid category names.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | Yes | GBP category name (case-insensitive). Use search_categories to find valid category names. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-app-gmbeverywhere-com-api-34051cc5/get_category_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```

### get_category_services

Get the recommended services for a specific GBP category. Returns the list of services that Google suggests for the given category, along with category metadata (search volume, description). Category lookup is case-insensitive. Use search_categories to discover valid category names.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | Yes | Exact GBP category name (case-insensitive). Use search_categories to find valid category names. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-app-gmbeverywhere-com-api-34051cc5/get_category_services \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```

### search_categories

Search GBP categories by keyword. Returns categories whose names contain the query string (case-insensitive). The full category corpus (~4000 entries) is searched server-side; results are capped by `limit`.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of categories to return. |
| `query` | string | Yes | Search term to filter categories by name (e.g. 'restaurant', 'plumber', 'dentist'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-app-gmbeverywhere-com-api-34051cc5/search_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","query":"<string>"}'
```
