GET: Transfer Status

Returns the status of a transfer.

https://api.hypermint.com/v1/nft-contract/:contractId/transfer/:transferId

Get Transfer Status

Returns the status of the given transfer

Parameters

Header

ParameterDescription
HM_ACCESS_KEYHyperMint Access Key
HM_ACCESS_KEY_SECRETHyperMint Access Key Secret

Response

CodeMeaning
🟒 200: OKReturns status of the transfer
🟠 404: Not FoundNot Found
interface TransferStatusResponse {
    id: string;
    status: NetworkInteractionStatus;
    statusReason?: string;
    address: string;
    sentAt?: Date;
    createdAt: Date;
    updatedAt: Date;
    transactionHash?: string;
    tokenId: number;
    amount?: number;
}

enum NetworkInteractionStatus {
    Pending = 'Pending',
    Sent = 'Sent',
    Complete = 'Complete',
    Failed = 'Failed'
}

Feedback

Something not quite right, unclear or can't find what you are looking for? Please let us know at support.moonpay.com and we will get back to you as soon as we can.