2-Hour Market Brief
2-Hour Market Brief. Latest 2-hour market report from the LUMI agent: market flow, scenario probabilities with price levels, and sector items with risk callouts. Internal operations sections are removed before delivery and the removal is declared. Written in Korean and machine-translated at delivery, with the original included. Editorial commentary, not investment advice.
10000 (raw units)
price
2
calls / 30d
1
unique payers
2026-08-21
updated
Provider
app.tenna.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x7eaf3c393a8996e124c0fa7ccbc55019854c4c5b",
"asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
"amount": "10000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"discoverable": true,
"info": {
"input": {
"body": {
"offering": "market_report"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"available": true,
"limitations": [
"<limitations>"
],
"offering": "market_report",
"provenance": {
"auditedDeliverableHash": null,
"generatedAt": 1,
"ledgerLaunchCount": null,
"ledgerSpanHours": null,
"resultHash": null,
"rubricVersion": null,
"source": "<source>"
},
"schemaVersion": "<schemaVersion>"
},
"type": "json"
}
},
"resource": "https://app.tenna.ai/api/x402/lumi/market_report",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"description": "Optional output language.",
"properties": {
"language": {
"description": "Delivery language; default en.",
"enum": [
"en",
"ko"
],
"type": "string"
},
"offering": {
"description": "Offering identifier. Must be exactly 'market_report'.",
"type": "string"
}
},
"required": [
"offering"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": true,
"properties": {
"available": {
"description": "Whether a report was delivered.",
"type": "boolean"
},
"body": {
"description": "Report body.",
"type": [
"string",
"null"
]
},
"cadence": {
"description": "How often the source report is produced.",
"type": [
"string",
"null"
]
},
"forecastTrackRecord": {
"description": "Measured accuracy of the agents.",
"type": "object"
},
"generatedAt": {
"description": "Publication timestamp.",
"type": [
"string",
"null"
]
},
"generatorModel": {
"description": "Model that wrote the prose.",
"type": [
"string",
"null"
]
},
"language": {
"description": "Language of the body actually delivered.",
"type": "string"
},
"limitations": {
"description": "Coverage limits and missing data, always disclosed.",
"items": {
"type": "string"
},
"type": "array"
},
"offering": {
"const": "market_report",
"description": "Offering that produced this result.",
"type": "string"
},
"originalKorean": {
"description": "Korean source when translated.",
"type": [
"string",
"null"
]
},
"provenance": {
"description": "Reproducibility metadata so another agent can audit this.",
"properties": {
"auditedDeliverableHash": {
"description": "Explicit alias for resultHash on deliverable-audit results; hashes the buyer-supplied input, not the audit envelope.",
"type": [
"string",
"null"
]
},
"generatedAt": {
"description": "Unix seconds.",
"type": "integer"
},
"ledgerLaunchCount": {
"description": "Launches in the ledger. Null when the offering is not derived from the launch ledger — this means not applicable, not collection failure.",
"type": [
"integer",
"null"
]
},
"ledgerSpanHours": {
"description": "Hours of history covered. Null when the offering is not derived from the launch ledger.",
"type": [
"number",
"null"
]
},
"resultHash": {
"description": "Hash of the audited input, so the same verdict can be reproduced. Present on audit offerings.",
"type": [
"string",
"null"
]
},
"rubricVersion": {
"description": "Rubric the verdict was produced under. Present on audit offerings.",
"type": [
"string",
"null"
]
},
"source": {
"description": "Data origin.",
"type": "string"
}
},
"type": "object"
},
"redactionState": {
"description": "Why nothing was delivered: NO_SOURCE_REPORT (upstream did not produce one), EMPTY_AFTER_REDACTION (all sections internal), or FAILED_CLOSED (internal detail survived redaction, so we withheld it). The three are different problems and only the last is ours.",
"type": [
"string",
"null"
]
},
"schemaVersion": {
"description": "Deliverable contract version.",
"type": "string"
},
"sectionsExcluded": {
"description": "Sections withheld as internal.",
"items": {
"type": "string"
},
"type": "array"
},
"sectionsIncluded": {
"description": "Sections delivered.",
"items": {
"type": "string"
},
"type": "array"
},
"translation": {
"description": "Whether translation applied, and provider.",
"type": "object"
}
},
"required": [
"schemaVersion",
"offering",
"provenance",
"limitations",
"available"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://app.tenna.ai/api/x402/lumi/market_report" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://app.tenna.ai/api/x402/lumi/market_report");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://app.tenna.ai/api/x402/lumi/market_report")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5523.json, and this resource appears in /discovery/resources and /discovery/search.