Get All Clients
GET/v1/crossborder/clients
Retrieve a list of all crossborder clients. Optional filter parameters can be used to refine your search.
Request
Query Parameters
Default value: 1
Page number.
Possible values: <= 100
Default value: 20
Page size. Max size is 100.
Possible values: [created_at, name]
Field to sort the results by. Options: CREATED_AT (default) or NAME.
Possible values: [asc, desc]
Default value: asc
Page order.
Possible values: [NATURAL_PERSON, LEGAL_PERSON]
Filter results by client type. NATURAL_PERSON for individuals, LEGAL_PERSON for companies or organizations.
Possible values: [ACTIVE, INACTIVE, PENDING]
Filter results by client status. ACTIVE for active clients, INACTIVE for inactive clients.
Filter results by client name using partial match (case-insensitive). Searches for clients whose name contains the provided string. For legal entities, the name field corresponds to the legal name.
Header Parameters
Sender Wallet UUID (if empty, your default Wallet UUID will be settled)
The nonce ID is a UUID (v4) used to uniquely identify the request. All requests must have an identifier.
Possible values: [pt-BR, en-US]
Indicates the preferred language. Defaults to Brazilian Portuguese if unspecified.
The product ID is a UUID (v4) used to identify the Z.ro product configuration.
The product target user ID is a UUID (v4) used to identify what user account this request must be executed. Require: x-product-uuid.
Responses
- 200
- 400
- 401
- 422
Clients returned successfully.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
Page number.
Page size.
Page total.
Total of elements.
data object[]required
Array of client objects matching the search criteria and pagination parameters.
Unique identifier (UUID) of the client.
Full name of the client. For legal entities, the name field corresponds to the legal name.
Possible values: [NATURAL_PERSON, LEGAL_PERSON]
Type of client entity. NATURAL_PERSON for individuals, LEGAL_PERSON for companies or organizations.
Nationality of the client.
Official document number used for identification.
Possible values: [DRIVERS_LICENSE, IDENTITY_CARD, PASSPORT, OTHERS]
Type of identification document.
Email address of the client.
Date of birth of the client. Format: YYYY-MM-DD.
Date when the identification document was issued. Format: YYYY-MM-DD.
Country where the identification document was issued.
address objectrequired
Address ID.
Street line 1.
Street line 2.
City.
State.
Subdivision.
Postal code.
Possible values: [US, BR, MX, AR, CO, CL, PE, EC, UY, PY]
Country.
Possible values: [ACTIVE, INACTIVE, PENDING]
Current status of the client.
Client created date.
Client updated date.
{
"page": 1,
"page_size": 20,
"page_total": 20,
"total": 100,
"data": [
{
"id": "f6e2e084-29b9-4935-a059-5473b13033aa",
"name": "John Doe",
"type": "NATURAL_PERSON",
"nationality": "American",
"document": "12345678901",
"document_type": "PASSPORT",
"email": "john.doe@example.com",
"birth_date": "1990-01-01",
"issue_date": "2020-01-01",
"issuing_country": "USA",
"address": {
"id": "8fc58500-b12e-49d7-892c-dfd704b94c2d",
"street_line_1": "123 Main Street",
"street_line_2": "Suite 500",
"city": "San Francisco",
"state": "CA",
"subdivision": "CA",
"postal_code": "94102",
"country": "US"
},
"status": "ACTIVE",
"created_at": "2026-02-13T19:26:56.476Z",
"updated_at": "2026-02-13T19:26:56.476Z"
}
]
}
If any required params are missing or has invalid format or type.
User authentication failed.
If any required params are missing or has invalid format or type.