neglect
v1.0.24
Published
Neglect SDK — real-time market + token intelligence for Solana.
Maintainers
Readme
Neglect SDK (TypeScript)
Official TypeScript SDK for Neglect — fast Solana market data APIs for developers, analysts, and trading tools.
Install
npm install neglector with yarn:
yarn add neglectAuthentication
Create your API key at:
https://neglect.trade/developers
Store it in your environment:
NEGLECT_API_KEY=your_key_hereQuick Start
import { NeglectClient } from "neglect";
const neglect = new NeglectClient({
apiKey: process.env.NEGLECT_API_KEY!,
});
// You can call ANY Neglect API method directly:
const data = await neglect.getTokenPrice(
"So11111111111111111111111111111111111111112"
);
console.log(data);Available Methods
The SDK mirrors the Neglect API. Full endpoint reference:
https://docs.neglect.trade/products/data-services
Example
const holdings = await neglect.getWalletTokens(walletAddress);License
MIT
