Filter Project Tokens

This service returns project tokens with pagination

Filter Project Tokens

GET {{server-url}}/project-tokens/filter

It returns list of Nft item transfers with pagination

Query Parameters

NameTypeDescription

page

Number

Represents page number. Default 0

orderDirection

String

Represents order direction. It can be ASC or DESC. Default DESC

size

Number

Represents content size. Default 10

symbol

String

Represents project token's symbol

Headers

NameTypeDescription

Authorization*

String

UUID formatted access token

PROJECT-ID*

String

UUID formatted project's identifier

{
    // Response
}

Example Response Body

{
    "data": {
        "content": [
            {
                "icon": "https://ethereum.org/static/6b935ac0e6194247347855dc3d328e83/6ed5f/eth-diamond-black.webp",
                "symbol": "BLW",
                "name": "Blackwolf",
                "address": "0xe3b52cE4b365cF50A4e03F04B92ce542666f5C73",
                "artifactName": "Qaf20",
                "decimal": 18,
                "networkId": 4
            },
            {
                "icon": "https://ethereum.org/static/6b935ac0e6194247347855dc3d328e83/6ed5f/eth-diamond-black.webp",
                "symbol": "ETH",
                "name": "Ethereum",
                "address": "0x0000000000000000000000000000000000000000",
                "artifactName": "ethereum",
                "decimal": 18,
                "networkId": 4
            }
        ],
        "pageable": {
            "sort": {
                "sorted": true,
                "unsorted": false,
                "empty": false
            },
            "pageNumber": 0,
            "pageSize": 10,
            "offset": 0,
            "paged": true,
            "unpaged": false
        },
        "totalPages": 1,
        "totalElements": 2,
        "last": true,
        "numberOfElements": 2,
        "number": 0,
        "first": true,
        "size": 10,
        "sort": {
            "sorted": true,
            "unsorted": false,
            "empty": false
        },
        "empty": false
    },
    "message": null,
    "code": 0,
    "error": false
}

Response Fields

KeyTypeDescription

icon

String

Represents project token's icon url

symbol

String

Represents project token's symbol

name

String

Represents project token's name

decimal

Number

Represents project token's supported decimal converter value.

address

String

Represents project token's contract address

artifactName

String

Represents project token's contract name

networkId

Number

Represents network identifier, which the token smart contract deployed.

Last updated