Skip to main content

Get all supported banks

POST 

https://api.pesawise.xyz/api/payments/get-bank-info

Get all banks supported by Pesawise to make payments to

Request

Header Parameters

    api-key stringrequired
    api-secret stringrequired

Responses

Fetched banks successfully

Response Headers
    x-request-id

    Request Id for traceability

    x-event-type

    bank-info

Schema
  • Array [
  • idint64required

    Pesawise Bank identifier

    Example: 2
    bankCodestringrequired

    Kenya Bankers Association Code

    Example: 0001
    bankNamestringrequired

    Name of Bank

    Example: KCB
  • ]
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://api.pesawise.xyz/api/payments/get-bank-info");
request.Headers.Add("Accept", "*/*");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.pesawise.xyz
Parameters
— headerrequired
— headerrequired
ResponseClear

Click the Send API Request button above and see the response here!