Developers
Build on the open network.
Open models behind OpenAI-compatible APIs, identity and payments for your users and agents, and a settlement ledger that runs EVM, SVM and DAML. One network, one set of APIs, priced by an open market.
Quick start
Your first request in three steps.
- 01
Create your wallet
Open the console and sign in with a passkey. It creates your Tenzro identity and wallet, with no seed phrase, and lets you claim TNZO from the faucet to get started.
Open the console - 02
Pick a model
List the models the network serves, or browse the registry.
curl https://rpc.tenzro.xyz/v1/models - 03
Call it
Send an OpenAI-compatible request. Pay with an API key, or per request over HTTP 402 with x402 or MPP.
curl
curl https://rpc.tenzro.xyz/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-Tenzro-Api-Key: $TENZRO_API_KEY" \
-d '{
"model": "qwen3-14b",
"messages": [{ "role": "user", "content": "Hello from Network 1" }]
}'Existing OpenAI clients
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://rpc.tenzro.xyz/v1",
apiKey: "unused",
defaultHeaders: { "X-Tenzro-Api-Key": process.env.TENZRO_API_KEY },
});Tenzro CLI
Wallets, identities, agents, models, payments and node management from the terminal.DocsTypeScript SDK
Typed client for the network: identity, wallets, inference, payments, agents and the ledger.DocsRust SDK
Async Rust client with the same surface as the TypeScript SDK.DocsAPIs
JSON-RPC (EVM-compatible plus the tenzro_ namespace), a REST web API, and OpenAI-compatible inference endpoints.DocsMCP servers
Give any MCP-capable assistant or agent access to the network over Streamable HTTP.DocsA2A
Agent-to-agent protocol endpoint, with signed agent cards for discovery.Docs
TypeScript
import { TenzroClient } from "tenzro-sdk";
const client = new TenzroClient({ endpoint: "https://rpc.tenzro.xyz", apiEndpoint: "https://api.tenzro.xyz" });
const height = await client.getBlockNumber();
console.log("Network 1 height", height);Endpoints
Public endpoints.
- JSON-RPC
- https://rpc.tenzro.xyz
- EVM-compatible plus the tenzro_ namespace, and the OpenAI-compatible /v1 routes
- Web API
- https://api.tenzro.xyz
- Verification, status and the faucet
- MCP
- https://mcp.tenzro.xyz/mcp
- Streamable HTTP; OAuth 2.1 with DPoP for write tools
- A2A
- https://a2a.tenzro.xyz
- Agent-to-agent protocol with signed agent cards
Learn
Guides for what you are building.
Get involved
Building something on Tenzro?
Tell us what you are building. We help developers and researchers with capacity, integration and launch.
- OperatorRun a nodePut a GPU, a homelab or a data centre on the network and get paid in TNZO for the work it serves.Apply
- DeveloperBuild on the networkOpen models, OpenAI-compatible APIs, identity and payments in one stack, priced by an open market.Apply
- ResearcherTrain and experimentRun training across distributed clusters, with every round replayable from its seed.Apply
- PartnerPartner with TenzroIntegration, technical support and go-to-market partners who bring operators and builders onto the network.Apply