Same APIs. Same pricing. But one key gives you access to all 72 instead of paying per API.
| RapidAPI | Van Moose Direct | |
|---|---|---|
| APIs included | 1 per subscription | All 72 APIs |
| Pro plan ($9.99/mo) | 10,000 requests to 1 API | 10,000+ requests across all APIs |
| API key management | Managed by RapidAPI | Your own dashboard at vanmoose.cc |
| Rate limit headers | RapidAPI proxy headers | Standard X-RateLimit-* headers |
| Auth method | x-rapidapi-key header | Authorization: Bearer vm_live_xxx |
| Latency | Extra proxy hop via marketplace | Direct calls, no proxy layer |
| Billing | Per-API subscription | One subscription, all APIs |
Sign up at vanmoose.cc, open the dashboard, and create your first API key. It works across all 72 APIs immediately.
Create accountReplace the RapidAPI proxy URL with the direct endpoint. Replace the RapidAPI key header with a standard Bearer token.
curl -X GET \
"https://email-verify16.p.rapidapi.com/verify\
?email=test@example.com" \
-H "x-rapidapi-key: YOUR_KEY" \
-H "x-rapidapi-host: email-verify16\
.p.rapidapi.com"curl -X GET \
"https://emailverify.vanmoose.cc\
/verify?email=test@example.com" \
-H "Authorization: Bearer \
vm_live_your_key"Need WHOIS data? Screenshot? Tech stack detection? Use the same vm_live_ key. No new subscriptions, no extra setup. Just change the subdomain.
# Same key, different APIs
curl https://whois.vanmoose.cc/lookup?domain=github.com -H "Authorization: Bearer vm_live_..."
curl https://techstack.vanmoose.cc/detect?url=stripe.com -H "Authorization: Bearer vm_live_..."
curl https://screenshot.vanmoose.cc/capture?url=example.com -H "Authorization: Bearer vm_live_..."
On RapidAPI, each plan covers one API. On Van Moose, the same plan covers all 72 with pooled quotas per category.
| Plan | Price | Standard (36) | Lite (30) | Premium (2) |
|---|---|---|---|---|
| Free | $0/mo | 200 | 500 | 10 |
| Pro | $9.99/mo | 10,000 | 20,000 | 200 |
| UltraPopular | $49.99/mo | 100,000 | 200,000 | 1,200 |
| Mega | $199/mo | 1,000,000 | 2,000,000 | 6,000 |
Quotas are per category per month. Standard Reduced (4 APIs) not shown — see pricing for full details.
Install @vanmoose/sdk and call any API with typed methods. One client, all 72 APIs.
import { VanMoose } from "@vanmoose/sdk"
const vm = new VanMoose("vm_live_xxx")
// One client, many APIs
const email = await vm.emailVerify("test@example.com")
const whois = await vm.whois("example.com")
const shot = await vm.screenshot("https://stripe.com")No. You can run both in parallel. Create a free Van Moose account, generate an API key, and test it. Cancel RapidAPI whenever you're ready.
The base URLs change (e.g., emailverify.vanmoose.cc instead of the RapidAPI proxy URL), but the request/response format is identical. Swap the URL and auth header — that's it.
Usage history on RapidAPI stays on RapidAPI. Your Van Moose dashboard tracks usage from your new API key separately, with per-category quota breakdowns.
Yes. Same plan names, same prices. The difference: on RapidAPI, $9.99/mo covers one API. On Van Moose, $9.99/mo covers all 72 APIs with the same quota per category.
Free tier included. No credit card required. Works across all 72 APIs.
Create Free Account