Skip to content
@luziadev

Luzia

Building Luzia Crypto API

Luzia

One API for crypto prices across every major exchange.

Website · Documentation · Twitter · LinkedIn


Stop juggling five exchange APIs

Every exchange has its own API, its own format, its own quirks. Luzia gives you a single, consistent endpoint for real-time prices from Binance, Coinbase, Kraken, OKX, and Bybit - so you can focus on building, not on parsing.

curl https://api.luzia.dev/v1/ticker/binance/BTC-USDT \
  -H "Authorization: Bearer lz_your_api_key"
{
  "exchange": "binance",
  "symbol": "BTC-USDT",
  "price": "67432.51",
  "bid": "67432.50",
  "ask": "67432.52",
  "volume": "12453.82",
  "timestamp": "2026-02-10T12:00:00.000Z"
}

Why Luzia

Unified format — Same request, same response shape, regardless of exchange. No more writing adapters for each platform.

Real-time data — Prices are streamed from exchanges via WebSocket and cached with sub-second freshness. You always get the latest quote.

Built for developers — Clean REST API, consistent error handling, rate limit headers in every response. Predictable and easy to integrate.

TypeScript SDK — First-class TypeScript support with @luziadev/sdk. Full type safety, auto-generated from our OpenAPI spec.

AI-ready — Built-in MCP server lets AI assistants like Claude query live crypto prices directly.

Use Cases

  • Trading bots — Compare prices across exchanges to find arbitrage opportunities
  • Portfolio trackers — Display real-time values from all your exchanges in one place
  • Analytics dashboards — Aggregate market data without managing multiple connections
  • DeFi applications — Reference pricing from centralized exchanges for your protocols

Get Started in 30 Seconds

Install the SDK:

npm install @luziadev/sdk

Fetch a price:

import { Luzia } from "@luziadev/sdk";

const luzia = new Luzia({ apiKey: "lz_your_api_key" });

const ticker = await luzia.getTicker("binance", "BTC-USDT");
console.log(ticker.price); // "67432.51"

Or call the API directly — no SDK required. Any HTTP client works.

Supported Exchanges

Binance , Coinbase , Kraken, OKX and Bybit

Pricing

Free Pro
Price $0/mo $22.99/mo
Requests/min 100 1,000
Requests/day 5,000 20,000
Exchanges All 5 All 5
SDK access Yes Yes
MCP server Yes Yes

Start free at luzia.dev. No credit card required.

Links

  • Documentation — API reference, guides, and examples
  • Official SDK — TypeScript SDK with full type safety
  • Official MCP — MCP Server for Claude Code integration
  • Official Skill — Official Claude Code Skill
  • Status — Uptime and exchange availability
  • Contact — Questions, partnerships, enterprise plans

Built with care in Europe.

Pinned Loading

  1. skill skill Public

    Claude Code skill for real-time cryptocurrency prices via Luzia API

    JavaScript

Repositories

Showing 5 of 5 repositories

Top languages

Loading…

Most used topics

Loading…