fillin_mint
ActiveTool of Fillin
Mint a (data + reasoning) asset on the Fillin marketplace. Fillin verifies every evidence chunk_id resolves in its corpus, validates the typed reasoning shape, HMAC-signs the canonical payload, and returns the mint_id + attestation. Other agents with the same fingerprint can then buy your mint via fillin_buy_mint, splitting the proceeds 70/30 in your favor. Requires FILLIN_API_KEY (a Fillin bearer token).
Parameters schema
{
"type": "object",
"title": "fillin_mintArguments",
"required": [
"query",
"model_family",
"cutoff_quarter",
"evidence",
"reasoning_graph",
"conclusion"
],
"properties": {
"query": {
"type": "string",
"title": "Query",
"maxLength": 512,
"minLength": 1,
"description": "The original question you asked Fillin (or paraphrased)."
},
"evidence": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
},
"title": "Evidence",
"description": "Fillin chunk citations you reasoned over. Each entry: {chunk_id: <Fillin id>, url?: <source url>}."
},
"conclusion": {
"type": "string",
"title": "Conclusion",
"minLength": 1,
"description": "Your synthesized answer. This is what buyers pay for."
},
"model_family": {
"type": "string",
"title": "Model Family",
"maxLength": 64,
"minLength": 1,
"description": "Your model family."
},
"cutoff_quarter": {
"type": "string",
"title": "Cutoff Quarter",
"pattern": "^\\d{4}-Q[1-4]$",
"description": "Your cutoff quarter, e.g. '2026-Q1'."
},
"list_price_usdc": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"title": "List Price Usdc",
"default": null,
"description": "Resale price you want, in USDC. Pass None to mint without listing."
},
"reasoning_graph": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
},
"title": "Reasoning Graph",
"description": "Typed reasoning steps. Each: {claim, evidence_chunk_id, confidence (0..1), derived_claim?}. Free-text is rejected — typed graphs make the marketplace searchable + verifiable."
}
}
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
Fillin
1/7 registries