Last updated 2 years ago
curl --location --request GET 'https://dev.underdogprotocol.com/v2/projects/n/4' \ --header 'Authorization: Bearer {token}'
const axios = require('axios'); let config = { method: 'get', url: 'https://dev.underdogprotocol.com/v2/projects/n/4', headers: { 'Authorization': 'Bearer d098077945e454.c76459c2fa07476788b3cbf7d60273fd' } }; axios(config) .then((response) => { console.log(JSON.stringify(response.data)); }) .catch((error) => { console.log(error); });
{ "id": 4, "transferable": false, "status": "confirmed", "mintAddress": "7eq4L3mxaaZxLw5JGP2dDtoYA71vPoRvszSUYSbqxGgF", "ownerAddress": "3ZBGxWRQdKTaXRcyLapMn1LaSU5TbKnBKJ6m2jBERKAp", "name": "Project #420", "image": "https://underdog-test-bucket-dev.s3.amazonaws.com/7eq4L3mxaaZxLw5JGP2dDtoYA71vPoRvszSUYSbqxGgF/image.png", "nfts": { "results": [], "page": 1, "limit": 10, "totalPages": 0, "totalResults": 0 } }
This endpoint allows you to retrieve a Project by providing the Project type (n or t) and Project ID.
Value must be either 't' for transferable or 'n' for non-transferable
asc
desc
curl -L \ --url 'https://api.underdogprotocol.com/v2/projects/:transferable/:projectId' \ --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", "id": 1, "mintAddress": "EBeLw5jEdrEgDe17BdKGW2MizzGxtxigEuAGvYC7VzDp", "transferable": true, "status": "text", "nfts": { "results": [ { "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" } ], "page": 1, "limit": 10, "totalPages": 1, "totalResults": 1 } }