US Crypto Overview
Longbridge US Accounts
This method is only available for US data-center accounts.
Get overview data for a US crypto trading pair — all-time highs/lows, asset info, and currency details.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | Crypto symbol, e.g. DOGEUSD.BKKT |
Request Example
Response
Response Example
json
{
"symbol": "DOGEUSD.BKKT",
"name": "Dogecoin",
"ticker": "DOGE",
"base_asset": "DOGE",
"currency": "USD",
"all_time_high": "0.7376",
"all_time_high_date": "2021-05-08",
"all_time_low": "0.0000869",
"all_time_low_date": "2015-05-06",
"ipo_date": "2013-12-06",
"issue_price": "0.00026",
"shares": "147000000000",
"official_web_address": "https://dogecoin.com",
"wiki_url": "https://en.wikipedia.org/wiki/Dogecoin",
"profile": "{...}"
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | CryptoOverview |
| 400 | Bad request | None |
Schemas
CryptoOverview
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | true | Trading-pair symbol (e.g. DOGEUSD.BKKT) |
| name | string | true | Asset name |
| ticker | string | true | Short ticker |
| base_asset | string | true | Base asset code (e.g. DOGE) |
| currency | string | true | Quote currency (e.g. USD) |
| all_time_high | string | true | All-time high price |
| all_time_high_date | string | true | Date of all-time high |
| all_time_low | string | true | All-time low price |
| all_time_low_date | string | true | Date of all-time low |
| ipo_date | string | false | Initial listing date |
| issue_price | string | false | Initial issue price |
| shares | string | false | Total circulating supply |
| official_web_address | string | false | Official website URL |
| logo | string | false | Asset logo URL |
| wiki_url | string | false | Wikipedia URL |
| profile | string | false | Asset profile description (JSON string) |