Query Alpha Vantage stock market data via an x402-payable agent endpoint on Base Sepolia.
What it does
This endpoint exposes an Alpha Vantage API MCP server as an x402-payable agent, hosted by Questflow. It accepts a natural-language text input and returns a string response, enabling LLMs and agentic workflows to retrieve real-time and historical stock market data without managing API keys directly. Payment is handled via the x402 protocol using USDC on the Base Sepolia testnet.
The agent is accessed by sending a POST request with an `input` field (your message/query) and including an `X-PAYMENT` header that satisfies the x402 challenge. The maximum payment required per call is 100,000 units of the USDC asset (contract `0x036CbD53842c5426634e7929541eC2318f3dCF7e`) on Base Sepolia, with a maximum timeout of 1,200 seconds. The response is a JSON object containing a `response` string field.
Documentation is minimal. There is no OpenAPI spec, no dedicated docs page, and no detailed description of which Alpha Vantage endpoints or functions are available through this agent. The hosting platform (Questflow / intra-tls2.dctx.link) is primarily marketed as an AI clone trading platform, and this particular agent appears to be one of many deployable agents on that infrastructure. Because the network is Base Sepolia (a testnet), this endpoint is likely in a development or preview state and should not be relied upon for production workloads.
Capabilities
Use cases
- —Querying real-time stock quotes via natural language from an AI agent
- —Retrieving historical stock price data within an agentic workflow
- —Integrating stock market lookups into LLM tool-use pipelines with x402 micropayments
Fit
Best for
- —Developers experimenting with x402 payment-gated agent APIs on testnet
- —AI agent builders needing stock market data as a tool
- —Prototyping agentic financial research workflows
Not for
- —Production financial applications requiring guaranteed uptime and mainnet settlement
- —Users needing direct, structured Alpha Vantage API access with full endpoint control
- —Low-latency trading systems (max timeout is 1200 seconds)
Quick start
curl -X POST https://api-dev.intra-tls2.dctx.link/x402/agent/qrn:agent:68dba0e582f61ca4a1686963 \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_token>" \
-d '{"input": "What is the current price of AAPL?"}'Example
Request
{
"input": "What is the current price of AAPL?"
}Response
{
"response": "The current price of AAPL (Apple Inc.) is $198.50 as of the latest trading session."
}Endpoint
Quality
No OpenAPI spec, no docs page, no detailed capability list, and the endpoint runs on a testnet (Base Sepolia). The only schema information comes from the x402 challenge's outputSchema. The response example is entirely inferred.
Warnings
- —Endpoint is on Base Sepolia (testnet) — likely not production-ready
- —No OpenAPI or documentation available; all capability details are inferred from the x402 challenge
- —The hosting platform (Questflow) markets itself as an AI clone trading platform; the Alpha Vantage agent is a secondary offering with unclear maintenance status
- —Exact Alpha Vantage functions/endpoints accessible through this agent are undocumented
- —Example response is fabricated for illustration — actual format may differ
Citations
- —The x402 challenge requires USDC payment on Base Sepolia with maxAmountRequired of 100000 and maxTimeoutSeconds of 1200https://api-dev.intra-tls2.dctx.link/x402/agent/qrn:agent:68dba0e582f61ca4a1686963
- —The agent accepts a POST with an 'input' string field and returns a 'response' string fieldhttps://api-dev.intra-tls2.dctx.link/x402/agent/qrn:agent:68dba0e582f61ca4a1686963
- —Description states it enables LLMs and agentic workflows to interact with real-time and historical stock market datahttps://api-dev.intra-tls2.dctx.link/x402/agent/qrn:agent:68dba0e582f61ca4a1686963
- —Questflow is marketed as an AI Clone platform aggregating onchain marketshttps://api-dev.intra-tls2.dctx.link