Retrieve NFT Info for Mina NFT V2
POSThttps://minatokens.com/api/v1//info/nft-v2
Retrieves detailed information about a Mina NFT V2.
Request
- application/json
Bodyrequired
collectionAddressstringrequired
Always set to B62qs2NthDuxAT94tTFg6MtuaP1gaBxTZyNv9D3uQiQciy1VsaimNFT for Mina NFT V2.
Example:
B62qs2NthDuxAT94tTFg6MtuaP1gaBxTZyNv9D3uQiQciy1VsaimNFT
nftAddressstring
The unique NFT address.
Example:
B62qoT6jXebkJVmsUmxCxGJmvHJUXPNF417rms4PATi5R6Hw7e56CRt
Responses
- 200
- 400
- 401
- 403
- 429
- 500
- 503
Successful response
- application/json
- Schema
- Example (auto)
Schema
contractAddressstring
Example:
B62qs2NthDuxAT94tTFg6MtuaP1gaBxTZyNv9D3uQiQciy1VsaimNFT
nftAddressstring
Example:
B62qoT6jXebkJVmsUmxCxGJmvHJUXPNF417rms4PATi5R6Hw7e56CRt
tokenIdstring
Example:
wXqDrUzWtK58CaWCzN2g3zseU275dhSnRtBthcroeqT6HGKkos
tokenSymbolstring
Example:
NFT
contractUristringnullable
Example:
https://minanft.io
namestring
Example:
Minaty 0001
metadataRoot object
storagestring
Example:
bafkreiffyjf6lpxw5uzniwam7lv7oyezfsxnnfj3yeo67ht3nch3gvgvwi
ownerstring
Example:
B62qkX4VQYdmgc7dmLyiPpMhLRfrWjWnyoGGhdqF4bXtTcbv6E1HWsD
pricenumber
Example:
0
versionnumber
Example:
1
metadataobjectnullable
algoliaobjectnullable
{
"contractAddress": "B62qs2NthDuxAT94tTFg6MtuaP1gaBxTZyNv9D3uQiQciy1VsaimNFT",
"nftAddress": "B62qoT6jXebkJVmsUmxCxGJmvHJUXPNF417rms4PATi5R6Hw7e56CRt",
"tokenId": "wXqDrUzWtK58CaWCzN2g3zseU275dhSnRtBthcroeqT6HGKkos",
"tokenSymbol": "NFT",
"contractUri": "https://minanft.io",
"name": "Minaty 0001",
"metadataRoot": {
"data": "string",
"kind": "string"
},
"storage": "bafkreiffyjf6lpxw5uzniwam7lv7oyezfsxnnfj3yeo67ht3nch3gvgvwi",
"owner": "B62qkX4VQYdmgc7dmLyiPpMhLRfrWjWnyoGGhdqF4bXtTcbv6E1HWsD",
"price": 0,
"version": 1,
"metadata": {},
"algolia": {}
}
Bad request - invalid input parameters.
- application/json
- Schema
- Example (auto)
Schema
errorstring
Error message detailing the issue.
{
"error": "string"
}
Unauthorized - user not authenticated.
- application/json
- Schema
- Example (auto)
Schema
errorstring
Error message detailing the issue.
{
"error": "string"
}
Forbidden - user doesn't have permission.
- application/json
- Schema
- Example (auto)
Schema
errorstring
Error message detailing the issue.
{
"error": "string"
}
Too many requests.
- application/json
- Schema
- Example (auto)
Schema
errorstring
Error message detailing the issue.
{
"error": "string"
}
Internal server error - something went wrong during the request.
- application/json
- Schema
- Example (auto)
Schema
errorstring
Error message detailing the issue.
{
"error": "string"
}
Service unavailable - blockchain or other external service is down.
- application/json
- Schema
- Example (auto)
Schema
errorstring
Error message detailing the issue.
{
"error": "string"
}
Authorization: x-api-key
name: x-api-keytype: apiKeyin: headerdescription: API key for authorization. Get your API key at https://minatokens.com/api
- curl
- javascript
- nodejs
- python
- rust
- ocaml
- go
- java
- powershell
- CURL
curl -L 'https://minatokens.com/api/v1/info/nft-v2' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'x-api-key: <x-api-key>' \
-d '{
"collectionAddress": "B62qs2NthDuxAT94tTFg6MtuaP1gaBxTZyNv9D3uQiQciy1VsaimNFT",
"nftAddress": "B62qoT6jXebkJVmsUmxCxGJmvHJUXPNF417rms4PATi5R6Hw7e56CRt"
}'
ResponseClear