Head · Hive

AI skills and agent infrastructure, paid per request in USDC — for people, teams, and autonomous agents.

Composite · Global x402 Challenge · x402-global-challenge

Live at head-hive.fly.dev
Pay-per-call USDC via x402 on Algorand MainNet. Base settlement is optional when configured.

Why Hive

How it works

  1. Browse the catalog — start with /api/catalog or /llms.txt to see skills, prices, and paths.
  2. Request a skill — send JSON to a paid path (for example /api/analyze). Without payment you receive HTTP 402 with the payment requirements.
  3. Pay in USDC — settle with an x402 client or wallet. On Algorand, payer network fees are covered via facilitator fee pooling.
  4. Get the result — retry the same request with the payment proof; Hive runs the skill and returns JSON.

For developers — example client (Algorand):

import { wrapFetchWithPaymentFromConfig } from "@x402-avm/fetch";
import { ExactAvmScheme } from "@x402-avm/avm/exact/client";

const paidFetch = wrapFetchWithPaymentFromConfig(fetch, {
  schemes: [{ network: "algorand:*", client: new ExactAvmScheme(signer) }],
});
const res = await paidFetch("https://head-hive.fly.dev/api/analyze", {
  method: "POST",
  headers: { "content-type": "application/json" },
  body: JSON.stringify({ task: "Summarize risks in this plan", context: "…" }),
});

Optional check without paying: request a paid path without a payment header — you should receive HTTP 402 when selling is live.

Who this is for

Who this isn’t for

Example use cases

ask $0.01
extract $0.02
plan $0.05
analyze $0.10
research $0.25
memory.store $0.005

Full skill list and live prices: /api/catalog.

FAQ

How does pricing work?

Each paid skill has a fixed USD price, settled in USDC via x402. You are charged per successful paid call — not a subscription. Sample prices appear above; see the catalog for the live list.

Is this on MainNet?

This deployment is configured for Algorand MainNet. Production Hive at head-hive.fly.dev targets Algorand MainNet USDC. You can confirm network status via GET /?format=json.

What skills can I buy?

Reasoning skills include ask, extract, plan, analyze, code, audit, and research. Infrastructure includes memory, inbox, escrow, and job queues. Paths, prices, and request shapes are in the catalog.

Do I need a Hive API key?

No. Payment is the credential: an x402-capable wallet or client signs USDC for the quote. For memory and inbox skills, you choose a secret token that scopes your data namespace — Hive does not create a traditional user account.

What’s public on this site?

This landing page, the skill catalog, discovery files (llms.txt, well-known x402 and agent card), and brand assets are public. Operator tooling is separate and not part of the public product experience.

How reliable is Hive?

Availability is best-effort. The operator can pause selling at any time (and MainNet starts paused until selling is intentionally enabled). When selling is paused, paid skills will not accept new payments. There is no advertised SLA.

Algorand vs Base?

The live catalog currently lists Algorand only. Base settlement can be enabled when a Base receiver is configured — it is not advertised until then. Global x402 Challenge leaderboard qualification is for MainNet Algorand USDC via GoPlausible with the challenge tag — Base volume, when enabled, does not count toward that leaderboard.

Where do payments go?

Algorand receiver: PBB54PWBPBK2C3MU22XN7PSD6WECYVY2ONJVI34OLYCY7UHSFY4RJIW5IY. Always confirm the address in the live catalog before sending funds.