Query Registration Project Details

Request Address: http://{url}/platform/api/v1/projects/externalDetail?nft_name=&nft_name

Request Method: GET Input Parameters:

  • nft_name, type: string Description: The NFT domain name bound to the project

Request Example:

curl --location --request GET 'http://{url}/platform/api/v1/projects/externalDetail?nft_name=xxx' \
--header 'client_id: 10425' \
--header 'client_secret: xxxxxxxxxxxx'

Response:
Successful Response:

{
    "code": 1,
    "data": {
        "id": 10010,                             //project id
        "create_at": "2022-08-03 07:59:08",      //project creation time
        "name": "xxxx",                          //project name
        "description": "xxx",                    //project description
        "logo": "xxxx",                          //link to project logo
        "type": 0,                               //project type
        "wallet_address": "xxx",                 //address of the wallet the project is bound to
        "nft": "xxx",                            //domain name of the nft that the project is bound to
        ...
    },
    "msg": "Process success",
    "success": true
}

Error Response:

{
    "code": 0,
    "data": {},
    "msg": "Process failed",
    "success": false
}

Last updated