API keys + x402 payments

Unified paid APIs for AI agents and teams.
One structured data layer.

MintAPI gives you one paid API layer for Twitter/X, YouTube, TikTok, Instagram, Google Maps, Yelp, and more. Human teams use dashboard API keys; agent runtimes pay per request with x402-native flows.

request-based billing>99.9% uptimex402 standard

// TWO ACCESS MODES

Teams use API keys. Agents pay at request time.

x402 is an HTTP payment flow: the API returns 402 Payment Required, the agent signs payment, retries, and receives structured JSON.

For teams

Dashboard access

Human operators top up credits, create API keys, and call the catalog from apps, scripts, docs, and internal tools.

dashboard-key.curlcURL
1curl "https://api.mintapi.dev/api/twitter/user-info?screenname=elonmusk" \
2 -H "x-api-key: $MINTAPI_KEY"
  • Dashboard API keys
  • Credit top-ups and usage history
  • One catalog for human-operated workflows
Get API key

For agents

x402 payments

Use plain fetch to handle the raw 402 challenge yourself, or use the SDK for a smoother pay-and-retry flow.

agent-payment.ts
1import { paidJson } from "@mintapi/gateway/client"
2
3const profile = await paidJson(
4 "https://api.mintapi.dev/api/twitter/user-info?screenname=elonmusk"
5)
  • Stateless x402 payment flow
  • Pay only when a request is worth making
  • Same endpoint contract as dashboard keys

What you can build

Structured data for teams and autonomous agents.

MintAPI covers social, video, maps, reviews, marketplace, and search data. Integrate once, then let human operators or autonomous agents call the endpoints they need.

Social monitoring

Track profiles, mentions, and trends across X, YouTube, and TikTok through one integration path.

Local discovery

Enrich location data with Google Maps and Yelp for local business intelligence and review monitoring.

Autonomous research

Let agents fetch marketplace listings, search results, and review data on demand without pre-provisioned keys.

Why MintAPI instead of direct integrations

Direct integrationsMintAPI
SetupAuth, billing, and formats per providerOne API surface and contract
Agent accessDashboard-bound keys, manual billingx402 per-request payment
Data shapeVendor-specific HTML or JSONStructured JSON by default

// CREDITS & PRICING

1 credit = $0.001.
Calls start at 1 credit.

Teams top up credits for dashboard keys. Agent runtimes can pay only when a specific external data request is worth making.

No credit expiry|request-based billing
$0.001
per credit
Pricing is easy to reason about at request level.
No
credit expiry
Prepaid credits stay available until they are used.
From 1
credit
Endpoint prices start at 1 credit and scale by endpoint.
3
x402 networks
Agent settlements on Base, Polygon, and Solana.
Illustrative endpoint pricing examples
Explore endpoints pricing →
1 cred.$0.001
GET /api/twitter/user-info
x/twitterlive
2 cred.$0.002
GET /api/youtube/trending
youtubelive
3 cred.$0.003
GET /api/twitter/search
x/twitterlive
5 cred.$0.005
GET /api/twitter/tweet-info
x/twitterlive

// SDK & TOOLING

Use the wrapper or own the protocol.

The SDK keeps routine buyer logic out of your prompts and app code, but you can always drop down to raw x402 flows when you need tighter control.

Node.jsn8nOpenAPIraw HTTP

TypeScript-first

Use the agent client directly or stay low-level with paidFetch and paidJson.

Managed signers

Route EVM and Solana signing through your own wallet infrastructure instead of hardcoding keys.

Raw protocol compatible

You can still implement the 402 → pay → retry loop yourself when you want full control.

Built for agent runtimes

Works cleanly in Node.js agents, tool wrappers, and backend workflows that buy access on demand.

FAQ

Common questions people ask about MintAPI

Short answers for teams and agent builders evaluating paid API access.

Start using MintAPI today.

Go through the dashboard with personal API keys or integrate directly with x402-native agent payments. The API surface stays the same either way.

Dashboard API keys for humans. Stateless x402 flow for agents.