Last updated 2 years ago
curl "https://api.underdogprotocol.com/v1/nfts/7eYfyPfnGzxp8A9TrQJEpKwVCC8nP9viHRRGJ89WzFJB" \ -H "Authorization: Bearer {token}"
import axios from 'axios'; const mintAddress = '7eYfyPfnGzxp8A9TrQJEpKwVCC8nP9viHRRGJ89WzFJB'; const getNft = async () => { try { const response = await axios.get(`https://api.underdogprotocol.com/v1/nfts/${mintAddress}`, { headers: { 'Authorization': `Bearer ${token}` } }); console.log(response.data); } catch (error) { console.error(error); } }
{ "mintAddress": "7eYfyPfnGzxp8A9TrQJEpKwVCC8nP9viHRRGJ89WzFJB", "name": "Sacramento Kings", "description": "", "image": "https://arweave.net/U0PFVZ_LszARt7OgfSiLl--OrRmczn0cNAjw4tYerVQ", "attributes": [ { "trait_type": "best player", "value": "Chris Webber" } ], "collectionAddress": "FrvZAJ1qZ2vhV17nFdEmw66N3FW5QiHFt6HdqsEh8QNq", "ownerAddress": "EBeLw5jEdrEgDe17BdKGW2MizzGxtxigEuAGvYC7VzDp" }
This endpoint allows you to retrieve a NFT by providing their mint address.
Address for the NFT's or token's mint account
EBeLw5jEdrEgDe17BdKGW2MizzGxtxigEuAGvYC7VzDp
^[A-HJ-NP-Za-km-z1-9]*$
curl -L \ --url 'https://api.underdogprotocol.com/v1/nfts/:mintAddress' \ --header 'Authorization: Bearer JWT'
{ "name": "NFT #1", "symbol": "NFT", "description": "This is my first NFT", "image": "https://example.com/image.png", "animationUrl": "https://example.com/animation.mp4", "attributes": { "Points": "40000", "Nickname": "LeGoat" }, "id": 1, "projectId": 1, "transferable": true, "mintAddress": "EBeLw5jEdrEgDe17BdKGW2MizzGxtxigEuAGvYC7VzDp", "ownerAddress": "EBeLw5jEdrEgDe17BdKGW2MizzGxtxigEuAGvYC7VzDp", "claimerAddress": "EBeLw5jEdrEgDe17BdKGW2MizzGxtxigEuAGvYC7VzDp", "status": "text" }