获取支持交易的法币/数字币信息
获取支持交易的法币/数字币信息
描述
获取P2P交易支持的加密货币和法币列表,以及精度、价格限制和可用支付方式。
HTTP请求
- GET /api/v3/p2p/currencies
- 限频规则: 10次/秒/UID
- 需要统一账户P2P只读权限
请求示例
curl "https://api.bitget.com/api/v3/p2p/currencies" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:zh-CN" \
-H "Content-Type: application/json"
请求参数
N/A
返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1740000000000,
"data": {
"tokenDetailList": [
{
"token": "USDT",
"precision": "2"
}
],
"fiatDetailList": [
{
"fiat": "CNY",
"precision": "2",
"floatRateMin": "0.8",
"floatRateMax": "1.2",
"fixedRateMin": "6.5",
"fixedRateMax": "8.5",
"adMinLimit": "100",
"adMaxLimit": "1000000",
"payMethods": {
"payMethodName": "支付宝",
"iconUrl": "https://example.com/icon.png",
"payMethodId": "1"
},
"withdrawalLimit": {
"withdrawLimitKey": "T+1",
"withdrawLimitValue": "1"
},
"payTimeLimit": [10, 20]
}
]
}
}
返回参数
| 返回字段 | 参数类型 | 字段说明 |
|---|---|---|
| tokenDetailList | List | 数字币列表 |
| >token | String | 加密货币,如 USDT |
| >precision | String | 小数位 |
| fiatDetailList | List | 法币列表 |
| >fiat | String | 法币,如 CNY |
| >precision | String | 小数位 |
| >floatRateMin | String | 最小浮动价格比率 |
| >floatRateMax | String | 最大浮动价格比率 |
| >fixedRateMin | String | 最小固定价格比率 |
| >fixedRateMax | String | 最大固定价格比率 |
| >adMinLimit | String | 广告最小限额 |
| >adMaxLimit | String | 广告最大限额 |
| >payMethods | Object | 支付方式信息 |
| >>payMethodName | String | 支付方式名称 |
| >>iconUrl | String | 支付方式图标 |
| >>payMethodId | String | 支付方式ID |
| >withdrawalLimit | Object | 提现限制(私有广告时需要) |
| >>withdrawLimitKey | String | 展示名,如 T+1 |
| >>withdrawLimitValue | String | 值,如 1 |
| >payTimeLimit | List | 广告发布可选超时时间,如 [10, 20] |