Getting Started

Getting Started

shell
npm install mintee.js

You can interact with Mintee by using our npm package or by using our API directly.

Generating An API Key

Visit the Mintee Sign Up (opens in a new tab) and generate an API key.

Using The API

typescript
import { Mintee } from "mintee.js";
 
const apiKey = "YOUR_API_KEY";
const mintee = new Mintee({ apiKey });
 
// or use make // devnet
// const mintee = Mintee.init({apiKey}, options: {
//  network: 'devnet'
// })
 
const tokenAddress = "214gAnKQUfFoD6AW4aRtETJNA73WZ3mYUybMEp3PDqHy";
const nftInfo = await mintee.nftInfo({ tokenAddress });
console.log(nftInfo);