Skip to main content
GET
/
v1
/
bank
/
devices
/
list
Get Devices List
curl --request GET \
  --url https://api.peere.network/v1/bank/devices/list \
  --header 'Authorization: Bearer <token>'
{
  "statusCode": 200,
  "success": true,
  "data": {
    "devices": [
      {
        "deviceId": "<string>",
        "customerId": "<string>",
        "phrase": "<string>",
        "linkedAt": "2023-11-07T05:31:56Z"
      }
    ],
    "total": 123,
    "page": 123,
    "limit": 123
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer
limit
integer

Response

Devices list retrieved successfully

statusCode
integer
Example:

200

success
boolean
Example:

true

data
object