1.1.6 • Published 6 months ago

@alembic/nft-api-sdk v1.1.6

Weekly downloads
-
License
MIT
Repository
-
Last release
6 months ago

@alembic/nft-api-sdk

This is a TypeScript SDK for interacting with the NFT API. It simplifies the process of making requests to the API by providing convenient methods for various operations related to NFTs (Non-Fungible Tokens). These operations include managing and searching for assets, handling collections, and analyzing NFT data.

SDK Reference documentation

API reference documentation

Alembic documentation

Installation

To add the @alembic/nft-api-sdk to your project, you can use npm or yarn:

npm install @alembic/nft-api-sdk
yarn add @alembic/nft-api-sdk

Usage

After installation, you can import NftApi from the SDK in your TypeScript code:

import { NftApi } from '@alembic/nft-api-sdk';

Create an instance of NftApi and call its methods to interact with the NFT API.

const nftApi = new NftApi();
// Getting all collections
const collections = await nftApi.collection.getCollections();
console.log(collections);

// Search for assets using the `searchAssets` method of the `AssetService`
const filters = { /* your search criteria */ };
const assets = await nftApi.asset.searchAssets(filters);
console.log(assets);

// Get specific collection info
const collectionInfo = await nftApi.collection.getCollection('your_contract_address');
console.log(collectionInfo);
1.1.6

6 months ago

1.1.5

6 months ago

1.1.1

8 months ago

1.0.19

10 months ago

1.1.0

8 months ago

1.0.18

10 months ago

1.0.17

10 months ago

1.0.16

10 months ago

1.1.4

7 months ago

1.1.3

7 months ago

1.1.2

7 months ago

1.0.22

8 months ago

1.0.21

8 months ago

1.0.20

10 months ago

1.0.11

10 months ago

1.0.10

10 months ago

1.0.15

10 months ago

1.0.14

10 months ago

1.0.13

10 months ago

1.0.12

10 months ago

1.0.9-erc1155.0

11 months ago

1.0.9

11 months ago

1.0.8

11 months ago

1.0.7

11 months ago

1.0.6

11 months ago

1.0.5

11 months ago

1.0.4

11 months ago

1.0.3

11 months ago

1.0.2

11 months ago

1.0.1

11 months ago

1.0.0

11 months ago