Official TypeScript SDK for Neglect — fast Solana market data APIs for developers, analysts, and trading tools.
npm install neglector with yarn:
yarn add neglectCreate your API key at:
https://neglect.trade/developers
Store it in your environment:
NEGLECT_API_KEY=your_key_hereimport { 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);The SDK mirrors the Neglect API. Full endpoint reference:
https://docs.neglect.trade/products/data-services
const holdings = await neglect.getWalletTokens(walletAddress);MIT