Query APIKey Info
Query information for a specified API Key.
HTTP Request
- GET
/api/v3/apiKeyInfo
Required Permission: SPOT_ACCOUNT_READ
Weight(IP): 1
Request Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| timestamp | string | yes | Timestamp |
| signature | string | yes | Signature |
| accessKey | string | yes | The accessKey to query |
Response Parameters
| Name | Type | Description |
|---|---|---|
| note | string | APIKey note |
| apikey | string | API public key |
| status | string | API Key status: VALID, DELETE, or FROZEN |
| permissions | string | Enabled APIKey permissions, comma-separated. Available values: SPOT_ACCOUNT_READ, SPOT_ACCOUNT_WRITE, SPOT_DEAL_READ, SPOT_DEAL_WRITE, CONTRACT_ACCOUNT_READ, CONTRACT_ACCOUNT_WRITE, CONTRACT_DEAL_READ, CONTRACT_DEAL_WRITE, SPOT_TRANSFER_READ, SPOT_TRANSFER_WRITE |
| ipWhiteList | string | Currently linked IP whitelist |
| createTime | string | API Key creation time |
| remainingValidity | integer | Remaining validity in days: -999 for permanent, 0 if expired, greater than 0 if active |
Response
{
"note": "note2",
"apikey": "mx0npKfh57kEEVmyLa",
"status": "VALID",
"permissions": "SPOT_ACCOUNT_READ,",
"createTime": "86965436809742",
"remainingValidity": "23",
"ipWhiteList": "162.133.62.1"
}