Pay-per-message AI agent endpoint on Questflow's swarm network via x402 micropayments
What it does
This x402-enabled endpoint exposes a Questflow "swarm" agent that accepts a text message and returns a text response, paid per-request with USDC on Base Sepolia. The endpoint follows the x402 payment protocol: callers must include an X-PAYMENT header with a valid payment proof. Each request costs up to 0.50 USDC (500000 units of the USDC contract at 0x036CbD53842c5426634e7929541eC2318f3dCF7e on base-sepolia). The agent accepts a POST body with a single required field "input" (string) and returns a JSON object containing a "response" (string).
Questflow is a platform for creating autonomous AI "clones" that aggregate onchain markets (Polymarket, Pump.fun, OKX, Opinion Labs) for trading, signal generation, and revenue earning. This particular endpoint is labeled "Personal use" and appears to be a development/testnet deployment (api-dev subdomain, Base Sepolia testnet). No OpenAPI spec, dedicated docs, or pricing page was found beyond the x402 challenge metadata. The maximum timeout per request is 1200 seconds (20 minutes), suggesting the agent may perform non-trivial processing before responding.
Because this is a dev-environment endpoint on a testnet, it should be treated as experimental. There is no documentation beyond the x402 challenge schema and the Questflow marketing site. The actual capabilities of the underlying agent are unspecified — it could be a general-purpose chat agent or a market-focused assistant.
Capabilities
Use cases
- —Sending a text query to a Questflow AI agent and receiving a response via x402 micropayment
- —Integrating a pay-per-use AI agent into an automated pipeline on Base Sepolia testnet
- —Testing x402 payment protocol flows with a live agent endpoint
Fit
Best for
- —Developers experimenting with x402 payment-gated AI agents
- —Testing micropayment-based agent interactions on Base Sepolia
- —Prototyping agent-to-agent communication with USDC payments
Not for
- —Production workloads requiring mainnet settlement and SLAs
- —Users needing detailed API documentation or guaranteed response schemas
- —Free or unauthenticated AI chat access
Quick start
curl -X POST https://api-dev.intra-tls2.dctx.link/x402/swarm/qrn:swarm:68f6fe81e5045b65fa7766cf \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <your-x402-payment-proof>" \
-d '{"input": "What markets are trending today?"}'Example
Request
{
"input": "What markets are trending today?"
}Response
{
"response": "Currently trending: Polymarket's Fed rate decision market is seeing high volume, and several new meme tokens launched on Pump.fun in the last hour."
}Endpoint
Quality
No OpenAPI spec, no dedicated documentation, no examples beyond the x402 challenge metadata. The endpoint is on a dev subdomain using a testnet. The only schema information comes from the x402 challenge's outputSchema. The example response is entirely fabricated for illustration since no real response was captured.
Warnings
- —Development/testnet endpoint (api-dev subdomain, Base Sepolia) — not suitable for production use
- —No OpenAPI spec or API documentation found; /docs, /api, /pricing, /README all return 404
- —Example response is inferred/fabricated — no actual response was captured during probing
- —Agent capabilities and behavior are unspecified beyond accepting a string input and returning a string response
- —Maximum timeout of 1200 seconds suggests potentially very long response times
Citations
- —x402 challenge requires USDC payment on base-sepolia with maxAmountRequired of 500000https://api-dev.intra-tls2.dctx.link/x402/swarm/qrn:swarm:68f6fe81e5045b65fa7766cf
- —USDC asset contract is 0x036CbD53842c5426634e7929541eC2318f3dCF7ehttps://api-dev.intra-tls2.dctx.link/x402/swarm/qrn:swarm:68f6fe81e5045b65fa7766cf
- —Questflow aggregates Polymarket, Pump.fun, OKX, Opinion Labs and other onchain marketshttps://api-dev.intra-tls2.dctx.link
- —maxTimeoutSeconds is 1200https://api-dev.intra-tls2.dctx.link/x402/swarm/qrn:swarm:68f6fe81e5045b65fa7766cf
- —Description in x402 challenge is 'Personal use | Powered by Questflow'https://api-dev.intra-tls2.dctx.link/x402/swarm/qrn:swarm:68f6fe81e5045b65fa7766cf