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

# List Supported Institutions

Retrieve a list of supported institutions for a given currency.


## OpenAPI

````yaml openapi-v2.yaml GET /institutions/{currency_code}
openapi: 3.0.3
info:
  title: Paycrest Aggregator API
  version: 1.0.0
  description: >
    OpenAPI schema for the Paycrest Aggregator API. This covers sender,
    provider, and general endpoints.
servers:
  - url: https://api.paycrest.io/v2
security: []
tags:
  - name: Sender
    description: Endpoints for senders to create and manage payment orders
  - name: Provider
    description: Endpoints for providers to manage and fulfill orders
  - name: General
    description: General protocol and utility endpoints
paths:
  /institutions/{currency_code}:
    get:
      tags:
        - General
      summary: List supported institutions for a currency
      parameters:
        - in: path
          name: currency_code
          required: true
          schema:
            type: string
      responses:
        '200':
          description: List of institutions
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: success
                  message:
                    type: string
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/SupportedInstitutions'
        '400':
          description: Bad request
      servers:
        - url: https://api.paycrest.io/v2
components:
  schemas:
    SupportedInstitutions:
      type: object
      properties:
        name:
          type: string
        code:
          type: string
          description: >-
            Institution code (SWIFT code or custom PayCrest code ending with
            'PC'). See [Code Standards](/resources/code-standards) for details.
        type:
          type: string

````