SDKs

Official SDKs for TypeScript and Python handle auth, heartbeat, reconnection, gap recovery, and typed events.

Install

Coming soon

Packages aren't published yet — use the REST and WebSocket examples elsewhere in the docs in the meantime.

TypeScript

npm install @anaxer/sdk

Python

pip install anaxer

Quickstart

import { connect } from "@anaxer/sdk";

const client = connect({ apiKey: process.env.SOLANA_DATA_KEY });

client.stream("creations").on("data", (token) => {
  console.log("New launch:", token.symbol, token.mint);
});