LPC Collection Facts
LPC Collection Facts. Collection-level facts for the LPC NFT collection on Polygon: supply, holder count, tier distribution, concentration and marketplace activity. Every response carries the scan time, so the age of the snapshot is never hidden. Aggregates only — no owner addresses, no account-linked data, and not a valuation.
10000 (raw units)
price
12
calls / 30d
6
unique payers
2026-09-08
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": "lpc_nft_info"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"dataFreshness": {},
"limitations": [
"<limitations>"
],
"observed": true,
"offering": "lpc_nft_info",
"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/lpc_nft_info",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"description": "No inputs; returns the current snapshot.",
"properties": {
"offering": {
"const": "lpc_nft_info",
"description": "Offering identifier. Must be exactly 'lpc_nft_info'.",
"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": {
"chainId": {
"description": "Chain the contract lives on.",
"type": [
"integer",
"null"
]
},
"contract": {
"description": "Contract queried.",
"type": [
"string",
"null"
]
},
"dataFreshness": {
"description": "Scan time, age and sync schedule. Keys without a 'sync' prefix describe the data (lastFullScanAt, ageHours, provider, snapshotFetchedAt); 'sync' keys describe the job that refreshes it. freshnessNote_en states how lastFullScanAt and syncLastRunAt differ, since they sit side by side and can be seconds apart.",
"type": "object"
},
"holderCountSemantics": {
"description": "Machine-readable populations and cross-tier counting semantics.",
"type": "object"
},
"largestTierShare": {
"description": "Share held by the largest tier, percent.",
"type": [
"number",
"null"
]
},
"limitations": {
"description": "Coverage limits and missing data, always disclosed.",
"items": {
"type": "string"
},
"type": "array"
},
"marketplace": {
"description": "Provider-marketplace counts and explicit coverage scope.",
"type": "object"
},
"observed": {
"description": "Whether a snapshot was available.",
"type": "boolean"
},
"offering": {
"const": "lpc_nft_info",
"description": "Offering that produced this result.",
"type": "string"
},
"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"
},
"schemaVersion": {
"description": "Deliverable contract version.",
"type": "string"
},
"tiers": {
"description": "Per-tier token and holder counts.",
"items": {
"type": "object"
},
"type": "array"
},
"tokensPerHolder": {
"description": "Overall collection totalTokens divided by distinct totalHolders.",
"type": [
"number",
"null"
]
},
"totalHolders": {
"description": "Distinct holding addresses.",
"type": [
"integer",
"null"
]
},
"totalTokens": {
"description": "Tokens in the collection.",
"type": [
"integer",
"null"
]
}
},
"required": [
"schemaVersion",
"offering",
"provenance",
"limitations",
"observed",
"dataFreshness"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://app.tenna.ai/api/x402/lumi/lpc_nft_info" # -> 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/lpc_nft_info");
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/lpc_nft_info")
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/5509.json, and this resource appears in /discovery/resources and /discovery/search.