Validate Metadata File

Validate excel file content

The service accepts excel file which contains your Nft Metada informations and returns validated form of metadatas as JSON format. You can use the response data in the batch create nft item service.

Example Excel File

Validate Metadata File

POST {{server-url}}/nft-items/file/validate

It returns the Nft item's identifier values.

Headers

Request Body

{
    // Response
}

Example Response Body

{
    "data": [
        {
            "contractType": "ERC721",
            "name": "r/place - 1",
            "description": "Reddit r/place 2022 Edition - 1",
            "url": "https://stagingnftgift.s3.eu-west-1.amazonaws.com/1649243914981",
            "totalSupply": 1,
            "categoryNameList": ["Yellow", "Green"],
            "attributes": [
                {
                    "traitType": "Color",
                    "value": "yellow",
                    "icon": "https://icons.io/colorpalette.png"
                }
            ]
        },
        {
            "contractType": "ERC721",
            "name": "r/place - 1",
            "description": "Reddit r/place 2022 Edition - 1",
            "url": "https://stagingnftgift.s3.eu-west-1.amazonaws.com/1649243914981",
            "totalSupply": 1,
            "categoryNameList": ["Yellow", "Green"],
            "attributes": [
                {
                    "traitType": "Color",
                    "value": "yellow",
                    "icon": "https://icons.io/colorpalette.png"
                }
            ]
        },
        {
            "contractType": "ERC721",
            "name": "r/place - 1",
            "description": "Reddit r/place 2022 Edition - 1",
            "url": "https://stagingnftgift.s3.eu-west-1.amazonaws.com/1649243914981",
            "totalSupply": 1,
            "categoryNameList": ["Yellow", "Green"],
            "attributes": [
                {
                    "traitType": "Color",
                    "value": "yellow",
                    "icon": "https://icons.io/colorpalette.png"
                }
            ]
        }
    ],
    "message": null,
    "code": 0,
    "error": false
}

Excel File Format

Response Fields

Last updated