Skip to content
Tenzro
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.

  1. 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
  2. 02

    Pick a model

    List the models the network serves, or browse the registry.

    curl https://rpc.tenzro.xyz/v1/models
  3. 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 },
});
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