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 hosted on Questflow's swarm infrastructure. Callers send a text message via POST and receive a text response from the agent. Payment is handled through the x402 protocol using USDC on the Base Sepolia testnet, with a maximum charge of 0.5 USDC per request.
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 appears to be a single agent within Questflow's swarm system, identified by the QRN `qrn:swarm:68f89b6c88e91d0ba6c955be`. The endpoint is live and returns a valid 402 challenge on POST requests.
Documentation is extremely sparse. There is no OpenAPI spec, no dedicated docs page, and no detailed description of what this specific agent does beyond accepting a string input and returning a string response. The endpoint is on a dev subdomain (`api-dev`) and uses a testnet (Base Sepolia), suggesting this is a development/staging deployment rather than production.
Capabilities
Use cases
- —Sending chat messages to a Questflow AI agent and receiving text responses
- —Integrating an autonomous AI agent into workflows via pay-per-request x402 payments
- —Testing x402 payment flows on Base Sepolia testnet
Fit
Best for
- —Developers experimenting with x402 payment protocol on testnet
- —Agents that need a simple text-in/text-out conversational endpoint
- —Exploring Questflow's swarm agent infrastructure
Not for
- —Production workloads requiring mainnet payments and SLAs
- —Users needing detailed API documentation or guaranteed response schemas
- —High-throughput or low-latency chat applications
Quick start
curl -X POST https://api-dev.intra-tls2.dctx.link/x402/swarm/qrn:swarm:68f89b6c88e91d0ba6c955be \
-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 describing input/output fields, but there is no OpenAPI spec, no documentation, no usage examples, and the description is just "Personal use". The endpoint runs on a testnet (Base Sepolia), suggesting it is not production-ready. The response example is inferred, not observed.
Warnings
- —Endpoint is on Base Sepolia testnet — not suitable for production use
- —No API documentation available; the only schema comes from the x402 challenge
- —Hosted on a dev subdomain (api-dev), suggesting staging/development status
- —The agent's actual capabilities and behavior are unknown — 'Personal use' is the only description provided
- —Response example is inferred from the outputSchema, not from an actual observed response
Citations
- —The endpoint returns a valid 402 challenge with x402Version 1 on POSThttps://api-dev.intra-tls2.dctx.link/x402/swarm/qrn:swarm:68f89b6c88e91d0ba6c955be
- —Payment is in USDC on Base Sepolia with maxAmountRequired of 500000 (0.5 USDC)https://api-dev.intra-tls2.dctx.link/x402/swarm/qrn:swarm:68f89b6c88e91d0ba6c955be
- —Questflow is a platform for creating AI Clones that aggregate onchain marketshttps://api-dev.intra-tls2.dctx.link
- —The endpoint accepts a POST with a string 'input' field and returns a string 'response' field per the outputSchemahttps://api-dev.intra-tls2.dctx.link/x402/swarm/qrn:swarm:68f89b6c88e91d0ba6c955be