Returns the IRC27 metadata as JSON.
GET/api/irc-metadata/v1/nfts/:nftId
Load the IRC27 metadata of an NFT by its id.
Request
Path Parameters
Unique identifier of the nft.
Responses
- 200
- 400
- 403
- 404
- 500
Successful operation.
- application/json
- Schema
- Example (from schema)
Schema
Possible values: Value must match regular expression ^IRC27$
identifier for the metadata standard used
Possible values: Value must match regular expression ^v\d+.\d+$
version of the metadata standard used
A descriptive name of the token
some information about the NFT project
MIME type of the asset
URI pointing to the resource where the file with type
MIME type is hosted
A human readable name for the NFT collection
object containing the payout addresses mapped to their percentage share
name of the artist
array containing any additional data as objects.
{
"standard": "string",
"version": "string",
"name": "string",
"description": "string",
"type": "string",
"uri": "string",
"collectionName": "string",
"royalties": {},
"issuerName": "string",
"attributes": [
null
]
}
Unsuccessful operation: indicates that the provided data is invalid.
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
The application error code.
The error reason.
{
"error": {
"code": 400,
"message": "invalid data provided"
}
}
Unsuccessful operation: indicates that the endpoint is not available for public use.
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
The application error code.
The error reason.
{
"error": {
"code": 403,
"message": "not available for public use"
}
}
Unsuccessful operation: indicates that the requested data was not found.
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
The application error code.
The error reason.
{
"error": {
"code": 404,
"message": "could not find data"
}
}
Unsuccessful operation: indicates that an unexpected, internal server error happened which prevented the node from fulfilling the request.
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
The application error code.
The error reason.
{
"error": {
"code": 500,
"message": "internal server error"
}
}