Skip to main content
GET
/
v1
/
issuers
List issuers
curl --request GET \
  --url https://api-sandbox.y.uno/v1/issuers \
  --header 'account-code: <api-key>' \
  --header 'private-secret-key: <api-key>' \
  --header 'public-api-key: <api-key>'
{
  "issuers": [
    {
      "name": "Banco de Bogota",
      "id": "1"
    },
    {
      "name": "Bancolombia",
      "id": "2"
    },
    {
      "name": "Davivienda",
      "id": "3"
    }
  ]
}
This endpoint retrieves a list of all issuers that support the specific payment method. It allows you to filter issuers based on their compatibility with a particular payment method.

Authorizations

public-api-key
string
header
required

Your public API key from the Yuno Dashboard

private-secret-key
string
header
required

Your private secret key (server-side only)

account-code
string
header
required

Your account identifier. The alias X-Account-Code is also accepted.

Query Parameters

country
string
required

ISO 3166-1 alpha-2 country code

Pattern: ^[A-Z]{2}$
Example:

"CO"

Response

200 - application/json

List of issuers for the specified country

issuers
object[]