Gyvar docs

List banks for a corridor

Payout institutions for a country with a `bank` method. Separate from the corridor row because the list is long and changes on its own schedule - fetch it when you are about to save a bank destination, not to render a corridor.

GET
/corridors/{country}/banks

Authorization

KeyID Timestamp Nonce Signature
X-Gyvar-Key<token>

Your key id, gyv_k_live_... or gyv_k_sandbox_....

In: header

X-Gyvar-Timestamp<token>

Unix seconds. Must be within 5 minutes of our clock.

In: header

X-Gyvar-Nonce<token>

A unique value per request. Replays are rejected.

In: header

X-Gyvar-Signature<token>

Ed25519 signature over the canonical string. See the Signing guide.

In: header

Path Parameters

country*string

ISO 3166-1 alpha-2, e.g. NG.

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/corridors/string/banks"
{  "data": [    {      "code": "string",      "name": "string"    }  ]}