Filter Marketplace Tokens

This service returns marketplace tokens with pagination

Filter Marketplace Tokens

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

It returns list of marketplace fees 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 marketplace 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 marketplace token's icon url

symbol

String

Represents marketplace token's symbol

name

String

Represents marketplace token's name

decimal

Number

Represents marketplace token's supported decimal converter value.

address

String

Represents marketplace token's contract address

networkId

Number

Represents network identifier, which the token smart contract deployed.

Last updated