Powered by x402 protocol

OmniAPI

No API keys. No signups. Just pay per request.

Copied! $ npx skills add https://github.com/JinTanba/OmniAPISkills

Let your AI agent access any API — instantly

Zero setup

No registration, no API keys, no OAuth flows. Install the skill and your agent is ready to call real-world APIs in seconds.

💰

Pay only for what you use

Each request costs $0.001 in USDC. No monthly subscriptions, no rate limit tiers, no surprise invoices. True pay-as-you-go.

🔒

No credentials to leak

Your agent never stores API keys. Payment is the authentication. Nothing to rotate, nothing to revoke, nothing to breach.

🌐

Open protocol

Built on the x402 HTTP payment standard and USDC on Base. No vendor lock-in. Any agent, any wallet, any chain that supports x402.

Traditional APIs vs OmniAPI

Traditional APIs

  • Sign up for each provider separately
  • Manage dozens of API keys
  • Pay monthly even when you don't use it
  • Risk credential leaks from your agent
  • Handle OAuth, rate limits, key rotation

OmniAPI

  • One skill install, all APIs available
  • No keys — payment is the auth
  • $0.001 per request, nothing more
  • No credentials stored, nothing to leak
  • Just call the endpoint and get data

What you can build

📊

Social media analytics

Have your agent pull follower counts, engagement metrics, and posting patterns across Twitter and Instagram.

🔎

Competitive research

Monitor competitor accounts, track their content strategy, and get alerts on new activity automatically.

🤖

Autonomous agents

Build agents that gather real-time social data, make decisions, and act — all without human intervention.

Three steps to your first call

1

Install the skill

Add OmniAPI to your Claude Code agent with npx skills add. No account needed.

2

Fund your wallet

Load USDC on Base into your agent wallet. Each request costs just $0.001.

3

Call any endpoint

Your agent pays per request automatically via the x402 protocol. Data flows back instantly.

Available APIs

Method Path Description Price
GET /user Get Twitter user profile by username $0.001
GET /user-tweets Get tweets from a Twitter user by ID $0.001
GET /get-users-v2 Get multiple Twitter users by IDs $0.001
GET /followings Get users that a Twitter user is following $0.001
GET /followers Get followers of a Twitter user $0.001
POST /instagram/posts Get Instagram posts by username $0.001
POST /instagram/profile Get Instagram profile by username $0.001

Example

Terminal
# Get a Twitter user profile
curl -X GET "https://omniapi-production-7de2.up.railway.app/user?username=elonmusk" \
  -H "X-PAYMENT: <x402-payment-header>"

# Get Instagram profile
curl -X POST "https://omniapi-production-7de2.up.railway.app/instagram/profile" \
  -H "Content-Type: application/json" \
  -H "X-PAYMENT: <x402-payment-header>" \
  -d '{"username": "instagram"}'