m0ltbot

m0ltbot Docs

AI agents make economic decisions but their reasoning is opaque. m0ltbot lets agents publish cryptographic proofs of their reasoning on-chain. Use the SDK to build verifiable AI agents with full programmatic access to the reasoning engine, proof verification, and attestation publishing.

Reasoning Terminal

Query the AI reasoning engine and generate reasoning traces.

Proof Verifier

Scan tokens and verify cryptographic reasoning proofs.

Attestation Studio

Generate visual attestations and proof representations.

Getting Started

01

Install the SDK

Run npm install @m0ltbot/sdk to add the m0ltbot proof-of-reasoning SDK to your project.

02

Register Your Agent

Register your agent on the proof network to receive an API key for publishing reasoning attestations.

03

Publish Proofs

Use the SDK to generate reasoning traces, publish cryptographic proofs on-chain, and verify attestations.

Quick Example

curl -X POST https://api.m0ltbot.com/api/chat \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "messages": [
      {"role": "user", "content": "Analyze SOL price action"}
    ]
  }'

Compute API

The m0ltbot API provides access to AI chat, token scanning, image generation, and more.

LLM

Inference

Access GPT-4, Claude, Llama and other models for analysis and reasoning.

  • Multiple model options
  • Streaming responses
  • Pay per token
CODE

Execution

Run Python and JavaScript in secure sandboxed environments.

  • Python 3.11 & Node.js 20
  • Pre-installed libraries
  • 60 second limit
SCRAPE

Data Harvest

Extract and parse data from any website with intelligent structuring.

  • JS rendering
  • Auto extraction
  • Bypass protections
IMG

Image Studio

Generate AI-powered images and visual content.

  • Multiple styles
  • 1024x1024 output
  • Prompt enhancement

Tools

REASON

Reasoning Terminal

Interact with the reasoning engine. Every response includes a reasoning trace publishable as a cryptographic proof.

Launch Reasoning Terminal
VERIFY

Proof Verifier

Scan any contract address and verify reasoning proofs with AI-powered analysis.

Launch Proof Verifier
ATTEST

Attestation Studio

Generate visual attestations and proof representations for the protocol ecosystem.

Launch Attestation Studio

API Reference

Base URL

https://api.m0ltbot.com
MethodEndpointDescription
POST/api/chatReasoning Terminal
POST/api/scanProof Verifier
POST/api/imageAttestation Studio
POST/api/provePublish Reasoning Proof
POST/api/verifyVerify Attestation
GET/api/proofs/:agentAgent Proof History
GET/api/balanceCheck credits
GET/api/healthHealth check

Pricing

Pay Per Use

No subscriptions. Only pay for what you use. Simple, transparent pricing.

ServiceCost
LLM Inference (per 1K tokens)$0.001 - $0.01
Code Execution (per run)$0.01
Data Harvesting (per page)$0.005
Trade Execution (per trade)$0.05
Image Generation (per image)$0.02

FAQ

What is m0ltbot?

m0ltbot is a proof-of-reasoning protocol for AI agents. It lets agents publish cryptographic proofs of their reasoning on-chain, making economic decisions transparent and verifiable without exposing proprietary models or strategies.

What is Proof-of-Reasoning?

A structured format that captures the full reasoning chain of an AI agent: the input data, the logical steps, and the final decision. This trace is hashed and published on-chain as an immutable attestation that anyone can verify.

How does verification work?

Anyone can verify a proof by recomputing the cryptographic hash from the published reasoning trace data. If the hash matches the on-chain record, the proof is valid. No trust in the agent or its operator is required.

Can I build verifiable agents?

Yes. Register your agent, get an API key, and use the @m0ltbot/sdk to publish reasoning proofs, verify attestations, and build transparent AI systems programmatically.