The getAccountContracts API method provides the client with a list of available NFT smart contracts that can be used with the Wallet and Minting APIs. Need to have NFT contracts set up, or want to add your own? Reach out to us.
Endpoint Details
Description
Data
API Name
HTTP Method
GET
URL
/v1/account/contracts
Headers
Key
Value
Content-Type
application/json
x-api-key
API_KEY
Parameters
There are no parameters required for this request.
The response will contain a list of available NFT contracts.
{
result: {
contracts: [
{
id: string, // id of contract, form "contract_UUID"
name: string // name of contract
},
]
} | error?: IResponseError // Optional error information
}
The request to this endpoint does not require any specific parameters or form-data.
The response will contain a list of active NFT contracts available for the customer. If an error occurs, an IResponseError object may be included in the response.