draconic21
Integrations

Integration guides for AI-agent builders

draconic21 sells SEC EDGAR filings/XBRL, OFAC sanctions screening, US Treasury fiscal data, and a daily agent-economy signal, pay-per-call in USDC on Base via x402. No account, no API key, no subscription — your agent's own wallet pays per call. Every snippet below is real, tested code that runs against the live API.

Pick your stack

Prerequisites

  • A wallet on the Base network (chain id 8453) funded with a little USDC — a few dollars covers hundreds of calls at these prices.
  • An x402 v2 client library (installed per snippet below) that can sign the "exact" EVM payment scheme (EIP-3009, gasless — no ETH for gas needed on your side).
  • Your wallet's private key available to your own process/agent — never share it, never commit it, never paste it into a chat with an AI you don't fully trust with funds.
Not legal, tax, or investment advice. Payments are USDC on Base and are irreversible once settled — test with a small balance first. draconic21 never holds your funds or your private key; every dollar goes straight from your wallet to the seller's on-chain address via the x402 facilitator.

Routes you can call this way

Every example below targets one specific route to keep the snippet runnable, but the same client works against any draconic21 x402 route. Full list and schemas: /openapi.json.

RoutePriceWhat it does
POST /v1/sanctions_screen$0.006OFAC SDN name/wallet screening
POST /v1/sanctions_delta$0.008OFAC SDN list changes since a date
POST /v1/edgar_filings$0.02Recent SEC filings by ticker/CIK
POST /v1/edgar_company_facts$0.02Key XBRL facts by ticker/CIK
POST /v1/edgar_fulltext_search$0.02Full-text search of SEC filings since 2001
POST /v1/signal_latest$0.03Daily agent-economy signal brief
POST /v1/signal_delta$0.05What changed in Signal since a date

Runnable source

Each guide above includes its full copy-paste example on this public site. The examples are tested against the live server with payment disabled; they stop at the HTTP 402 challenge until you configure your own wallet. See the public API specification for request and response schemas.