Collections

Get all your collection

GET /v1/app/collections

Headers: Authentication

Query Parameters

NameTypeDescription

chain_id

String

The ID of the blockchain

address

String

The contract address (EVM) or identifier of your collection in blockchain(Non EVM)

limit

String

The limit response that you want to get.

offset

String

The index of the start item that you want to get.

{
    "data": {
        "collections": [
             {
                "name": string,
                "owner": string,
                "description": string,
                "address": string,
                "link": string,
                "total_supply": int,
                "total_minted": int,
                "status": string
             }
         ],
        "total": int
    },
    "code": 200
}

Get all NFT in the collections

GET /v1/app/collection/<address>

Headers: Authentication

{
    "data": {
        "nfts": [
             {
                "token_id": string,
                "owner": string,
                "description": string,
                "metadata_link": string,
                "last_updated": float,
                "status": string
             }
         ],
        "total": int
    },
    "code": 200
}

Get NFT detail by token_id

GET /v1/app/collection/<address>/<token_id>

Headers: Authentication

{
    "data": {
        "token_id": string,
        "owner": string,
        "description": string,
        "metadata_link": string,
        "last_updated": float,
        "status": string
    },
    "code": 200
}

Last updated