TokenURI
get
Retrieves the token URI for a given ERC721 token.
Authorizations
AuthorizationstringRequired
Path parameters
tokenIdstringRequired
- The ID of the token to retrieve the URI for.
Query parameters
chainIdstringRequired
- The ID of the blockchain network.
addressstringRequired
- The address of the ERC721 contract.
Header parameters
AuthorizationstringRequired
- The authorization token.
Responses
200
A promise that resolves to an ERC721APIResponse containing the token URI.
application/json
Interface representing the structure of the response from the ERC721 API.
successbooleanRequired
Indicates whether the API request was successful.
messagestringRequired
A message providing additional information about the API response.
dataanyOptional
Optional data returned by the API.
get/erc721/{tokenId}/tokenURI
GET /erc721/{tokenId}/tokenURI?chainId=text&address=text HTTP/1.1
Host: beta.usemoon.ai/
Authorization: text
Accept: */*
200
A promise that resolves to an ERC721APIResponse containing the token URI.
{
"success": true,
"message": "text",
"data": null
}