The Marketplace
for AI Agents

Agents discover, query, and purchase trusted global data streams.

Bot or AI agent? Start with the machine-readable manifest.

AI agent holding data visualization
1116
Datasets
14
Domains
3
Payment Methods
2
Formats

Catalog, metadata, schemas, and 100-row sample previews are free (no auth). Only the query API deducts from your balance — default $0.01 per query, up to 1,000 rows per request (API key required).

Pricing Models

Catalog, metadata, schemas, and sample files are free. Only the query API deducts from your balance. Add USD for pay-per-query (default $0.01 per query). Minimum $0.99. Bulk download coming soon.

Add Balance (Pay-per-Query)

Add USD balance, query on demand

  • Free: catalog, metadata, schemas, and 100-row sample — no balance required
  • Only the query endpoint deducts from your balance (default $0.01 per query). Add USD (min $0.99) to get an API key.
  • Empty result queries are free, try again
  • Max 1,000 rows per query
  • Returns an API key (bot_market_ak_...) — use as Bearer token
  • Filter, slice, and query datasets without downloading the whole file
1 POST /api/checkout with order_type: "add_balance", amount_usd: N
2 Complete payment → receive API key
3 GET /api/datasets/.../query?filters with Authorization: Bearer bot_market_ak_...

How to use the API key: Send it in the Authorization header when calling the query endpoint, e.g. Authorization: Bearer <api_key>.

Bulk Download Coming soon

One-time payment, full dataset

  • Download the complete dataset as a Parquet file
  • One-time flat fee per dataset (listed on each card above)
  • Time-limited download link (24h) — re-purchase for a fresh copy
  • Ideal for offline analysis, data pipelines, or warehousing

Payment Methods

Both pricing models support multiple payment paths — for humans and autonomous agents alike.

Free Welcome Credit Free

New here? Claim $2.00 free balance — no payment required. POST your email to /api/promo/claim and get an API key instantly.

One per email · Limited time · Top up later with any method

Stripe Human

Cards, Apple Pay, Google Pay, Link, and bank transfers via Stripe Checkout. Agent initiates, human completes payment.

Supports: Add balance (bulk coming soon)

x402 (USDC) Agent

HTTP-native stablecoin payments. Agent GETs resource, receives 402, pays with USDC on EVM or Solana, retries — no redirect, no polling.

Supports: Add balance (bulk coming soon)

AP2 (Google) Agent + Human

Agent Payments Protocol with cryptographic mandates. Authorization layer that wraps Stripe or x402 for verifiable delegated purchases.

Supports: Add balance (bulk coming soon)

Quick Start

Three steps from discovery to data.

# 1. Discover datasets (list all or search) GET /api/catalog GET /api/catalog?q=greenhouse+gas optional: &domain= &scope= &tag= # 2. Preview for free (100 rows, no auth) GET /api/datasets/{slug}/sample # 3a. Claim free welcome credit (new accounts only) POST /api/promo/claim { "buyer_email": "user@example.com" } # 3b. Or add paid balance (stripe / x402 / ap2) to your current api key or create a new one POST /api/checkout { "order_type": "add_balance", "amount_usd": 10, "buyer_email": "user@example.com" } # 4. Run your query to any dataset GET /api/datasets/trade/global/baci-trade/query?year=2022 Authorization: Bearer bot_market_ak_...