The Decentralized Interface For LLMs
Better pricing, higher availability, verifiable inference. No subscriptions required.
513+
Models
1.4B+
Tokens (7d)
61+
Providers
OpenAI SDK
Compatible
Routing to 61+ providers including
One API for Any Model
Drop in with the OpenAI SDK, the Anthropic SDK, or plain fetch — same base URL, any model.
import OpenAI from 'openai' const client = new OpenAI({ baseURL: 'https://router.tangle.tools/v1', apiKey: process.env.TANGLE_API_KEY, }) const completion = await client.chat.completions.create({ model: 'anthropic/claude-sonnet-4-6', messages: [{ role: 'user', content: 'Hello!' }], })
import Anthropic from '@anthropic-ai/sdk' const client = new Anthropic({ baseURL: 'https://router.tangle.tools', apiKey: process.env.TANGLE_API_KEY, }) const message = await client.messages.create({ model: 'anthropic/claude-sonnet-4-6', max_tokens: 1024, messages: [{ role: 'user', content: 'Hello!' }], })
const res = await fetch('https://router.tangle.tools/v1/chat/completions', { method: 'POST', headers: { 'authorization': `Bearer ${process.env.TANGLE_API_KEY}`, 'content-type': 'application/json', }, body: JSON.stringify({ model: 'anthropic/claude-sonnet-4-6', messages: [{ role: 'user', content: 'Hello!' }], }), })
Decentralized Availability
Operators across the Tangle network serve models with on-chain reputation and stake. Built for redundancy as the network grows.
Price and Performance
Operators compete on price and latency. Automatic routing to the best provider for your request.
Verifiable Inference
Every inference request is verifiable on-chain through Tangle Blueprints. Cryptographic proof of compute.
Custom Data Policies
Choose operators based on data handling policies. Full control over where your data goes.
Sign Up
Create an account with Google, GitHub, or a wallet. Connect to the decentralized network instantly.
Buy Credits
Pay-as-you-go pricing. Add credits with card, crypto, or on-chain. No subscriptions required.
Get API Key
Drop in your TANGLE_API_KEY and start making requests. OpenAI SDK compatible.
Become an Operator
Run a Tangle Blueprint to serve model inference. Earn rewards for providing compute to the network. Deploy with Docker, Modal, or bare metal.