Skip to main content
GET
/
v1
/
account-enquiry
Resolve Account Name
curl --request GET \
  --url https://api.useglyde.co/v1/account-enquiry \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "Account retrieved",
  "data": {
    "bank_name": "GTBank",
    "account_name": "John Doe",
    "account_number": "0264341458"
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

account_number
string
required

The 10-digit account number

bank_code
string
required

The bank code from /banks endpoint

Response

Success

status
string
Example:

"success"

message
string
Example:

"Account retrieved"

data
object