Pay-per-message AI agent endpoint on Questflow's swarm network (Base Sepolia testnet)
What it does
This x402-enabled endpoint exposes a conversational AI agent on Questflow's swarm infrastructure. Callers send a POST request with a text message in the `input` field and receive a text `response` from the agent. Payment is handled via the x402 protocol using USDC on the Base Sepolia testnet, with a maximum charge of 0.5 USDC per request (6-decimal token, so 500000 = 0.5 USDC).
Questflow is a platform for creating autonomous AI "Clones" that aggregate onchain markets (Polymarket, Pump.fun, OKX, Opinion Labs, etc.) to discover trading alpha, execute trades, and generate revenue. This particular endpoint is labeled "Personal use" and is identified by the swarm resource ID `qrn:swarm:68f9f4e6c87f09b65914893d`. The endpoint is live and returns a proper 402 challenge when called without payment.
Documentation is extremely sparse — there is no OpenAPI spec, no dedicated API docs page, and the only schema information comes from the x402 challenge's `outputSchema` field. The agent's specific capabilities, personality, or domain expertise are not described beyond the generic "Personal use" label. Callers should treat this as an experimental testnet endpoint.
Capabilities
Use cases
- —Sending paid chat messages to an autonomous AI agent
- —Integrating a pay-per-call conversational agent into an automated workflow
- —Testing x402 payment flows on Base Sepolia testnet
Fit
Best for
- —Developers experimenting with x402 payment protocol
- —Testing pay-per-message agent interactions on a testnet
- —Exploring Questflow's swarm agent infrastructure
Not for
- —Production workloads requiring mainnet settlement
- —Users needing detailed API documentation or SLAs
- —General-purpose LLM chat without crypto payment requirements
Quick start
curl -X POST https://api-dev.intra-tls2.dctx.link/x402/swarm/qrn:swarm:68f9f4e6c87f09b65914893d \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_token>" \
-d '{"input": "Hello, what can you do?"}'Example
Request
{
"input": "Hello, what can you do?"
}Response
{
"response": "I can help you with various tasks. How can I assist you today?"
}Endpoint
Quality
The endpoint is live (402 challenge confirmed) and has a minimal outputSchema, but there is no OpenAPI spec, no dedicated documentation, no usage examples, and the agent's purpose is described only as "Personal use." Almost all listing details are inferred from the x402 challenge payload and the Questflow landing page.
Warnings
- —Testnet only: payments use USDC on Base Sepolia, not mainnet
- —No API documentation or OpenAPI spec available
- —Agent purpose and capabilities are undocumented beyond 'Personal use' label
- —Response example is inferred/fabricated from the outputSchema; no real response was captured
- —The endpoint is on a dev subdomain (api-dev), suggesting it may be unstable or experimental
Citations
- —Endpoint returns a 402 challenge with x402Version 1 and accepts USDC on base-sepoliahttps://api-dev.intra-tls2.dctx.link/x402/swarm/qrn:swarm:68f9f4e6c87f09b65914893d
- —maxAmountRequired is 500000 (0.5 USDC with 6 decimals) and maxTimeoutSeconds is 1200https://api-dev.intra-tls2.dctx.link/x402/swarm/qrn:swarm:68f9f4e6c87f09b65914893d
- —Questflow aggregates Polymarket, Pump.fun, OKX, Opinion Labs and other onchain marketshttps://api-dev.intra-tls2.dctx.link
- —The outputSchema specifies a POST method with an 'input' string field and a 'response' string outputhttps://api-dev.intra-tls2.dctx.link/x402/swarm/qrn:swarm:68f9f4e6c87f09b65914893d