# RapidAPI Marketplace API (`johnvc/rapidapi-marketplace-api`) Actor

API for the RapidAPI marketplace. Search and extract API listings with pricing, categories, popularity and reliability metrics, publisher details, billing plans and ratings.

- **URL**: https://apify.com/johnvc/rapidapi-marketplace-api.md
- **Developed by:** [John](https://apify.com/johnvc) (community)
- **Categories:** Developer tools, AI
- **Stats:** 10 total users, 7 monthly users, 100.0% runs succeeded, 2 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.10 / 1,000 api listings

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## RapidAPI Marketplace API for API Discovery

Turn the entire RapidAPI marketplace into structured data. This API searches and extracts public API listings from RapidAPI, returning pricing, categories, popularity and reliability metrics, publisher details, billing plans and ratings. No RapidAPI account, login, or key required.

It is built as a low-cost, pay-per-result loss leader, one of the cheapest ways on Apify to pull marketplace data for API discovery, market research, and competitive intelligence.

### What it does

- Search the marketplace by one or many keywords and collect every matching API.
- Filter by category and sort by relevance, trending, last updated, or alphabetical.
- Pull rich detail per API: full billing plans, subscriber counts, ratings, readme docs, and website.
- Extract directly from RapidAPI API URLs or whole collection pages.

### What you can extract

| Field | Description |
|-------|-------------|
| name / title | API name and display title |
| description / longDescription | Short and full descriptions |
| pricing | Pricing model (FREE, FREEMIUM, PAID) |
| category | Primary marketplace category |
| popularityScore | RapidAPI popularity score (0-10) |
| avgLatency | Average response latency in ms |
| avgServiceLevel / avgSuccessRate | Reliability metrics (%) |
| ratingScore / ratingVotes | User rating and vote count (detailed) |
| subscriptionsCount | Number of subscribers (detailed) |
| publisher / publisherUsername | Who publishes the API |
| billingPlans | Full subscription plans with prices and quotas (detailed) |
| websiteUrl | Publisher website (detailed) |
| readme | API documentation readme (detailed) |
| url | Public RapidAPI page link |

### What you get: example output

Every result is a flat JSON record, one per API listing, ready for a spreadsheet, a database, or an AI agent. Basic search results carry the core fields; set `detailedInfo` to add billing plans, ratings, subscriber counts, and the full readme. Here is a trimmed example of what the API returns for one detailed listing:

```json
{
  "name": "open-weather-map",
  "title": "Open Weather Map",
  "description": "Current weather, forecasts, and historical data for any location.",
  "longDescription": "Access current conditions, hourly and daily forecasts, and historical weather by city name, ZIP code, or coordinates.",
  "pricing": "FREEMIUM",
  "category": "Weather",
  "popularityScore": 9.8,
  "avgLatency": 142,
  "avgServiceLevel": 100,
  "avgSuccessRate": 99,
  "ratingScore": 4.6,
  "ratingVotes": 512,
  "subscriptionsCount": 84213,
  "publisher": "WeatherData Inc",
  "publisherUsername": "weatherdata",
  "billingPlans": [
    {"name": "Basic", "price": 0, "quota": "60 requests/minute"},
    {"name": "Pro", "price": 10, "quota": "600 requests/minute"}
  ],
  "websiteUrl": "https://example-weather.com/",
  "url": "https://rapidapi.com/weatherdata/api/open-weather-map"
}
```

### Use cases

- API discovery: find every API matching a keyword or category.
- Market research: analyze pricing models and popularity across thousands of APIs.
- Competitive intelligence: track which APIs lead your niche and how they price.
- Lead generation: build a database of API publishers and their websites.
- Trend analysis: monitor trending and recently updated APIs over time.

### 🔌 Integrations: Automate API Discovery and Market Research

A single run answers one question ("which weather APIs are trending today?"). The real value comes from running this API on a schedule, so a fresh snapshot of the marketplace lands in your stack every day and you can watch pricing, popularity, and new entrants change over time. See the full list of [Apify platform integrations](https://docs.apify.com/platform/integrations).

**Tasks and Schedules (the core recipe).** Save one [task](https://docs.apify.com/platform/actors/running/tasks) per thing you track (a category like "Finance", a keyword like "weather", or a competitor's publisher page), then attach a [schedule](https://docs.apify.com/platform/schedules) from the Actor's Actions, then Schedule menu. Each run appends a fresh snapshot to the same dataset. Useful cron strings: `0 7 * * *` (daily at 7 AM), `0 */6 * * *` (every six hours), `0 9 * * 1` (Mondays). One schedule can trigger many tasks at once.

**n8n.** Run this API inside an [n8n](https://docs.apify.com/platform/integrations/n8n) workflow: a Schedule Trigger, then the Apify node running `johnvc/rapidapi-marketplace-api`, then a Filter on `popularityScore` or `pricing`, then a Slack or email node to alert you when a new API enters your niche. This API also ships a dedicated n8n community node, [`n8n-nodes-rapidapi-marketplace-api`](https://www.npmjs.com/package/n8n-nodes-rapidapi-marketplace-api): in n8n open Settings, Community Nodes, and install it, then use it in any workflow or as an AI Agent tool.

**Make and Zapier.** The same pattern works no-code with [Make](https://docs.apify.com/platform/integrations/make) and [Zapier](https://docs.apify.com/platform/integrations/zapier): trigger on a schedule, run the Actor, route the new rows wherever you need them.

**Store the history (Supabase).** Send each run's rows into a table so a price and popularity history accumulates over time. No-code: the n8n Apify node, then a Supabase node. Or in Python, using the real output fields (`name`, `category`, `pricing`, `popularityScore`, `avgSuccessRate`, `publisher`, `url`):

```python
from apify_client import ApifyClient
from supabase import create_client

apify = ApifyClient("YOUR_APIFY_TOKEN")
supabase = create_client("YOUR_SUPABASE_URL", "YOUR_SUPABASE_KEY")

run = apify.actor("johnvc/rapidapi-marketplace-api").call(run_input={
    "searchTerms": ["weather", "finance"],
    "maxResults": 100,
    "detailedInfo": True,
})
rows = list(apify.dataset(run.default_dataset_id).iterate_items())
supabase.table("rapidapi_listings").upsert(rows).execute()
```

**MCP and AI agents.** Add this API as a tool in [Claude Code](https://claude.ai/referral/uIlpa7nPLg) (free trial), [Claude Cowork](https://claude.ai/referral/uIlpa7nPLg) (free trial), or Cursor through the Apify MCP server, so an agent can answer questions like "what are the five most popular free finance APIs on RapidAPI right now?" with live data (see the Use this API from Claude section below).

**Webhooks.** For anything custom, fire an [Apify webhook](https://docs.apify.com/platform/integrations/webhooks) on `ACTOR.RUN.SUCCEEDED` to push each run's dataset into your own service.

### Input

| Field | Type | Description |
|-------|------|-------------|
| searchTerms | array | Keywords to search, one per line. Empty plus empty Listing URLs returns all APIs. |
| category | string | Optional single category filter (for example Data, Finance, Weather). |
| sortBy | select | Relevance, Trending, Last updated, or Alphabetical. |
| order | select | Ascending or Descending. |
| maxResults | integer | Max results per search term (up to 1000). |
| detailedInfo | boolean | Enrich each result with full detail by fetching its API page. |
| listingUrls | array | RapidAPI API or collection URLs to extract directly (always detailed). |

#### Example input

```json
{
  "searchTerms": ["linkedin", "weather"],
  "category": "Data",
  "sortBy": "ByTrending",
  "order": "DESC",
  "maxResults": 50,
  "detailedInfo": false
}
```

### Pricing

This Actor uses pay-per-result pricing and is deliberately priced as a loss leader, among the cheapest options on Apify for marketplace data:

- Basic listing result: 0.0001 USD each.
- Detailed API result: 0.0001 USD each (includes an extra page fetch per API for billing plans, ratings, readme, and subscriber counts, at the same low rate).

You only pay for results actually returned. Set a run budget and the Actor stops cleanly when the budget is reached.

### How to get started

1. Add your search terms or listing URLs.
2. Click Start. Results stream to the dataset as they are found.
3. Export as JSON, CSV, or Excel, or pull them through the Apify API.

[View on Apify Store](https://apify.com/johnvc/rapidapi-marketplace-api?fpr=9n7kx3)

For a Python quick-start and MCP setup walkthrough, see the [example repo on GitHub](https://github.com/johnisanerd/Apify-RapidAPI-Marketplace-API).

### 🔌 Use this API from Claude (MCP)

Add this Actor as a tool in [Claude Code](https://claude.ai/referral/uIlpa7nPLg) (free trial), [Claude Cowork](https://claude.ai/referral/uIlpa7nPLg) (free trial), or any other MCP client, via the hosted Apify MCP server. Use this Actor-specific URL:

https://mcp.apify.com/?tools=actors,docs,johnvc/rapidapi-marketplace-api

Setup walkthrough (Apify Console auto-embeds a YouTube URL placed on its own line):

https://www.youtube.com/watch?v=jREWahDGhJM

Apify MCP integration docs: https://docs.apify.com/platform/integrations/mcp

### 💸 Pay per run with crypto (x402)

The RapidAPI Marketplace API supports agentic payments via the [x402 protocol](https://docs.apify.com/platform/integrations/x402).
AI agents and MCP clients can pay for runs in USDC (on Base) with no Apify account or API token needed:
point your agent at the [Apify MCP server](https://mcp.apify.com/?tools=actors,docs,johnvc/rapidapi-marketplace-api) and it can
discover, pay for, and run this Actor autonomously. Read the
[Apify x402 announcement](https://apify.com/change-log/pay-for-apify-actors-with-x402?fpr=9n7kx3) for details.

### 💡 Example tasks

Ready-made, SEO-indexed use cases for this API. Each is a saved configuration you can run or duplicate:

- [Find Free APIs on RapidAPI by Popularity](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-free-apis-on-rapidapi?fpr=9n7kx3)
- [Find Amazon APIs on RapidAPI by Popularity](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-amazon-apis-on-rapidapi?fpr=9n7kx3)
- [Compare Crypto APIs on RapidAPI Marketplace](https://apify.com/johnvc/rapidapi-marketplace-api/examples/compare-crypto-apis-on-rapidapi-marketplace?fpr=9n7kx3)
- [Find Email Verification APIs on RapidAPI](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-email-verification-apis-on-rapidapi?fpr=9n7kx3)
- [Compare LinkedIn APIs on RapidAPI by Rating](https://apify.com/johnvc/rapidapi-marketplace-api/examples/compare-linkedin-apis-on-rapidapi?fpr=9n7kx3)
- [Find OCR APIs on RapidAPI by Rating](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-ocr-apis-on-rapidapi-by-rating?fpr=9n7kx3)
- [Find Recipe APIs on RapidAPI by Popularity](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-recipe-apis-on-rapidapi?fpr=9n7kx3)
- [Find SMS APIs on RapidAPI by Popularity](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-sms-apis-on-rapidapi?fpr=9n7kx3)
- [Find TikTok APIs on RapidAPI by Popularity](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-tiktok-apis-on-rapidapi?fpr=9n7kx3)
- [Find RapidAPI Popular APIs by Popularity Score](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-rapidapi-popular-apis-by-popularity-score?fpr=9n7kx3)
- [Find AI APIs on RapidAPI by Popularity](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-ai-apis-on-rapidapi?fpr=9n7kx3)
- [Find Flight APIs on RapidAPI by Popularity](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-flight-apis-on-rapidapi?fpr=9n7kx3)
- [Find Geocoding APIs on RapidAPI by Popularity](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-geocoding-apis-on-rapidapi?fpr=9n7kx3)
- [Find Instagram APIs on RapidAPI by Rating](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-instagram-apis-on-rapidapi?fpr=9n7kx3)
- [Compare News APIs on RapidAPI by Popularity](https://apify.com/johnvc/rapidapi-marketplace-api/examples/compare-news-apis-on-rapidapi?fpr=9n7kx3)
- [Find Real Estate APIs on RapidAPI by Pricing](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-real-estate-apis-on-rapidapi?fpr=9n7kx3)
- [Find Sports APIs by Popularity and Pricing](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-sports-apis-by-popularity-pricing?fpr=9n7kx3)
- [Find Stock Market APIs on RapidAPI by Popularity](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-stock-market-apis-on-rapidapi?fpr=9n7kx3)
- [Find Web Scraping APIs on RapidAPI by Popularity](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-web-scraping-apis-on-rapidapi-by-popularity?fpr=9n7kx3)
- [Find Weather APIs on RapidAPI by Popularity](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-weather-apis-on-rapidapi?fpr=9n7kx3)
- [Find Captcha APIs on RapidAPI](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-captcha-apis-on-rapidapi?fpr=9n7kx3)
- [Find Company Data APIs on RapidAPI](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-company-data-apis-on-rapidapi?fpr=9n7kx3)
- [Compare RapidAPI Currency Exchange APIs](https://apify.com/johnvc/rapidapi-marketplace-api/examples/compare-rapidapi-currency-exchange-apis?fpr=9n7kx3)
- [Find Domain APIs on RapidAPI](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-domain-apis-on-rapidapi?fpr=9n7kx3)
- [Find Facebook APIs on RapidAPI by Price](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-facebook-apis-on-rapidapi?fpr=9n7kx3)
- [Find Hotel APIs on RapidAPI by Popularity](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-hotel-apis-on-rapidapi?fpr=9n7kx3)
- [Find Image APIs on RapidAPI Marketplace](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-image-apis-on-rapidapi?fpr=9n7kx3)
- [Find IP Geolocation APIs on RapidAPI](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-ip-geolocation-apis-on-rapidapi?fpr=9n7kx3)
- [Find Maps APIs on RapidAPI Marketplace](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-maps-apis-on-rapidapi?fpr=9n7kx3)
- [Find Music APIs on RapidAPI Marketplace](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-music-apis-on-rapidapi?fpr=9n7kx3)
- [Find PDF APIs on RapidAPI by Price](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-pdf-apis-on-rapidapi-by-price?fpr=9n7kx3)
- [Find Proxy APIs on RapidAPI Marketplace](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-proxy-apis-on-rapidapi?fpr=9n7kx3)
- [Find Screenshot APIs on RapidAPI](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-screenshot-apis-on-rapidapi?fpr=9n7kx3)
- [Find Sentiment Analysis APIs on RapidAPI](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-sentiment-analysis-apis-on-rapidapi?fpr=9n7kx3)
- [Find Sports Odds APIs on RapidAPI](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-sports-odds-apis-on-rapidapi?fpr=9n7kx3)
- [Find Text to Speech APIs on RapidAPI](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-text-to-speech-apis-on-rapidapi?fpr=9n7kx3)
- [Compare Twitter APIs on RapidAPI](https://apify.com/johnvc/rapidapi-marketplace-api/examples/compare-twitter-apis-on-rapidapi?fpr=9n7kx3)
- [Find YouTube APIs on RapidAPI by Pricing](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-youtube-apis-on-rapidapi?fpr=9n7kx3)
- [Find Football APIs on RapidAPI](https://apify.com/johnvc/rapidapi-marketplace-api/examples/find-football-apis-on-rapidapi?fpr=9n7kx3)
- [Compare Movie APIs on RapidAPI Marketplace](https://apify.com/johnvc/rapidapi-marketplace-api/examples/compare-movie-apis-on-rapidapi?fpr=9n7kx3)

### 🔗 Related Tools

Building an API and marketplace intelligence pipeline? These tools from the same catalog pair well with RapidAPI marketplace data:

- [Apify Store API](https://apify.com/johnvc/store-actor-intelligence-api?fpr=9n7kx3): the same idea for a different catalog, search and extract every Actor on the Apify Store with pricing, ratings, and usage stats.
- [Apple App Store Search](https://apify.com/johnvc/apple-app-store-search?fpr=9n7kx3): discover apps by keyword across the App Store when your research spans app marketplaces, not just APIs.
- [Apple App Store Product API](https://apify.com/johnvc/apple-app-store-product-api?fpr=9n7kx3): pull full app detail, pricing, and reviews for any listing you find.
- [G2 Reviews API](https://apify.com/johnvc/g2-reviews-api?fpr=9n7kx3): read B2B software reviews to evaluate the tools and vendors you discover.

Other RapidAPI marketplace scrapers exist, such as [crawlerbros/rapidapi-hub-scraper](https://apify.com/crawlerbros/rapidapi-hub-scraper?fpr=9n7kx3), but that one charges a per-run start fee plus roughly forty times more per result and shows minimal adoption (a handful of users). This API is a pay-per-result loss leader at 0.0001 USD per record with no start fee, actively maintained, and returns clean structured fields.

### FAQ

#### Can I schedule this RapidAPI API to run automatically?

Yes. Any run can be automated on a [schedule](https://docs.apify.com/platform/schedules). Save a [task](https://docs.apify.com/platform/actors/running/tasks) with your search terms or listing URLs, then open the Actor's Actions, then Schedule menu and pick a cadence. Handy cron strings: `0 7 * * *` for daily at 7 AM, `0 */6 * * *` for every six hours, and `0 9 * * 1` for Monday mornings. One schedule can trigger many tasks at once, so you can track a dozen categories in parallel. See the Integrations section above for the full monitoring and storage recipe.

#### Should I use an API or a web scraper for API discovery?

Both, and this Actor is both. RapidAPI has no official public catalog API, so your options are a manual browse, a fragile custom [web scraper](https://en.wikipedia.org/wiki/Web_scraping), or this Actor, which gives you the clean, structured result of a purpose-built [API](https://en.wikipedia.org/wiki/API): call it yourself or run it no-code, pay per record, and get the same JSON whether you pull one listing or the whole marketplace. No RapidAPI account or key is required.

#### How many results can this return?

The marketplace caps a single search at 1000 results, so the Actor stops there per search term. To gather more, pass several search terms or several listing URLs in one run; each is collected up to its own cap.

#### How much does it cost to collect RapidAPI data?

It is a deliberate loss leader: 0.0001 USD per basic listing and 0.0001 USD per detailed API, with no start fee and no subscription. You only pay for results actually returned, and you can set a run budget so the Actor stops cleanly when the cap is reached.

#### How can I use this for market research?

Point it at a category or a keyword, turn on `detailedInfo`, and you get pricing models, billing plans, popularity scores, latency, success rates, and subscriber counts across every matching API. Run it on a schedule to watch how a niche prices and grows over time. This is the market research and competitive intelligence use case: one structured dataset instead of hours of manual browsing.

#### Can I use the RapidAPI Marketplace API with the Apify API?

Yes. The Apify API runs the Actor, schedules it, and fetches datasets, and the `apify-client` package exists for both Node.js and Python. See the Actor's [API tab](https://apify.com/johnvc/rapidapi-marketplace-api/api?fpr=9n7kx3) for ready-made snippets.

#### Can I use this RapidAPI scraper through an MCP server?

Yes. Add it as a tool in any MCP client (Claude, Cursor, and others) through the hosted [Apify MCP server](https://mcp.apify.com/) with the Actor-specific URL `https://mcp.apify.com/?tools=actors,docs,johnvc/rapidapi-marketplace-api`. In [Claude Code](https://claude.ai/referral/uIlpa7nPLg) (free trial) or [Claude Cowork](https://claude.ai/referral/uIlpa7nPLg) (free trial) your agent can then answer questions like "which OCR APIs on RapidAPI have the best success rate?" with live data. See the [Apify MCP docs](https://docs.apify.com/platform/integrations/mcp).

#### Can I integrate this API with other apps?

Yes. It connects to almost any cloud service through [Apify integrations](https://docs.apify.com/platform/integrations): [Make](https://docs.apify.com/platform/integrations/make), [Zapier](https://docs.apify.com/platform/integrations/zapier), [Slack](https://docs.apify.com/platform/integrations/slack), n8n, and [webhooks](https://docs.apify.com/platform/integrations/webhooks) on `ACTOR.RUN.SUCCEEDED` for custom actions. See the Integrations section above for full recipes.

#### Is it legal to scrape RapidAPI listings?

This Actor reads only public marketplace pages on [RapidAPI](https://rapidapi.com/) and does not require or use a RapidAPI account. As with any scraping, use the data responsibly and respect the source's terms. For background, see Apify's overview of [the legality of web scraping](https://blog.apify.com/is-web-scraping-legal/).

#### How can I discover and track other marketplaces and catalogs?

Pair this API with related tools in the same catalog: the [Apify Store API](https://apify.com/johnvc/store-actor-intelligence-api?fpr=9n7kx3) for the Apify Actor catalog, [Apple App Store Search](https://apify.com/johnvc/apple-app-store-search?fpr=9n7kx3) and the [Apple App Store Product API](https://apify.com/johnvc/apple-app-store-product-api?fpr=9n7kx3) for the app marketplace, and the [G2 Reviews API](https://apify.com/johnvc/g2-reviews-api?fpr=9n7kx3) to evaluate the software you find.

### Notes

- This Actor reads only public marketplace pages. It does not require or use a RapidAPI account.
- The marketplace caps a single search at 1000 results. Use multiple search terms to gather more.
- Be a good citizen: scrape responsibly and respect RapidAPI's terms.

***

### 🌐 About Alpha OSINT

This Actor is part of [Alpha OSINT](https://www.alphaosint.com), toolset of financial and operations data sources and APIs.
See the [RapidAPI Marketplace API source page](https://www.alphaosint.com/sources/rapidapi-marketplace-api/) for related tools and use cases.
For support or requests for this actor, please start a ticket [directly on our support page](https://apify.com/johnvc/rapidapi-marketplace-api/issues/open?fpr=9n7kx3).

Last Updated: 2026.09.10

# Actor input Schema

## `searchTerms` (type: `array`):

Keywords to search the RapidAPI marketplace for, one per line (for example: linkedin, weather, translation). Each term is searched separately. Leave this and Listing URLs empty to return all marketplace APIs.

## `category` (type: `string`):

Optional. Restrict search results to a single marketplace category. Use the exact category name as shown on RapidAPI, for example: Data, Business, Tools, Finance, Social, eCommerce, Advertising, Cybersecurity, Travel, Sports, Weather, Translation, Jobs, News, Media, Education, Entertainment, Health, Email, Visual Recognition. Leave empty for all categories.

## `sortBy` (type: `string`):

How to sort search results.

## `order` (type: `string`):

Sort direction for the chosen sort field.

## `maxResults` (type: `integer`):

Maximum number of API listings to return for each search term. The marketplace caps a single search at 1000 results; use multiple search terms to gather more.

## `detailedInfo` (type: `boolean`):

When enabled, each search result is enriched with full detail (billing plans, rating, readme, subscriber count, website and long description) by fetching its API page. This is slower and billed at the higher per-detail rate. Listing URLs below always return detailed info.

## `listingUrls` (type: `array`):

Optional. RapidAPI URLs to extract directly, one per line. Accepts API pages (https://rapidapi.com/{publisher}/api/{api}) and collection pages (https://rapidapi.com/collection/{name}). Listing URLs always return detailed info.

## Actor input object example

```json
{
  "searchTerms": [
    "weather"
  ],
  "sortBy": "ByRelevance",
  "order": "ASC",
  "maxResults": 25,
  "detailedInfo": false
}
```

# Actor output Schema

## `allResults` (type: `string`):

Every API listing and detail row from this run.

## `overview` (type: `string`):

Key columns per API (name, pricing, category, popularity, publisher, link).

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchTerms": [
        "weather"
    ],
    "maxResults": 25
};

// Run the Actor and wait for it to finish
const run = await client.actor("johnvc/rapidapi-marketplace-api").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "searchTerms": ["weather"],
    "maxResults": 25,
}

# Run the Actor and wait for it to finish
run = client.actor("johnvc/rapidapi-marketplace-api").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchTerms": [
    "weather"
  ],
  "maxResults": 25
}' |
apify call johnvc/rapidapi-marketplace-api --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,johnvc/rapidapi-marketplace-api"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/dB44opp3KJj8asVb9/builds/48YALq7UJHNzLNLWr/openapi.json
