36+ Native API Integrations
Connect to the world's most popular platforms and exchanges with zero external dependencies. Every integration is a native Delphi component with full IntelliSense support.
Connect to the world's most popular platforms and exchanges with zero external dependencies. Every integration is a native Delphi component with full IntelliSense support.
Connect to popular messaging platforms and real-time frameworks with native Delphi components.
Easy and reliable pub/sub messaging platform with presence channels, flexible authentication, and WebSocket transport.
Learn more →Open-source library for adding real-time web functionality to modern .NET apps.
Learn more →JavaScript real-time web application library with automatic reconnection and binary streaming.
Learn more →Overview of the SignalR, Pusher and Socket.IO clients, with a side by side comparison of how each framework negotiates its transport.
Learn more →Real-time market data, order management, and account streaming from the world's top exchanges.
World's largest crypto exchange. Real-time market data, order management, and account streaming.
Learn more →Advanced cryptocurrency trading platform with real-time order books and trades.
Learn more →Cryptocurrency exchange. WebSocket and REST API for spot and derivatives trading.
Crypto options and futures exchange. WebSocket and REST API integration.
Crypto derivatives exchange. WebSocket and REST API support.
Cryptocurrency platform. WebSocket and REST API for trading and market data.
Overview of every crypto exchange client, the market and account streams each one exposes, and the authentication each exchange needs.
Learn more →Real-time blockchain notifications, automated trading bots, and server administration tools.
Crypto trading automation platform. REST API integration.
ChatGPT, DALL-E, Whisper, embeddings, and fine-tuning. Full REST and WebSocket API coverage.
Learn more →Claude AI integration. Chat completions and streaming responses via REST API.
Learn more →Vector database for AI applications. Store, query, and manage embedding vectors at scale.
Learn more →Model Context Protocol server and client. Connect AI models to your application's tools and data.
Learn more →Web Push notification server component. Send push notifications to browsers and mobile devices.
Learn more →Gemini cryptocurrency exchange REST API integration.
Overview of the messaging, bot and trading clients that are not tied to an exchange, including Discord, Telegram, RCON and the trading bots.
Learn more →Written technical documents for every component, covering configuration, the properties and events you will use, and complete working code. Each one is also published as a PDF.
Connect to Binance and receive real-time ticker data with just a few lines of code.
procedure TForm1.ConnectBinance;
begin
sgcWSAPIBinance1.Symbols.Add('btcusdt');
sgcWSAPIBinance1.Channels.Ticker := True;
sgcWSAPIBinance1.Active := True;
end;
procedure TForm1.sgcWSAPIBinance1Ticker(Sender: TObject;
const Ticker: TsgcWSBinanceTicker);
begin
Label1.Caption := 'BTC/USDT: ' + Ticker.LastPrice;
end;