Skip to main content
GET
On-chain audit flags

Path Parameters

mint
string
required

Response

Audit flags. indexed: false (with all-null flags) is the sentinel for a valid-but-unindexed mint — not an error.

On-chain authority and LP-burn checks for a token, served by a dedicated service (CT106) at the root path /tokens/{mint}/audit (not under /api/v1).

A valid base58 mint that has not been indexed yet still returns HTTP 200 with indexed: false and every flag/value null (the unindexed sentinel) — it does not 404. A malformed (non-base58) mint returns HTTP 400.

mint
string
required
indexed
boolean
required

false when the mint is valid but not yet indexed — in that case mint_revoked, freeze_revoked, lp_burnt, and computed_at are all null and top10_pct.status is no_holder_data. true once audit data has been computed.

lp_burnt
boolean | null

True if the dominant LP token is burnt/locked. null when not indexed/computed. This is the boolean roll-up; see lock for the structured signal.

lock
object | null

Structured LP-lock signal. null when there is no structured signal yet (same meaning as a null lp_burnt). When present it distinguishes how the LP is secured and how confident we are.

mint_revoked
boolean | null

null when not indexed/computed.

freeze_revoked
boolean | null

null when not indexed/computed.

top10_pct
object

Top 10 holders' share of supply, with explicit status. Always present (even when the value isn't computable yet).

computed_at
integer | null

Unix epoch seconds. null when not indexed/computed.