Access real-time and historical news feeds from the Gloria Data Platform via x402 micropayment.
What it does
This x402-enabled endpoint provides access to real-time and historical news feeds from the Gloria Data Platform, hosted on Questflow's agent infrastructure. The endpoint accepts a natural-language message as input and returns a text response from the agent. Payment is handled via the x402 protocol on the Base network using USDC (USD Coin), with a maximum cost of 0.1 USDC per request (100,000 units in 6-decimal USDC).
The agent is identified by the Questflow Resource Name (QRN) `qrn:agent:68a6fae188ee7586a198c086`. Questflow is a platform focused on autonomous AI agents that operate across onchain markets, but this particular agent is scoped to news data retrieval from the Gloria Data Platform. The interaction model is simple: POST a JSON body with an `input` string field containing your query, and receive a JSON response with a `response` string field.
Documentation is sparse — there is no OpenAPI spec, no dedicated docs page, and no detailed description of what news sources or historical depth the Gloria Data Platform covers. The output schema provided in the x402 challenge is minimal, describing only a single string input and string output. Users should expect a conversational agent interface rather than a structured data API.
Capabilities
Use cases
- —Querying recent news headlines on specific topics via natural language
- —Retrieving historical news data from the Gloria Data Platform
- —Integrating real-time news feeds into autonomous agent workflows
- —Paying per-query for news data without subscriptions using x402 micropayments
Fit
Best for
- —Agents needing on-demand news data with x402 micropayment support
- —Developers wanting pay-per-use news access without API key management
- —Onchain workflows that need real-time news context
Not for
- —Applications requiring structured/typed news data schemas (only returns free-text string)
- —High-volume bulk news ingestion (per-request payment model, max 1200s timeout)
- —Users who need detailed source attribution or filtering by news outlet
Quick start
curl -X POST https://api.questflow.ai/x402/agent/qrn:agent:68a6fae188ee7586a198c086 \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_token>" \
-d '{"input": "What are the latest headlines on crypto regulation?"}'Example
Request
{
"input": "What are the latest headlines on crypto regulation?"
}Response
{
"response": "Here are the latest headlines on crypto regulation: ..."
}Endpoint
Quality
The listing is based almost entirely on the x402 challenge metadata. There is no OpenAPI spec, no documentation page, no examples of actual responses, and no details about the Gloria Data Platform's coverage, sources, or historical depth. The input/output schema is minimal (single string in, single string out). Significant inference was required.
Warnings
- —No OpenAPI or dedicated documentation available — /docs, /api, /pricing, /README all return 404
- —The Gloria Data Platform is not described anywhere in the crawled material; its scope, sources, and data freshness are unknown
- —Output is unstructured free-text; no schema for structured news objects
- —Questflow's main site describes an AI clone/trading platform, not a news data service — the relationship to Gloria Data Platform is unclear
- —Response example is entirely inferred; actual output format may differ
Citations
- —x402 challenge specifies payment on Base network using USDC with maxAmountRequired of 100000https://api.questflow.ai/x402/agent/qrn:agent:68a6fae188ee7586a198c086
- —Description from x402 challenge: Access real-time and historical news feeds from the Gloria Data Platform | Powered by Questflowhttps://api.questflow.ai/x402/agent/qrn:agent:68a6fae188ee7586a198c086
- —Input schema requires a single string field 'input' and output returns a single string field 'response'https://api.questflow.ai/x402/agent/qrn:agent:68a6fae188ee7586a198c086
- —maxTimeoutSeconds is 1200https://api.questflow.ai/x402/agent/qrn:agent:68a6fae188ee7586a198c086
- —Questflow is a platform for autonomous AI agents operating across onchain marketshttps://api.questflow.ai