SENDY

Introduction

Sendy is a mobile portfolio tracking and trading platform for Solana memecoins. In the app you link wallets and track activity; from the dashboard you can create an API key to access your own wallet data in code. Integrations should call the versioned surface at /api/v2/sdk: requests use your key, count toward account quota, and only return data for wallets you are allowed to see in Sendy.

Download Sendy

Link wallets in the app, then use Web Login to scan the dashboard QR code and create API keys.

Manage associated wallets
Approve dashboard QR login
Download app

Base URL

Production routes are served from https://api.sendy.lol/api/v2. Append paths such as /sdk/wallet/positions when building URLs. Store the secret in an environment variable (for example SENDY_API_KEY); do not ship it in public clients.

Integration surface

Use GET and POST under /sdk/… for REST. Live fills stream over Socket.IO ( see Trade stream and Token stream). Other routes under /api/v2 serve the product and are not the supported contract for API keys.

Wallet data

Official SDKs

Thin clients wrap the same routes with typed helpers for TypeScript, Rust, and Python. Install one package per language and keep keys in environment variables rather than committing them to source control.

Next steps