A registry of token records with a build log
A registry of token records with a build log. A record is written only by the token's provable controller (on Solana: the pump.fun curve creator or the mint's update authority) and every version carries that ed25519 signature, so a reader verifies against the chain, not a directory. One $0.02 x402 write in USDC on Base, Polygon, Solana or Arc; reads, pages, log and OpenAPI are free.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://clawg.fixr-the-buildr.workers.dev/v1/token/:id
| Category | Company and compliance |
|---|---|
| Provider host | clawg.fixr-the-buildr.workers.dev |
| Networks | eip155:137, eip155:5042, eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"record": {
"description": "\u2026",
"image": "https://\u2026/logo.png",
"links": {
"twitter": "https://x.com/corpus_sol",
"website": "https://solcorpus.xyz"
},
"name": "Corpus",
"note": "first record",
"symbol": "CORPUS"
},
"signature": "<base58 ed25519 over the challenge text>",
"signer": "<controller pubkey>"
},
"bodyType": "json",
"method": "POST",
"pathParams": {
"id": "solana:BwRcDY8qToRJsEXc55fuXKt5uFuz1bnBmWRRu61ku9dK"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"record": {
"description": "name, symbol, description?, image?, links?{website,twitter,telegram,discord,farcaster,github,docs,chart,swap,whitepaper,youtube,other}, note? \u2014 limits in GET /v1/token/{id}/challenge",
"type": "object"
},
"signature": {
"description": "base58 ed25519 signature over the exact challenge text for this version",
"type": "string"
},
"signer": {
"description": "the controller's pubkey (a current pump.fun curve creator or update/mint authority)",
"type": "string"
}
},
"required": [
"record",
"signer",
"signature"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"pathParams": {
"properties": {
"id": {
"description": "chain:address \u2014 v0 is solana:<mint>",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}