Discover/Vocalremover API
live

Vocalremover APIvocalremover.org

Access user reviews and geo-location data from vocalremover.org. Fetch paginated community feedback and detect country codes via two REST endpoints.

This API takes change requests — .
Endpoint health
verified 3d ago
get_reviews
get_geo
2/2 passing latest checkself-healing
Endpoints
2
Updated
1mo ago

What is the Vocalremover API?

The vocalremover.org API exposes 2 endpoints covering user-generated reviews and IP-based geographic detection. The get_reviews endpoint returns up to 10 reviews per page with fields like message, user_name, created_at, and user_photo_url, using cursor-based pagination via next_last_id. The get_geo endpoint resolves the requesting IP to a two-letter ISO country code, making it straightforward to correlate feedback with user geography.

Try it
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.
api.parse.bot/scraper/d71a25e0-a6ba-4bc9-989a-49536445f9c0/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/d71a25e0-a6ba-4bc9-989a-49536445f9c0/get_reviews?last_id=19633' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace vocalremover-org-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.vocal_remover_api import VocalRemover, Review, GeoLocation

client = VocalRemover()

# Detect geographic location based on IP
geo = client.geolocations.detect()
print(geo.country_code)

# List recent reviews with pagination
for review in client.reviews.list(limit=20):
    print(review.id, review.user_name, review.created_at, review.message)
All endpoints · 2 totalmissing one? ·

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.

Input
ParamTypeDescription
last_idstringReview 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.
Response
{
  "type": "object",
  "fields": {
    "count": "integer, number of reviews in this batch",
    "reviews": "array of review objects with id, message, created_at, user_name, user_photo_url",
    "next_last_id": "integer or null, cursor to pass as last_id for next page"
  },
  "sample": {
    "data": {
      "count": 10,
      "reviews": [
        {
          "id": 19686,
          "message": "I need to cancel my subcription please",
          "user_name": "Yuri Fedin",
          "created_at": "2026-06-10T19:53:31.880Z",
          "user_photo_url": "https://lh3.googleusercontent.com/a/ACg8ocIAALgt4d8S-m7MlrTIZt22Tld2NVRjc934OJ8WVe3YOE-JdK8=s96-c"
        }
      ],
      "next_last_id": 19633
    },
    "status": "success"
  }
}

About the Vocalremover API

Review Data

The get_reviews endpoint returns a batch of 10 user reviews from the Vocal Remover support page, ordered from most recent to oldest. Each review object includes a unique id, the review message, created_at timestamp, user_name, and user_photo_url. The count field in the response tells you how many reviews are in the current batch. Reviews are paginated using a cursor pattern: the response includes a next_last_id integer (or null when no further pages exist), which you pass as the last_id query parameter in the next request to walk backwards through older reviews.

Geo Detection

The get_geo endpoint takes no input parameters and returns a single country_code field — a lowercase two-letter ISO 3166-1 alpha-2 string such as us, gb, or de. The detection is based on the IP address of the request. This can be used to understand the regional distribution of users accessing vocalremover.org or to segment review analysis by inferred country.

Pagination and Freshness

Each get_reviews call returns exactly 10 items when a full page is available. To retrieve a full history, make repeated calls passing the next_last_id from each response as last_id in the next. When next_last_id is null, you have reached the oldest available reviews. There is no filtering by date range, rating, or keyword within the endpoint itself — consumers should handle any post-fetch filtering client-side.

Reliability & maintenanceVerified

The Vocalremover API is a managed, monitored endpoint for vocalremover.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when vocalremover.org changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official vocalremover.org API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Aggregate and display vocalremover.org community sentiment in a third-party dashboard using message and created_at fields
  • Build a time-series chart of review volume by crawling all pages via cursor-based pagination
  • Map reviewer geography by combining get_geo with review collection sessions to infer country distribution
  • Monitor for new user feedback by periodically calling get_reviews and comparing the most recent id values
  • Populate a localized landing page with user testimonials using user_name, message, and user_photo_url
  • Detect which country a visitor is in to conditionally display region-specific content using get_geo
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does vocalremover.org have an official developer API?+
Vocalremover.org does not publish an official public developer API. This Parse API provides structured access to publicly available review and geo data from the platform.
How does pagination work in `get_reviews`?+
Each response includes a next_last_id field. Pass its value as the last_id query parameter in your next request to retrieve the preceding batch of reviews. When next_last_id is null, there are no older reviews to fetch. Each page returns a maximum of 10 reviews ordered from newest to oldest.
Can I filter reviews by star rating, keyword, or date range?+
Not currently. The get_reviews endpoint returns id, message, created_at, user_name, and user_photo_url with no server-side filtering options. Any filtering must be applied after fetching. You can fork this API on Parse and revise it to add a filtering endpoint if your use case requires it.
What does `get_geo` return for requests from unrecognized IPs?+
The endpoint returns a two-letter ISO country code based on the requesting IP. The response shape always includes the country_code field, but coverage for unusual or private IP ranges may be limited. The endpoint does not return city, region, or ISP data — only the country code. You can fork this API on Parse and revise it to expose additional geo fields if needed.
Does the API expose user ratings or scores alongside review text?+
Not currently. Review objects include id, message, created_at, user_name, and user_photo_url, but no numeric rating or star score field. You can fork this API on Parse and revise it to add rating data if the source exposes it.
Page content last updated . Spec covers 2 endpoints from vocalremover.org.
Related APIs in Reviews RatingsSee all →
trustpilot.com API
Access company reviews, ratings, and user profiles from Trustpilot to research businesses, compare ratings across categories, and analyze customer feedback and company responses. Find detailed company overviews and review summaries to make informed decisions about products and services.
airlinequality.com API
Get comprehensive airline and airport reviews, ratings, and photos from Skytrax to compare carrier quality and traveler experiences. Search and browse detailed feedback on specific airlines, view summary ratings, and discover community-submitted photos to make informed travel decisions.
yelp.com API
Search for businesses on Yelp and access their detailed information including reviews, photos, and ratings all from one interface. Get comprehensive business data like hours, contact details, and customer feedback without visiting Yelp directly.
opencritic.com API
Find and compare video game reviews and critic scores from industry experts, search games by title or filters, and browse detailed metadata including platforms, tags, and the latest releases. Get aggregated ratings and comprehensive review information to discover games and make informed purchasing decisions.
metacritic.com API
Search for games, movies, and TV shows, then retrieve detailed metadata, critic and user reviews, and ranked lists from Metacritic. Access comprehensive rating information and review data to discover top-rated entertainment content across all media types.
getapp.com API
Search and compare software solutions while accessing detailed information like pricing, features, integrations, reviews, and alternatives all in one place. Get category leaders, read industry research from their blog, and make informed software decisions based on comprehensive data.
g2.com API
Search G2.com to discover software products, compare pricing and categories, and read customer reviews all in one place. Get detailed product overviews and ratings to make informed decisions about business software.
fragrantica.it API
Search for perfumes and retrieve detailed information including fragrance notes, accords, olfactory family, perfumer, year of release, and community ratings from Fragrantica.