> ## Documentation Index
> Fetch the complete documentation index at: https://yn-c9bb3266.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List Issuers

> Returns a list of issuers (banks) available for a given country.

<Note>
  This endpoint returns a list of banks available for a given country. Use the `country` query parameter to filter results.
</Note>


## OpenAPI

````yaml GET /v1/issuers
openapi: 3.1.0
info:
  title: Yuno Payments API
  description: >-
    Yuno payment orchestration platform — unified REST API for payments,
    checkout sessions, customers, payment methods, subscriptions, payouts,
    marketplace transfers, and banking connectivity across Latin America.
  version: 1.0.0
  contact:
    name: Yuno Support
    email: support@y.uno
    url: https://docs.y.uno
  license:
    name: Proprietary
    url: https://y.uno
servers:
  - url: https://api-sandbox.y.uno
    description: Sandbox
  - url: https://api.y.uno
    description: Production
security:
  - publicApiKey: []
    privateSecretKey: []
paths:
  /v1/issuers:
    get:
      tags:
        - Issuers
      summary: List issuers
      description: Returns a list of issuers (banks) available for a given country.
      operationId: listIssuers
      parameters:
        - name: country
          in: query
          required: true
          description: ISO 3166-1 alpha-2 country code
          schema:
            type: string
            pattern: ^[A-Z]{2}$
            example: CO
      responses:
        '200':
          description: List of issuers for the specified country
          content:
            application/json:
              schema:
                type: object
                properties:
                  issuers:
                    type: array
                    items:
                      $ref: '#/components/schemas/Issuer'
              example:
                issuers:
                  - name: Banco de Bogota
                    id: '1'
                  - name: Bancolombia
                    id: '2'
                  - name: Davivienda
                    id: '3'
components:
  schemas:
    Issuer:
      type: object
      properties:
        id:
          type: string
          description: Issuer identifier
          example: '1'
        name:
          type: string
          description: Issuer name (bank name)
          example: Banco de Bogota
      example:
        id: '1'
        name: Banco de Bogota
  securitySchemes:
    publicApiKey:
      type: apiKey
      in: header
      name: public-api-key
      description: Your public API key from the Yuno Dashboard
    privateSecretKey:
      type: apiKey
      in: header
      name: private-secret-key
      description: Your private secret key (server-side only)

````