Jump to
Ctrl
+
/

List Supported Assets

GET
/market-data/assets/supported

This endpoint will return a list of supported assets. The asset could be a cryptocurrency or FIAT assets that we support. Each asset has a unique identifier - assetId and a unique symbol in the form of a string, e.g. "BTC".

Query Parameters

context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

assetType string Optional

Defines the type of the supported asset. This could be either "crypto" or "fiat".

limit integer Optional

Defines how many items should be returned in the response per page basis.

Default : 50
offset integer Optional

The starting index of the response items, i.e. where the response should start listing the returned items.

Default : 0

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2023-04-25
requestId string Required

Defines the ID of the request. The requestId is generated by Crypto APIs and it's unique for every request.

601c1710034ed6d407996b30
context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

yourExampleString
data object Required
limit integer Required

Defines how many items should be returned in the response per page basis.

50
offset integer Required

The starting index of the response items, i.e. where the response should start listing the returned items.

0
total integer Required

Defines the total number of items returned in the response.

100
items array Items (object) Required
assetId string Required

Defines the unique ID of the specific asset.

5b1ea92e584bf50020130615
assetName string Required

Specifies the name of the asset in question.

Bitcoin
assetSymbol string Required

Specifies the asset's unique symbol in the Crypto APIs listings.

BTC
assetType string Required

Defines the type of the supported asset. This could be either "crypto" or "fiat".

crypto
originalSymbol string Required

Specifies the asset's original symbol as introduced by its founders.

BTC

Credits Cost : 100 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2023-04-25",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "limit": 50,
        "offset": 0,
        "total": 100,
        "items": [
            {
                "assetId": "5b1ea92e584bf50020130615",
                "assetName": "Bitcoin",
                "assetSymbol": "BTC",
                "assetType": "crypto",
                "originalSymbol": "BTC"
            }
        ]
    }
}