0.0.7 • Published 12 months ago

mintee.js v0.0.7

Weekly downloads
-
License
ISC
Repository
-
Last release
12 months ago

Mintee.js - The easiest to use NFT API

Mintee.js is a simple way to use the Mintee API for minting NFTs on the Solana blockchain.

Getting Started

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 and generate an API key.

Using The API

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);

GET

It is not necessary to install the npm package to easily interact with our api.

const tokenAddress = "EtNfhjfpP8N71YVFFRvMn9iFzDG1PKaSwKUcBH6LzJVR";
const url = `https://api.mintee.io/nftInfo/${tokenAddress}`;
const response = fetch(url, {
  method: "GET",
  headers: {
    "x-api-key": "YOUR_API_KEY",
  },
});

const nftInfo = await response.json();
0.0.7

12 months ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago