Skip to main content
GET
/
v1
/
customer
/
banks
Get Customer Banks
curl --request GET \
  --url https://api.peere.network/v1/customer/banks \
  --header 'Authorization: Bearer <token>'
{
  "statusCode": 200,
  "success": true,
  "message": "Customer banks retrieved successfully",
  "data": {
    "banks": [
      {
        "bankIcon": "https://example.com/bank_icon.png",
        "bankId": "bank_456",
        "bankName": "Example Bank",
        "accountName": "Peter A*****",
        "accountNumber": "*******4348",
        "phrase": "phrase_001"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

email
string<email>
required

Customer email address

Response

Customer banks retrieved successfully

statusCode
integer
Example:

200

success
boolean
Example:

true

message
string
Example:

"Customer banks retrieved successfully"

data
object