美股加密貨幣概覽
Longbridge US 賬戶
此方法僅適用於美國數據中心賬戶。
獲取美股加密貨幣交易對的概覽資訊——歷史最高/最低價、資產詳情和貨幣資訊。
SDK Links
Parameters
SDK 方法參數。
| 名稱 | 類型 | 必填 | 描述 |
|---|---|---|---|
| symbol | string | 是 | 加密貨幣交易對,例如 DOGEUSD.BKKT |
Request Example
響應字段
| 字段 | 類型 | 描述 |
|---|---|---|
| symbol | string | 交易對代碼 |
| name | string | 資產名稱 |
| ticker | string | 簡短代碼 |
| base_asset | string | 基礎資產代碼 |
| currency | string | 計價貨幣 |
| all_time_high | string | 歷史最高價 |
| all_time_high_date | string | 歷史最高價日期 |
| all_time_low | string | 歷史最低價 |
| all_time_low_date | string | 歷史最低價日期 |
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",
"shares": "147000000000",
"official_web_address": "https://dogecoin.com"
}Response Status
| 狀態碼 | 描述 | 结构 |
|---|---|---|
| 200 | 成功 | CryptoOverview |
| 400 | 請求錯誤 | None |
Schemas
CryptoOverview
| 名稱 | 類型 | 必填 | 描述 |
|---|---|---|---|
| symbol | string | 是 | 交易對代碼,如 DOGEUSD.BKKT |
| name | string | 是 | 資產名稱 |
| ticker | string | 是 | 簡短代碼 |
| base_asset | string | 是 | 基礎資產代碼,如 DOGE |
| currency | string | 是 | 計價貨幣,如 USD |
| all_time_high | string | 是 | 歷史最高價 |
| all_time_high_date | string | 是 | 歷史最高價日期 |
| all_time_low | string | 是 | 歷史最低價 |
| all_time_low_date | string | 是 | 歷史最低價日期 |
| ipo_date | string | 否 | 初始上市日期 |
| issue_price | string | 否 | 初始發行價格 |
| shares | string | 否 | 流通總量 |
| official_web_address | string | 否 | 官方網站 URL |
| logo | string | 否 | 資產 Logo URL |
| wiki_url | string | 否 | Wikipedia URL |
| profile | string | 否 | 資產簡介(JSON 字符串) |