GET
/
base
/
user
/
tokens
List all of current user's tokens.
curl --request GET \
  --url https://api.coinfer.ai/base/user/tokens \
  --header 'Authorization: Bearer <token>'
{
  "status": "<string>",
  "data": [
    {
      "id": 123,
      "token": "<string>",
      "token_name": "<string>",
      "token_desc": "<string>",
      "token_expire": "2025-02-11T23:56:09.473Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

OK

status
string
required
Allowed value: "ok"
data
GetTokensRsp · object[]
required