# Vocal Remover — 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.

> Retrieve user reviews and comments from the Vocal Remover community, and identify geographic locations of reviewers to understand feedback trends by region. Access public data that helps you analyze community sentiment and user distribution for the vocal removal platform.

**Category:** Reviews & Ratings | **Website:** [vocalremover.org/](https://vocalremover.org/) | **Docs:** [parse.bot/marketplace/13bac028-d775-4286-a85a-114301bd763a/vocalremover-org-api](https://parse.bot/marketplace/13bac028-d775-4286-a85a-114301bd763a/vocalremover-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-vocalremover-org-api-13bac028/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_geo

Detect the geographic location (ISO country code) based on the requesting IP address. Returns a two-letter lowercase ISO country code derived from the IP used for the request.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vocalremover-org-api-13bac028/get_geo \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_reviews

Fetch user reviews and comments from the Vocal Remover support page. Returns 10 reviews per request, ordered by most recent first. Supports cursor-based pagination using the last_id parameter to fetch older reviews. Each review includes the user's display name, profile photo URL, message text, and timestamp.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `last_id` | string | No | Review ID cursor for pagination. Pass the next_last_id value from a previous response to fetch the next batch of older reviews. When omitted, returns the most recent reviews. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vocalremover-org-api-13bac028/get_reviews \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"last_id":"<string>"}'
```
