Skip to content
Documentation

Everything you need to run work on Robinhood Chain.

Start with the execution model, then move to the guides and API reference. The documentation tracks the platform as each phase ships.

Quick Start

From a clone to a first execution.

Two servers and one request. There is nothing to install and no credential to present — the local service accepts every request unauthenticated.

bash
# start the API
cd backend && uvicorn app.main:app     # http://127.0.0.1:8000

# start the console
npm run dev                            # http://localhost:3000

# submit a request — the router infers the target from the text
curl -X POST http://127.0.0.1:8000/api/v1/execute \
  -H "Content-Type: application/json" \
  -d '{ "request": "audit the site robinhood.com" }'

Sections

Documentation structure

The reference is organised around what you are trying to do, not around the internals of the platform.

Introduction

What Molthood is, the problem it solves, and how an execution platform differs from a prompt interface.

  • What is Molthood
  • Execution model
  • Evidence and sources
  • Glossary

Quick Start

Run the API and the console locally, then take a request from submission to a finished analysis.

  • Running the service
  • Your first analysis
  • Reading the evidence
  • Configuring keys

Guides

How the pieces fit: what each agent collects, how routing picks one, and what happens when a source is unavailable.

  • The agent roster
  • How routing decides
  • Degrading honestly
  • Rate limits

API

The HTTP surface behind the console — every route, its parameters, and the response contract.

  • Analysis routes
  • Chain data
  • Execution history
  • Platform status

Examples

Requests you can paste into a terminal right now, against the running service.

  • Analyze a token
  • Audit a website
  • Free-form routing
  • Chain overview