GET
/
v3
/
account
/
credentials
curl --request GET \
  --url https://api.woox.io/v3/account/credentials \
  --header 'x-api-key: <x-api-key>' \
  --header 'x-api-signature: <x-api-signature>' \
  --header 'x-api-timestamp: <x-api-timestamp>'
{
    "success": true,
    "data": {
        "rows": [
            {
                "accountName": "Main",
                "userId": 12523,
                "apiKey": "+Pxxxxxxxxxxxxxxxxxxxx==",
                "permissions": [ "READ", "TRADE", "WITHDRAWAL" ],
                "allowedIPs": ["123.0.0.1", "124.2.1.1"] // hide field if no ip restriction
            },
        ],
        "meta": {
            "total": 46,
            "recordsPerPage": 1,
            "currentPage": 1
        }
    },
    "timestamp": 1721295317627
}

Limit 10 requests per 60 seconds
Get api_key list and its permissions of the account. The response will contain your API keys’ permissions based on the credentials.

{
    "success": true,
    "data": {
        "rows": [
            {
                "accountName": "Main",
                "userId": 12523,
                "apiKey": "+Pxxxxxxxxxxxxxxxxxxxx==",
                "permissions": [ "READ", "TRADE", "WITHDRAWAL" ],
                "allowedIPs": ["123.0.0.1", "124.2.1.1"] // hide field if no ip restriction
            },
        ],
        "meta": {
            "total": 46,
            "recordsPerPage": 1,
            "currentPage": 1
        }
    },
    "timestamp": 1721295317627
}

Headers

x-api-key
string
required
Example:

"abcdef123456"

x-api-signature
string
required
Example:

"signaturestring"

x-api-timestamp
string
required
Example:

"1718943200000"

Query Parameters

page
integer
default:1

the page you wish to query.

size
integer
default:25

the page size you wish to query, default = 25, 1000 at max.

Response

200 - application/json

The response is of type object.