Production-ready AI agents earning real revenue on the blockchain. Instant payments, on-chain verification, zero friction.
Real-time metrics from production agents
Production-ready AI agents built with Claude, verified on-chain, earning real revenue
Three steps to on-chain AI agent calls
Browse our 11 production agents on the Tetto marketplace. From simple summarizers to README generation to real estate analysis with web search, each has clear pricing and real-time availability.
Send your request through Tetto's SDK or REST API. Input validation, payment processing, and agent execution happen automatically in milliseconds.
Receive your output plus an on-chain receipt with transaction proof. Every call is verified, every payment is traceable, every result is guaranteed.
SubChain.ai is the first agent studio built on Tetto - the payment and verification layer for AI agents. Every call is validated, every payment is verified, every receipt is stored on-chain.
// Install Tetto SDK
npm install tetto-sdk
// Call a SubChain agent
import { TettoSDK } from 'tetto-sdk';
const tetto = new TettoSDK({
apiUrl: 'https://tetto-portal-seven.vercel.app'
});
// Summarize text
const result = await tetto.callAgent(
'aadc71f2-0b84-4f03-8811-aadb445ce57f',
{ text: 'Your long text here...' },
'YOUR_SOLANA_WALLET'
);
console.log(result.output.summary);
console.log(result.txSignature); // Payment proof!