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

# List Nigerian Banks

> Returns a list of Nigerian banks for beneficiary creation. Same data as /banks.

Retrieve a list of Nigerian banks for use when creating NGN beneficiaries. Returns the same data as the `/banks` endpoint.

## Example Request

```bash theme={null}
curl -X GET "https://api.rolla.xyz/api/v1/external/beneficiaries/nigerian-banks" \
  -H "X-API-Key: your_api_key_here"
```

## Example Response

```json theme={null}
{
  "status": 200,
  "success": true,
  "message": "Banks retrieved successfully",
  "data": {
    "banks": [
      { "bankName": "Access Bank", "bankCode": "000014" },
      { "bankName": "GTBank", "bankCode": "000013" },
      { "bankName": "Zenith Bank", "bankCode": "000015" }
    ]
  }
}
```

<Note>
  Use the `bankCode` from this response when creating NGN beneficiaries or performing account lookups.
</Note>


## OpenAPI

````yaml GET /beneficiaries/nigerian-banks
openapi: 3.1.0
info:
  title: Rolla Developer API
  description: >-
    API for programmatic transaction management on the Rolla platform. Monetary
    `amount` fields use the smallest unit of the referenced currency unless an
    endpoint says otherwise (e.g. NGN = kobo, USD = cents, where **100 cents =
    USD 1.00**).
  version: 1.0.0
servers:
  - url: https://api.rolla.xyz/api/v1/external
    description: Production server
security:
  - apiKeyAuth: []
paths:
  /beneficiaries/nigerian-banks:
    get:
      summary: List Nigerian Banks
      description: >-
        Returns a list of Nigerian banks for beneficiary creation. Same data as
        /banks.
      operationId: getBeneficiaryNigerianBanks
      responses:
        '200':
          description: Banks retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 200
                  success:
                    type: boolean
                    example: true
                  message:
                    type: string
                    example: Banks retrieved successfully
                  data:
                    type: object
                    properties:
                      banks:
                        type: array
                        items:
                          $ref: '#/components/schemas/Bank'
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Bank:
      type: object
      properties:
        bankName:
          type: string
          example: Access Bank
        bankCode:
          type: string
          example: '000014'
    Error:
      type: object
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Your Rolla API key

````