omni-x402

AI Agent native API provider — no API keys, no signups, no subscriptions. Just pay with USDC per request via x402 to instantly access Twitter, Instagram, and more.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "omni-x402" with this command: npx skills add jintanba/omniapiskills/jintanba-omniapiskills-omni-x402

omni-x402 — AI Agent Native API Provider

omni-x402 is an API provider built for the agentic era. No API keys, no signups, no monthly subscriptions. Just pay with USDC per request via the x402 protocol and instantly access Twitter, Instagram, and more.

Traditional API providers: Sign up → Generate API key → Subscribe to a plan → Manage rate limits → Rotate keys

omni-x402: Have a wallet → Call the endpoint → Pay per request. Done.

AI Agents can autonomously discover available endpoints, pay the exact cost per call, and get results — all without human intervention or pre-provisioned credentials.

Available Endpoints

PathMethodPriceDescription
/userGET$0.001Get Twitter user profile by username
/user-tweetsGET$0.001Get tweets from a Twitter user by ID
/get-users-v2GET$0.001Get multiple Twitter users by IDs (comma-separated)
/followingsGET$0.001Get users that a Twitter user is following
/followersGET$0.001Get followers of a Twitter user
/instagram/postsPOST$0.001Get Instagram posts by username
/instagram/profilePOST$0.001Get Instagram profile by username

Server URL: https://omniapi-production-7de2.up.railway.app

Prerequisites & Setup

1. awal CLI Authentication

The awal CLI (npx awal@latest) handles wallet operations and x402 payments. You must authenticate before making paid API calls.

Check status:

npx awal@latest status

If not authenticated, use the email OTP flow:

# Step 1: Send OTP to your email
npx awal@latest auth login user@example.com
# Output: flowId: abc123...

# Step 2: Verify with the 6-digit code from email
npx awal@latest auth verify abc123 123456

# Confirm authentication
npx awal@latest status

See the authenticate-wallet skill for details.

2. Fund the Wallet

Check your USDC balance:

npx awal@latest balance

If insufficient, fund via Coinbase Onramp:

npx awal@latest show

This opens the wallet companion UI where you can fund with Apple Pay, debit card, bank transfer, or Coinbase account. Alternatively, send USDC on Base directly to your wallet address:

npx awal@latest address

See the fund skill for details.

Summary

RequirementCheckSkill
Wallet authenticatednpx awal@latest statusauthenticate-wallet
USDC balancenpx awal@latest balancefund

Usage

All requests are made via npx awal@latest x402 pay, which handles USDC payment automatically.

Twitter — Get User Profile

npx awal@latest x402 pay "https://omniapi-production-7de2.up.railway.app/user?username=elonmusk"

Twitter — Get User Tweets

npx awal@latest x402 pay "https://omniapi-production-7de2.up.railway.app/user-tweets?user=44196397&count=20"

The user parameter is the Twitter user ID (numeric). Use the /user endpoint first to get the ID from a username.

Twitter — Get Multiple Users

npx awal@latest x402 pay "https://omniapi-production-7de2.up.railway.app/get-users-v2?users=44196397,50393960"

Accepts comma-separated user IDs.

Twitter — Get Followings

npx awal@latest x402 pay "https://omniapi-production-7de2.up.railway.app/followings?user=44196397&count=20"

Twitter — Get Followers

npx awal@latest x402 pay "https://omniapi-production-7de2.up.railway.app/followers?user=44196397&count=20"

Instagram — Get Posts

npx awal@latest x402 pay "https://omniapi-production-7de2.up.railway.app/instagram/posts" -X POST -d '{"username": "instagram"}'

Instagram — Get Profile

npx awal@latest x402 pay "https://omniapi-production-7de2.up.railway.app/instagram/profile" -X POST -d '{"username": "instagram"}'

Note: Instagram endpoints use POST with a JSON body. Use -X POST -d '{...}' to send the request body.

Response Examples

Twitter User Profile (/user)

{
  "result": {
    "id": "44196397",
    "name": "Elon Musk",
    "screen_name": "elonmusk",
    "description": "...",
    "followers_count": 200000000,
    "friends_count": 800,
    "statuses_count": 50000,
    "profile_image_url_https": "https://pbs.twimg.com/..."
  }
}

Twitter User Tweets (/user-tweets)

{
  "result": {
    "timeline": {
      "instructions": [
        {
          "entries": [
            {
              "content": {
                "tweet_results": {
                  "result": {
                    "legacy": {
                      "full_text": "...",
                      "created_at": "...",
                      "favorite_count": 100,
                      "retweet_count": 50
                    }
                  }
                }
              }
            }
          ]
        }
      ]
    }
  }
}

Instagram Profile (/instagram/profile)

{
  "result": {
    "username": "instagram",
    "full_name": "Instagram",
    "biography": "...",
    "follower_count": 500000000,
    "following_count": 500,
    "media_count": 7000,
    "profile_pic_url": "https://..."
  }
}

Instagram Posts (/instagram/posts)

{
  "result": {
    "items": [
      {
        "caption": { "text": "..." },
        "like_count": 1000000,
        "comment_count": 50000,
        "image_versions": { "items": [{ "url": "https://..." }] },
        "taken_at": 1700000000
      }
    ]
  }
}

Service Catalog

Retrieve the full list of available endpoints and their prices:

curl https://omniapi-production-7de2.up.railway.app/catalog

Returns:

[
  { "path": "/user", "method": "GET", "price": "$0.001", "description": "Get Twitter user profile by username" },
  { "path": "/user-tweets", "method": "GET", "price": "$0.001", "description": "Get tweets from a Twitter user by ID" },
  { "path": "/get-users-v2", "method": "GET", "price": "$0.001", "description": "Get multiple Twitter users by IDs (comma-separated)" },
  { "path": "/followings", "method": "GET", "price": "$0.001", "description": "Get users that a Twitter user is following" },
  { "path": "/followers", "method": "GET", "price": "$0.001", "description": "Get followers of a Twitter user" },
  { "path": "/instagram/posts", "method": "POST", "price": "$0.001", "description": "Get Instagram posts by username" },
  { "path": "/instagram/profile", "method": "POST", "price": "$0.001", "description": "Get Instagram profile by username" }
]

Health Check

curl https://omniapi-production-7de2.up.railway.app/health

Returns: {"status": "ok"}

Troubleshooting

ErrorCauseFix
HTTP 402Payment requiredUse npx awal@latest x402 pay instead of plain curl to make the request
HTTP 502Upstream API errorThe backend service may be temporarily unavailable. Retry after a few seconds
"not signed in"Wallet not authenticatedRun npx awal@latest auth login <email> to authenticate. See authenticate-wallet skill
"insufficient balance"Not enough USDCRun npx awal@latest show to fund the wallet. See fund skill
Empty responseInvalid parametersCheck query parameters — e.g. /user requires ?username=, /user-tweets requires ?user= (numeric ID)
Instagram 400Missing request bodyInstagram endpoints require POST with JSON body: -X POST -d '{"username": "..."}'

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

omni-x402

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

agentripe

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

clinic-visit-prep

帮助患者整理就诊前问题、既往记录、检查清单与时间线,不提供诊断。;use for healthcare, intake, prep workflows;do not use for 给诊断结论, 替代医生意见.

Archived SourceRecently Updated
Automation

changelog-curator

从变更记录、提交摘要或发布说明中整理对外 changelog,并区分用户价值与内部改动。;use for changelog, release-notes, docs workflows;do not use for 捏造未发布功能, 替代正式合规审批.

Archived SourceRecently Updated