List all NFTs
Example
curl "https://api.underdogprotocol.com/v1/nfts?limit=2" \
-H "Authorization: Bearer {token}"
import axios from 'axios';
const getNfts = async () => {
try {
const response = await axios.get('https://api.underdogprotocol.com/v1/nfts', {
params: {
limit: 2
},
headers: {
'Authorization': `Bearer ${token}`
}
});
console.log(response.data);
} catch (error) {
console.error(error);
}
}
Response
{
"results": [
{
"mintAddress": "FrvZAJ1qZ2vhV17nFdEmw66N3FW5QiHFt6HdqsEh8QNq",
...
},
{
"mintAddress": "7eYfyPfnGzxp8A9TrQJEpKwVCC8nP9viHRRGJ89WzFJB",
...
},
{
"mintAddress": "61YbMJWQbboN3PUQen9MrxF53eMkGcnhEVrkX24TcTqK",
...
}
],
"limit": 3,
"page": 1,
"totalPages": 3,
"totalResults": 8
}
Last updated