Get Counterparty by ID
GET/v1/crossborder/clients/:client_id/counterparties/:id
Retrieve detailed information about a specific crossborder counterparty by providing the counterparty ID.
Request
Path Parameters
Unique identifier (UUID) of the client that owns the counterparty.
Unique identifier (UUID) of the counterparty to retrieve.
Header Parameters
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.
UUID (v4) of the product that the request should use. Send it explicitly when the authenticated user has more than one product or when the integration must select a specific product. If omitted and the endpoint does not require it, the API uses the authenticated user's default product.
UUID (v4) of the user on whose behalf the request should run within the selected product. If omitted, the request runs as the authenticated user. Requires x-product-uuid.
Sender Wallet UUID (if empty, your default Wallet UUID will be settled)
Responses
- 200
- 400
- 404
Counterparty returned successfully.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
Unique identifier (UUID) of the counterparty.
Full name of the counterparty. For legal entities, the name field corresponds to the legal name.
Possible values: [NATURAL_PERSON, LEGAL_PERSON]
Type of counterparty entity. NATURAL_PERSON for individuals, LEGAL_PERSON for companies or organizations.
Country code.
Nationality of the counterparty.
Official document number used for identification.
Possible values: [DRIVERS_LICENSE, IDENTITY_CARD, PASSPORT, OTHERS]
Type of identification document.
Email address of the counterparty.
Date of birth of the counterparty. Format: YYYY-MM-DD.
Date when the identification document was issued. Format: YYYY-MM-DD.
Phone number of the counterparty (digits only).
address object
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 counterparty.
Counterparty created date.
Counterparty updated date.
Possible values: [LOW, MEDIUM, HIGH]
Risk of the counterparty.
Link URL to the counterparty finished onboarding.
counterparty_verifications object[]
Counterparty verifications.
Counterparty verification ID.
Verification type (e.g. KYC).
Provider name (e.g. persona).
Status: created, waiting, processed.
Provider payload (e.g. Persona inquiry response).
Created at.
Updated at.
{
"id": "f6e2e084-29b9-4935-a059-5473b13033aa",
"name": "John Doe",
"type": "NATURAL_PERSON",
"country": "US",
"nationality": "American",
"document": "12345678901",
"document_type": "PASSPORT",
"email": "john.doe@example.com",
"birth_date": "1990-01-01",
"issue_date": "2020-01-01",
"phone_number": "5511955551234",
"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-03-26T14:02:59.416Z",
"updated_at": "2026-03-26T14:02:59.416Z",
"risk": "LOW",
"link_url": "https://www.example.com",
"counterparty_verifications": [
{
"id": "8fc58500-b12e-49d7-892c-dfd704b94c2d",
"type": "KYC",
"provider": "persona",
"status": "processed",
"props": {},
"created_at": "2026-03-26T14:02:59.329Z",
"updated_at": "2026-03-26T14:02:59.329Z"
}
]
}
If any required params are missing or has invalid format or type.
Counterparty not found.