Pay-per-message AI agent on Questflow's swarm network via x402 micropayments
What it does
This x402 endpoint exposes a Questflow "swarm" agent for personal use. It accepts a text message via HTTP POST and returns a text response from the agent. Payment is handled inline using the x402 protocol: callers must attach a USDC micropayment (on Base Sepolia testnet) in the X-PAYMENT header to unlock each request.
Questflow is a platform for creating autonomous AI "Clones" that aggregate onchain markets (Polymarket, Pump.fun, OKX, Opinion Labs, etc.), discover trading alpha, and execute trades. This particular endpoint is labeled "Personal use" and is discoverable on the Questflow swarm network under the resource identifier `qrn:swarm:68f9d6e4d73a623984833433`. The maximum payment required per call is 500,000 units of USDC (likely 0.50 USDC given 6 decimals) on the Base Sepolia network, with a timeout of up to 1,200 seconds.
Documentation beyond the x402 challenge and the Questflow landing page is not available. There is no OpenAPI spec, no dedicated API docs page, and the endpoint's exact agent capabilities (e.g., which markets it covers, what kinds of queries it handles) are not documented. The schema is minimal: send a JSON body with an `input` string field and receive a JSON response with a `response` string field.
Capabilities
Use cases
- —Querying an AI agent about onchain market conditions or trading alpha
- —Integrating a pay-per-message AI assistant into an automated trading pipeline
- —Testing x402 micropayment flows on Base Sepolia with a live agent endpoint
Fit
Best for
- —Developers experimenting with x402 payment protocol on testnet
- —Users wanting on-demand AI agent responses about crypto markets
- —Agent-to-agent communication within the Questflow swarm network
Not for
- —Production trading with real funds (this uses Base Sepolia testnet)
- —Users needing detailed API documentation or guaranteed SLAs
- —Bulk or high-throughput batch processing (1200s timeout per request)
Quick start
curl -X POST https://api-dev.intra-tls2.dctx.link/x402/swarm/qrn:swarm:68f9d6e4d73a623984833433 \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <your-x402-payment-token>" \
-d '{"input": "What are the top prediction market opportunities right now?"}'Example
Request
{
"input": "What are the top prediction market opportunities right now?"
}Response
{
"response": "Based on current scanning, the top opportunities include..."
}Endpoint
Quality
The endpoint is live (402 challenge confirmed) with a clear outputSchema, but there is no OpenAPI spec, no dedicated documentation, and the agent's actual capabilities are undocumented. The description and use cases are largely inferred from the Questflow landing page and the x402 challenge metadata.
Warnings
- —Uses Base Sepolia testnet — not production/mainnet USDC
- —No API documentation or OpenAPI spec available
- —Agent capabilities and response quality are unknown — 'Personal use' label is vague
- —Max timeout of 1200 seconds suggests potentially slow responses
Citations
- —Payment is 500,000 units of USDC on Base Sepolia with asset address 0x036CbD53842c5426634e7929541eC2318f3dCF7ehttps://api-dev.intra-tls2.dctx.link/x402/swarm/qrn:swarm:68f9d6e4d73a623984833433
- —Questflow aggregates Polymarket, Pump.fun, Opinion Labs, OKX and other onchain marketshttps://api-dev.intra-tls2.dctx.link
- —The endpoint accepts POST with an 'input' string field and returns a 'response' string fieldhttps://api-dev.intra-tls2.dctx.link/x402/swarm/qrn:swarm:68f9d6e4d73a623984833433
- —Max timeout is 1200 seconds per the x402 challengehttps://api-dev.intra-tls2.dctx.link/x402/swarm/qrn:swarm:68f9d6e4d73a623984833433