Store NFT Media

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

This is where the actual image or media data will be hosted. The data in the NFT will link to this image/media and be displayed anywhere the NFT is used (e.g., in the user's Wallet or on a Marketplace).

Upload NFT Media Files

This endpoint is used to upload a media file to our servers.

Request Endpoint: reference

POST /api/v3/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. Please only upload images with this endpoint.

Request Endpoint: reference

POST /api/v3/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"
    }
}