The Algorand x402 Global Challenge is a competition for developers to build paid API endpoints using the x402 protocol (HTTP 402 Payment Required) on Algorand. It runs from mid-July through early October 2026, with 10 finalists presenting live at Devcon 8 in India.
Prizes: $100,000 USD + 500,000 ALGO distributed across winners.
What they want: A real API endpoint that returns HTTP 402 when called without payment — something someone (or some AI agent) would actually pay for. Data, compute, AI inference, verification, an action — if it's useful, it qualifies.
| Component | What You Use | Why |
|---|---|---|
| Blockchain | Algorand Mainnet | ~3.7s finality, $0.001 fees, USDC native (ASA 31566704) |
| Payment Protocol | x402 v2 (exact scheme) | HTTP 402 → pay → retry → 200. Open standard, Linux Foundation-governed |
| Facilitator | GoPlausible | Required for the challenge. Handles verification, settlement, and gas sponsorship (you pay zero network fees) |
| Discovery | Bazaar (auto-catalog) | Your endpoint is automatically discoverable once registered. Add the x402-global-challenge tag |
| Settlement Currency | USDC on Algorand (ASA 31566704) | Can also accept ALGO. Facilitator handles multi-asset settlement |
You need an Algorand address to receive payments. Use any Algorand wallet (Pera, Defly, MyAlgo) or generate one programmatically:
# Python (requires algosdk)
from algosdk import account, mnemonic
private_key, address = account.generate_account()
print(f"Address: {address}")
print(f"Mnemonic: {mnemonic.from_private_key(private_key)}")
# SAVE BOTH SECURELY
Fund your wallet with at least a few ALGO (for the initial opt-in to USDC) and the USDC ASA (31566704 on Mainnet).
Your endpoint must:
Payment-Signature header on retryHere's a minimal Python/Flask example:
from flask import Flask, request, jsonify
import requests
app = Flask(__name__)
FACILITATOR = "https://facilitator.goplausible.xyz"
PAY_TO = "YOUR_ALGORAND_ADDRESS" # Your wallet
PRICE_USDC = "0.05" # $0.05 per call
@app.route('/my-endpoint')
def my_service():
payment_sig = request.headers.get('Payment-Signature')
if not payment_sig:
# Return HTTP 402 with payment requirements
return jsonify({
"error": "Payment required",
"payment": {
"scheme": "exact",
"network": "algorand:wGHE2Pwdvd7S12BL5FaOP20EGYesN73ktiC1qzkkit8=",
"asset": "31566704", # USDC on Algorand
"amount": PRICE_USDC,
"recipient": PAY_TO,
"facilitator": FACILITATOR
}
}), 402
# Verify payment through GoPlausible
verify = requests.post(f"{FACILITATOR}/verify", json={
"paymentSignature": payment_sig,
"resource": request.url,
"requirements": {
"scheme": "exact",
"network": "algorand:wGHE2Pwdvd7S12BL5FaOP20EGYesN73ktiC1qzkkit8=",
"asset": "31566704",
"amount": PRICE_USDC,
"recipient": PAY_TO
}
})
if verify.status_code == 200 and verify.json().get("valid"):
# Settle the payment
requests.post(f"{FACILITATOR}/settle", json={
"paymentSignature": payment_sig,
"resource": request.url
})
# Return the actual service
return jsonify({"data": "Here's what you paid for!", "paid": True})
return jsonify({"error": "Invalid payment"}), 402
if __name__ == '__main__':
app.run(host='0.0.0.0', port=8080)
Before going to Mainnet, validate the full flow on Testnet:
algorand:SGO1GKSzyE7IEPItTxCByw9x8FmnrCDexi9/cOUJOiI=10458941/supported endpointComplete one full payment loop: request → 402 → pay → retry → 200 → USDC received.
x402-global-challenge tag to your endpoint configThis is where most entries fall short. The leaderboard is measured over an unannounced window in October, and real on-chain usage determines ranking.
Strategies that work:
@goplausible/algorand-mcp on npmThe submission form opens in September. You'll need:
| Type | Description | Best For |
|---|---|---|
| Standard Entry | One project, one endpoint, one price | Most developers. Keep it simple. One great endpoint beats ten mediocre ones |
| Composite Entry | Multiple endpoints sharing one payTo address, combined on the leaderboard | Teams building a suite of related tools (e.g., a crypto data toolkit with price, gas, and token-info endpoints) |
| Orchestrator Entry | Your product calls other teams' paid endpoints, exposes its own, and every downstream payment counts toward your total | Platforms, aggregators, and marketplaces. Your revenue = your usage + your downstream's usage |
| GoPlausible Endpoint | Method | Purpose |
|---|---|---|
/supported | GET | List supported networks, assets, and fee payer addresses |
/verify | POST | Verify a payment signature against requirements |
/settle | POST | Settle a verified payment on-chain (gasless — facilitator pays fees) |
/docs | GET | Interactive Swagger UI with full API reference |
/dashboard | GET | Public transparency dashboard with masked analytics |
opt_in transaction.x402-global-challenge in your config, you won't appear on the competition leaderboard.Algorand brings three advantages to agent micropayments:
Algorand is now one of only three chains (alongside Base/EVM and Solana) with full x402 protocol support — and the Global Challenge is designed to bootstrap the supply side with real, useful paid endpoints.
Published by minia2a.uk — the open marketplace for AI agent APIs with free trials on 299 services. Find your next paid endpoint or list your own at minia2a.uk/register.html.
Updated: August 5, 2026. Challenge details are current as of this date; check the official Algorand Foundation channels for any changes.