discover-x402-services

Original🇺🇸 English
Translated

Search for x402-enabled paid APIs. Use when the user wants to find paid services, discover APIs, look up x402 endpoints, or browse available paid resources by keyword or network.

1installs
Added on

NPX Install

npx skill4agent add zauthofficial/agent-skills discover-x402-services

Tags

Translated version includes tags in frontmatter

Discover x402 Services

Search and browse x402-enabled paid APIs from the zauth verified provider directory.

Usage

Search by keyword

bash
npx @zauthx402/cli@latest search <query> --json

Browse all endpoints

bash
npx @zauthx402/cli@latest list --json

Common filters

  • --network <name>
    — Filter by blockchain network (base, base-sepolia, solana, etc.)
  • --verified
    — Only show verified endpoints from trusted providers
  • --limit <n>
    — Max results to return (default: 10)
  • --json
    — Output structured JSON (recommended for programmatic use)

Examples

Find weather APIs:
bash
npx @zauthx402/cli@latest search weather --json
Browse verified endpoints on Base network:
bash
npx @zauthx402/cli@latest list --network base --verified --json
Find AI/agent services:
bash
npx @zauthx402/cli@latest search agent --json

Interpreting Results

Each endpoint in the response includes:
FieldMeaning
url
The API endpoint URL
method
HTTP method (GET, POST, etc.)
status
Health status: WORKING, FAILING, FLAKY, UNTESTED, or OVER_BUDGET
verified
true
if from a verified provider
priceUsdc
Cost per call in USDC
network
Blockchain network for payment (base, solana, etc.)
successRate
Percentage of successful calls (0-100)
uptime
Overall uptime percentage
totalCalls
Total number of calls recorded
title
Human-readable name of the service
description
What the endpoint does

Recommended workflow

  1. Search for services matching the user's need
  2. Filter by network and verification status
  3. Present the best options with pricing and reliability info
  4. If the user wants to call a found endpoint, use Coinbase's
    pay-for-service
    skill to handle the x402 payment and invocation