Store NFT Image and Media

This API endpoint allows to store images / media on the storage solutions of Venly.

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

POST /api/v2/media

Example Response Body

{
    "success": true,
    "result": {
        "media": "https://storage-staging.venly.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

POST /api/v2/images

Example Response Body

{
    "success": true,
    "result": {
        "image": "https://storage-staging.venly.io/applications/8034d564-dec0-4b6f-99df-b377b0ab8b8a/Welcometo.png",
        "imagePreview": "https://storage-staging.venly.io/applications/8034d564-dec0-4b6f-99df-b377b0ab8b8a/Welcometo.png",
        "imageThumbnail": "https://storage-staging.venly.io/applications/8034d564-dec0-4b6f-99df-b377b0ab8b8a/Welcometo.png"
    }
}