Skip to main content
GET
/
v1
/
recipients
List recipients
curl --request GET \
  --url https://api-sandbox.y.uno/v1/recipients \
  --header 'account-code: <api-key>' \
  --header 'private-secret-key: <api-key>' \
  --header 'public-api-key: <api-key>'
[
  {
    "id": "d1e2f3a4-b5c6-7d8e-9f0a-1b2c3d4e5f6a",
    "merchant_recipient_id": "seller-001",
    "country": "BR",
    "name": "Carlos Oliveira",
    "email": "carlos@example.com",
    "document": {
      "document_type": "CPF",
      "document_number": "98765432100"
    },
    "bank_account": {
      "bank_code": "001",
      "account_number": "12345-6",
      "account_type": "CHECKING"
    },
    "created_at": "2026-03-01T09:00:00.000Z"
  }
]
Retrieves a list of recipients for the authenticated account. Supports pagination and filtering.

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

merchant_recipient_id
string
required

The merchant-assigned recipient identifier to filter by

limit
integer
default:20

Maximum number of results to return

Required range: x <= 100
starting_after
string

Cursor for forward pagination. Pass the ID of the last item from the previous page.

ending_before
string

Cursor for backward pagination

Response

200 - application/json

List of recipients

id
string<uuid>
Example:

"d1e2f3a4-b5c6-7d8e-9f0a-1b2c3d4e5f6a"

merchant_recipient_id
string
Example:

"seller-001"

country
string
Example:

"BR"

name
string
Example:

"Carlos Oliveira"

email
string<email>
Example:

"carlos@example.com"

document
object
Example:
{
"document_type": "CPF",
"document_number": "12345678901"
}
bank_account
object
created_at
string<date-time>
Example:

"2026-03-01T09:00:00.000Z"