Skip to Content

Longbridge Developers

Powering

Real-time market data, trading, and financial intelligence — delivered through AI Skill, CLI, MCP, SDK and OpenAPI for developers worldwide.

Platform Architecture

One gateway, every access method — from SDK to real-time WebSocket streams

Developer Tools

Everything you need to build, test, and ship financial applications

Longbridge CLI

AI-native command-line tool covering every OpenAPI

CLI Documentation
brew install --cask longbridge/tap/longbridge-terminal

AI Skill

Unlock market insights, deep research and intelligent trading for your AI

With Longbridge Skill, your AI assistant can screen stocks, decode earnings, track insider moves, and place orders — all in plain conversation.

Copy and send to any AI — it will walk you through the installation:

Install Longbridge Skill following the guide:https://developers.longbridge.com/skill/install.md
Or install via CLI
bunx skills add longbridge/developers -g -y
Claude Code
Codex
Cursor
Gemini
+ any Skill-compatible agent

MCP

Connect your AI assistant to live market data — no API keys required

Hosted HTTP MCP service with OAuth 2.1 authentication. Your AI coding assistant gets real-time quotes, account info, and trading capabilities in one connection.

$claude mcp add --transport http longbridge https://openapi.longbridge.com/mcp

OAuth 2.1 — browser opens automatically on first use. No API key needed.

OpenAPI SDK

Production-grade SDKs with real-time streaming and full trading capabilities

7 language SDKs built on a Rust core — subscribe to live market data, place orders, and monitor positions with async/await patterns and built-in rate limiting.

from longbridge.openapi import QuoteContext, Config, OAuthBuilder

oauth = OAuthBuilder("your-client-id").build(
    lambda url: print("Visit:", url))
config = Config.from_oauth(oauth)
ctx = QuoteContext(config)

resp = ctx.quote(["AAPL.US", "TSLA.US", "NVDA.US", "GOOG.US"])
print(resp)
pip3 install longbridge

Multi-Market

US, HK, SG, CN (SH/SZ) — stocks, ETFs, options, warrants

USHKSGCN

Free & Paper Trading

$API charges

No additional API charges. Paper trading with real market data, no securities account required.

Real-time Push

WebSocket push for quotes, order depth, trades, and order status updates

Complete Trading

Submit, replace, withdraw orders. Trailing stops, conditional orders, and auction orders.

OAuth 2.0 + Async

Automatic token management with modern async/await patterns and built-in rate control.