Research one supported Tamil reception comparison with separate source frames and exact lo
Research one supported Tamil reception comparison with separate source frames and exact locators from the pinned public atlas. No inferred ancestry, uninterrupted transmission, universal identity or full source text.
38000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-13
updated
Provider
www.mahastrategies.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xec84c1cd6602bbe387bc8e6f0d3c062f2762de28",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "38000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"dataClass": "public",
"expectedRegistryDigest": "sha256:ed0c6c8e7743d8af485a0d4d3426cddeef89b8eabc507dc56e8988d164c0a642",
"slug": "tirumal-from-hymn-title-to-reception"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"amountBaseUnits": "38000",
"boundaries": [
"Public or synthetic inputs only. Caller labels are declarations,…"
],
"inputDigest": "sha256:620b049f0f03bf587a7a6e2e620cb6c2a63c8fcbc8ba88f6a396b0f57…",
"offerId": "reception-lineage-retrieval",
"receiptDigest": "sha256:8554e2ec9067f31a24aa20853df1d799ae3f84719c9ce4c3a4bfee497…",
"result": {
"canonicalUrl": "https://www.mahastrategies.com/knowledge/religion/tamil-source-a…",
"evidence": [
{
"boundary": "A devotional poem establishes what its speaker praises and narra…",
"frame": "primary-text",
"locator": "Tirumāl poem headings and colophons",
"rightsBasis": "Project Madurai permits free distribution with its header intact…",
"sourceId": "paripatal-project-madurai",
"url": "https://www.projectmadurai.org/pm_etexts/utf8/pmuni0087.html"
}
],
"finding": "The Project Madurai Paripāṭal edition supplies named Tirumāl hym…",
"limitations": [
"The evidence set is literary and scholarly; it supplies no new a…"
],
"registryDigest": "sha256:ed0c6c8e7743d8af485a0d4d3426cddeef89b8eabc507dc56e8988d16…",
"relationship": "attributed-reception-comparison",
"title": "Tirumāl from hymn title to later reception",
"uninterruptedTransmissionProven": false
},
"version": "maha-microproducts/0.1"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"dataClass": {
"enum": [
"public",
"synthetic"
],
"type": "string"
},
"expectedRegistryDigest": {
"maxLength": 71,
"type": "string"
},
"slug": {
"maxLength": 160,
"minLength": 1,
"type": "string"
}
},
"required": [
"dataClass",
"slug",
"expectedRegistryDigest"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": false,
"properties": {
"amountBaseUnits": {
"enum": [
"38000"
],
"type": "string"
},
"boundaries": {
"maxItems": 128,
"minItems": 0,
"type": "array"
},
"inputDigest": {
"maxLength": 71,
"type": "string"
},
"offerId": {
"enum": [
"reception-lineage-retrieval"
],
"type": "string"
},
"receiptDigest": {
"maxLength": 71,
"type": "string"
},
"result": {
"type": "object"
},
"version": {
"enum": [
"maha-microproducts/0.1"
],
"type": "string"
}
},
"required": [
"version",
"offerId",
"amountBaseUnits",
"inputDigest",
"result",
"boundaries",
"receiptDigest"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"declaration-integrity": {
"canonicalResource": "https://www.mahastrategies.com/api/v1/micro/reception-lineage-retrieval",
"declarationDigest": "sha256:561b78c0e7f0ce9e5d76db6fc3de5295d666360ece95d4ec7dfafc51e87c6ebe",
"metadataVersion": "2026-08-10"
},
"maha-offer": {
"amount": "38000",
"asset": "USDC",
"assetDecimals": 6,
"canonicalResource": "https://www.mahastrategies.com/api/v1/micro/reception-lineage-retrieval",
"declarationInline": "compact",
"declarationUrl": "https://www.mahastrategies.com/api/discovery/x402-offers/reception-lineage-retrieval",
"fullSourceTextStored": false,
"maxRequestBytes": 32768,
"method": "POST",
"network": "eip155:8453",
"offerId": "reception-lineage-retrieval",
"payableInProduction": true,
"status": "available",
"verbatimExcerptsRetained": false
}
}Use it
curl
curl "https://www.mahastrategies.com/api/v1/micro/reception-lineage-retrieval" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://www.mahastrategies.com/api/v1/micro/reception-lineage-retrieval");
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://www.mahastrategies.com/api/v1/micro/reception-lineage-retrieval")
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/1435.json, and this resource appears in /discovery/resources and /discovery/search.