NFT Avatar

NFT Avatar

One avatar for everything, everywhere.

NFT avatar powers your public profile, visible wherever you post, comment, and interact online.

CREATE NFT AVATAR

Set once, seen everywhere.

Create, upload, and manage your globally recognized avatar from a single place.

More than just an image.

Instantly tell the web3 who you are and where people can find you. NFT avatar can display avatar, wallet address, and other details such as properties.

Environmentally friendly NFTs

Your avatar is created on Polygon chain. The gas prices are manageable and transactions are very green.

Public, open, and responsible.

Your avatar is linked to a public wallet address. You choose what to display on NFT avatar enabled sites: what you share on your avatar is open to the web3 world.

FOR WEB3 SITE OWNERS & DEVELOPERS

Join a network of brands building an open web3.

Simple open REST API allows retrieving wallet address avatar information easy from any platform. NFT avatar offers many possibilities through open standards.

Basic Usage
1curl --location --request \
2GET [DOMAIN NAME]/api/user/[address]
Advanced Usage
1// Use this setup for dedicated RPC urls for faster fetching
2import { ThirdwebSDK } from '@3rdweb/sdk';
3import { getDefaultProvider } from 'ethers';
4import { useState } from 'react';
5
6function getNFTAvatar(address) {
7  const sdk = new ThirdwebSDK(
8    getDefaultProvider('https://polygon-mainnet.g.alchemy.com/v2/DjmIcWIlF-s4D9AGEcK2jqIwV86_H8eq')
9  )
10  const bundleModule = sdk.getNFTModule(
11    '0xea537B6A0FbdAb1F12c54526a6294DD039E62F13'
12  );
13  const nfts = await bundleModule.getOwned(address);
14
15  return nfts[nfts.length - 1];
16}