Pay-per-call access to the Hexanon family of eight x402 APIs for autonomous agents — no signup, no API keys, USDC on Base. Covers US/Canada vehicle & VIN intelligence (Vindex), e-commerce demand signals (Demandex), Polymarket whale intelligence (OrcaTrace), GitHub trending-repo digests (gitBeacon), narrative intelligence (Signalis), Moltbook community digests (Moltalyzer), x402 seller conformance scanning (x402lint), and Polymarket weather-market signals (Isocast).
npx skills add https://github.com/davepoon/buildwithclaude --skill hexanon-x402-apis
Eight independently operated, pay-per-call HTTP APIs that an agent can call directly with USDC micropayments over x402 on Base — no accounts, no API keys. Probe any paid route unauthenticated to get a machine-readable HTTP 402 challenge, pay with an x402 client, and retry. Responses are only charged when the work succeeds (charged: true).
All endpoint guidance an agent needs is inlined below (snapshot: 2026-08-01). Each origin also publishes a machine-readable openapi.json as its reference spec if you need parameter details.
api.vindexapi.devapi.demandex.devapi.orcatrace.devapi.gitbeacon.devapi.signalis.devapi.moltalyzer.xyzapi.x402lint.devapi.isocast.devEvery product exposes free sample/index routes, so an agent can preview response shapes before paying. Prices below are USDC on Base (eip155:8453); the live 402 challenge on each route is always the exact price at call time.
https://api.vindexapi.dev)| Method | Path | Price | What you get |
|---|---|---|---|
| GET | /v1/sample/decode | free | Sample VIN decode (fixed sample vehicle) |
| GET | /v1/decode?vin= | $0.01 | Normalized NHTSA vPIC VIN decode |
| GET | /v1/recalls?vin= | $0.01 | Merged US (NHTSA) + Canada (Transport Canada) recalls |
| GET | /v1/known-issues?vin= | $0.05 | LLM-clustered named failure modes with verified ODI citations |
| GET | /v1/purchase-costs | $0.02 | Itemized US + Canada used-vehicle closing costs (country=CA\|US) |
| GET | /v1/prepurchase?vin= | $0.25 | Whole-job pre-purchase report: decode + recalls + known issues + costs |
https://api.demandex.dev)| Method | Path | Price | What you get |
|---|---|---|---|
| GET | /v1/categories | free | Category index |
| GET | /v1/sample/opportunity | free | Sample opportunity card |
| GET | /v1/opportunities/trending | $0.01 | Trending demand opportunities (teaser) |
| GET | /v1/opportunities?category= | $0.02 | Opportunities in a category |
| GET | /v1/opportunity?id= | $0.05 | Full opportunity card |
| POST | /v1/gauge | $0.03 | Demand verdict for a product idea (cached corpus) |
| GET | /v1/brief | $0.25 | Whole-job demand brief: trending + top opportunities + landscape |
https://api.orcatrace.dev)| Method | Path | Price | What you get |
|---|---|---|---|
| GET | /v1/pulse | free | Top-3 movers brief |
| GET | /v1/track-record | free | Whale-calibration scorecard |
| GET | /v1/signal | $0.01 | One Polymarket feed item |
| GET | /v1/resolving | $0.02 | Markets resolving soon |
| GET | /v1/whales | $0.05 | Whale calibration table |
| GET | /v1/digest | $0.10 | Polymarket Intelligence Digest |
| GET | /v1/research?market= | $1.00 | Single-market deep-dive research |
https://api.gitbeacon.dev)| Method | Path | Price | What you get |
|---|---|---|---|
| GET | /v1/digests/latest | free | Latest GitHub digest |
| GET | /v1/repos | $0.01 | Top trending repos |
| GET | /v1/digests | $0.05 | Historical GitHub digests |
https://api.signalis.dev)| Method | Path | Price | What you get |
|---|---|---|---|
| GET | /v1/intelligence/latest | free | Latest Master Intelligence digest |
| GET | /v1/pulse/narratives | $0.01 | Active AI-business narratives |
| GET | /v1/pulse/content/recent | $0.02 | Raw recent content items |
| GET | /v1/intelligence/history | $0.03 | Historical master digests |
https://api.moltalyzer.xyz)| Method | Path | Price | What you get |
|---|---|---|---|
| GET | /api/moltbook/digests/latest | free | Latest Moltbook digest |
| GET | /api/moltbook/digests | $0.02 | Historical Moltbook digests |
| POST | /api/moltbook/advisor | $0.05 | Viral Advisor: scores/rewrites a post |
https://api.x402lint.dev)| Method | Path | Price | What you get |
|---|---|---|---|
| GET | /v1/checks | free | Full check catalog |
| GET | /v1/directory | free | Graded directory of scanned x402 origins |
| GET | /v1/status?url= | free | Scan freshness + grade summary for an origin |
| POST | /v1/scan | $0.15 | Full 25-check conformance scan with A–F grade |
| GET | /v1/report?url= | $0.02 | Cached full report |
https://api.isocast.dev)| Method | Path | Price | What you get |
|---|---|---|---|
| GET | /v1/cities | free | All active cities |
| GET | /v1/sample | free | Promo signal (shape demo) |
| GET | /v1/spot?city= | $0.01 | Latest-signal snapshot for a city |
| POST | /v1/subscribe | $0.01–$7.00 | Prepay the next N signals for a city (bundle) |
HTTP 402 with an accepts block naming the exact price, asset (USDC), network (Base) and pay-to address.@x402/fetch (npm install @x402/fetch @x402/evm viem at a pinned version and wrap fetch with your wallet signer). Avoid piping URLs through unpinned, runtime-installed CLI tools.User: "Decode this VIN and tell me about recalls."
Output:
1. GET https://api.vindexapi.dev/v1/decode?vin=<VIN> -> HTTP 402 challenge
2. Pay via x402 client (USDC on Base) and retry -> normalized NHTSA vPIC decode
3. GET https://api.vindexapi.dev/v1/recalls?vin=<VIN> -> merged US (NHTSA) + Canada recalls
openapi.json is its machine-readable reference spec for parameters and response schemas.Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.
Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup
Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.
React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.
Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling
Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification
Take davepoon/hexanon-x402-apis from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference npm.
Without those the skill loads but fails at the first command.