Moonbase Docs

Get all API keys of the user

Get all API keys.

Requires authentication.

GET
/api-keys
NOVA-KEY<token>

In: header

NOVA-SECRET<token>

In: header

Response Body

application/json

application/json

curl -X GET "https://api.moonbase.vn/api-keys"
{
  "api_keys": [
    {
      "api_key": "string",
      "api_secret": "string",
      "name": "string",
      "created_at": "string",
      "expired_at": "string",
      "is_read_only": true
    }
  ]
}
{
  "code": 0,
  "message": "string",
  "details": [
    {
      "@type": "string",
      "property1": null,
      "property2": null
    }
  ]
}