> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ramphub.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Provider bank list

> Get the canonical bank codes RampHub accepts for a specific provider.

Use this endpoint when you want to show the bank options accepted for a selected provider before creating a sell order.

## Request

`GET /api/developer/provider-bank-list/:provider`

### Path params

* `provider` - Provider name such as `UseBread`, `Dexpay`, `Paycrest`, `Pajcash`, or `Flipeet`

## Response

RampHub returns the canonical bank code and display name that you should surface in your UI and reuse in `POST /api/developer/orders`.

```json theme={null}
{
  "success": true,
  "provider": "UseBread",
  "banks": [
    {
      "bankCode": "999992",
      "bankName": "OPay Digital Services Limited (OPay)"
    }
  ]
}
```

## Notes

* This endpoint is read-only.
* The returned `bankCode` is the code your app should pass into order creation.
* `bankName` is included for display and confirmation in your UI.
* Provider-specific directory formats stay internal to RampHub.
