NFT avatar powers your public profile, visible wherever you post, comment, and interact online.
CREATE NFT AVATAR
Create, upload, and manage your globally recognized avatar from a single place.
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.
Your avatar is created on Polygon chain. The gas prices are manageable and transactions are very green.
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.
Simple open REST API allows retrieving wallet address avatar information easy from any platform. NFT avatar offers many possibilities through open standards.
1curl --location --request \
2GET [DOMAIN NAME]/api/user/[address]
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}