Store NFT Media
This is the place where the actual image or media data will be hosted. The data in the NFT will link to this image/media and will be displayed anywhere that the NFT is used (e.g. in the user's Wallet or on the Marketplace).
Upload NFT Media Files
This endpoint is used to upload a media file to our servers.
Request Endpoint: reference
HTTP
POST /api/v2/media
Example Response Body
JSON
{
"success": true,
"result": {
"media": "https://storage-staging.quantum.io/applications/8034d564-dec0-4b6f-99df-b377b0ab8b8a/NewUserSignUp.mp4"
}
}
Upload NFT Image
This endpoint is used to upload an NFT image to our servers. Make sure to only upload images with this endpoint.
Request Endpoint: reference
HTTP
POST /api/v2/images
Example Response Body
JSON
{
"success": true,
"result": {
"image": "https://storage-staging.quantum.io/applications/8034d564-dec0-4b6f-99df-b377b0ab8b8a/Welcometo.png",
"imagePreview": "https://storage-staging.quantum.io/applications/8034d564-dec0-4b6f-99df-b377b0ab8b8a/Welcometo.png",
"imageThumbnail": "https://storage-staging.quantum.io/applications/8034d564-dec0-4b6f-99df-b377b0ab8b8a/Welcometo.png"
}
}
Last updated