Skip to content

NeglectApp/sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Neglect SDK (TypeScript)

Official TypeScript SDK for Neglect — fast Solana market data APIs for developers, analysts, and trading tools.

Install

npm install neglect

or with yarn:

yarn add neglect

Authentication

Create your API key at:

https://neglect.trade/developers

Store it in your environment:

NEGLECT_API_KEY=your_key_here

Quick 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

About

Official TypeScript SDK for Neglect Data Services

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors