Back to Home

Switch from RapidAPI to Van Moose
in under 2 minutes

Same APIs. Same pricing. But one key gives you access to all 72 instead of paying per API.

Stateless API Processing — No request data stored

What changes when you switch

RapidAPIVan Moose Direct
APIs included1 per subscriptionAll 72 APIs
Pro plan ($9.99/mo)10,000 requests to 1 API10,000+ requests across all APIs
API key managementManaged by RapidAPIYour own dashboard at vanmoose.cc
Rate limit headersRapidAPI proxy headersStandard X-RateLimit-* headers
Auth methodx-rapidapi-key headerAuthorization: Bearer vm_live_xxx
LatencyExtra proxy hop via marketplaceDirect calls, no proxy layer
BillingPer-API subscriptionOne subscription, all APIs

Three steps. Two minutes.

1

Create a free account and generate an API key

Sign up at vanmoose.cc, open the dashboard, and create your first API key. It works across all 72 APIs immediately.

Create account
2

Swap the URL and auth header

Replace the RapidAPI proxy URL with the direct endpoint. Replace the RapidAPI key header with a standard Bearer token.

Before (RapidAPI)
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"
After (Van Moose)
curl -X GET \
  "https://emailverify.vanmoose.cc\
    /verify?email=test@example.com" \
  -H "Authorization: Bearer \
    vm_live_your_key"
3

Use the same key for any other API

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_..."

Same price, more access

On RapidAPI, each plan covers one API. On Van Moose, the same plan covers all 72 with pooled quotas per category.

PlanPriceStandard (36)Lite (30)Premium (2)
Free$0/mo20050010
Pro$9.99/mo10,00020,000200
UltraPopular$49.99/mo100,000200,0001,200
Mega$199/mo1,000,0002,000,0006,000

Quotas are per category per month. Standard Reduced (4 APIs) not shown — see pricing for full details.

Or use the SDK

Install @vanmoose/sdk and call any API with typed methods. One client, all 72 APIs.

npm install @vanmoose/sdk
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")

Common questions

Do I need to cancel my RapidAPI subscription first?

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.

Are the API endpoints the same?

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.

What about my existing RapidAPI usage data?

Usage history on RapidAPI stays on RapidAPI. Your Van Moose dashboard tracks usage from your new API key separately, with per-category quota breakdowns.

Is pricing really the same?

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.

Get your unified API key

Free tier included. No credit card required. Works across all 72 APIs.

Create Free Account