curl --request GET \
--url https://api.nuvion.tech/recipient-counterparties \
--header 'Authorization: <authorization>'{
"message": "Recipient counterparties retrieved successfully",
"status": 200,
"data": [
{
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F3",
"entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"type": "individual",
"entity_relationship": "customer",
"name": "John Doe",
"email": "[email protected]",
"address": {
"city": "New York",
"state": "NY",
"postal_code": "10001",
"country_code": "US",
"line_1": "123 Main St",
"line_2": "Apt 4B",
"line_3": null
},
"account_details": {
"issuer": {
"code": "CHASE",
"name": "JPMorgan Chase Bank",
"short_name": "Chase"
},
"account_number": "1234567890",
"routing_number": "021000021",
"account_type": "checking",
"country": "US",
"payment_rails": "ach"
},
"meta": {
"preferred_contact_method": "email"
},
"created_at": "2025-09-12T08:00:00.000Z",
"updated_at": "2025-09-12T08:00:00.000Z"
},
{
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F6",
"entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"type": "business",
"entity_relationship": "vendor",
"name": "Acme Corporation",
"email": "[email protected]",
"address": {
"city": "San Francisco",
"state": "CA",
"postal_code": "94105",
"country_code": "US",
"line_1": "555 Market St",
"line_2": "Suite 1000",
"line_3": null
},
"account_details": {
"issuer": {
"code": "BOFA",
"name": "Bank of America",
"short_name": "BofA"
},
"account_number": "9876543210",
"routing_number": "026009593",
"account_type": "checking",
"country": "US",
"payment_rails": "ach"
},
"meta": {
"tax_id": "123456789"
},
"created_at": "2025-09-10T15:30:00.000Z",
"updated_at": "2025-09-10T15:30:00.000Z"
}
],
"meta": {
"pagination": {
"limit": 20,
"total_count": 2,
"has_next": false,
"has_previous": false,
"next_cursor": null
},
"filters_applied": {
"entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"type": null,
"search": null,
"sort": "created_desc"
}
}
}Retrieves a list of recipient counterparties for the authenticated user or entity.
curl --request GET \
--url https://api.nuvion.tech/recipient-counterparties \
--header 'Authorization: <authorization>'{
"message": "Recipient counterparties retrieved successfully",
"status": 200,
"data": [
{
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F3",
"entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"type": "individual",
"entity_relationship": "customer",
"name": "John Doe",
"email": "[email protected]",
"address": {
"city": "New York",
"state": "NY",
"postal_code": "10001",
"country_code": "US",
"line_1": "123 Main St",
"line_2": "Apt 4B",
"line_3": null
},
"account_details": {
"issuer": {
"code": "CHASE",
"name": "JPMorgan Chase Bank",
"short_name": "Chase"
},
"account_number": "1234567890",
"routing_number": "021000021",
"account_type": "checking",
"country": "US",
"payment_rails": "ach"
},
"meta": {
"preferred_contact_method": "email"
},
"created_at": "2025-09-12T08:00:00.000Z",
"updated_at": "2025-09-12T08:00:00.000Z"
},
{
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F6",
"entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"type": "business",
"entity_relationship": "vendor",
"name": "Acme Corporation",
"email": "[email protected]",
"address": {
"city": "San Francisco",
"state": "CA",
"postal_code": "94105",
"country_code": "US",
"line_1": "555 Market St",
"line_2": "Suite 1000",
"line_3": null
},
"account_details": {
"issuer": {
"code": "BOFA",
"name": "Bank of America",
"short_name": "BofA"
},
"account_number": "9876543210",
"routing_number": "026009593",
"account_type": "checking",
"country": "US",
"payment_rails": "ach"
},
"meta": {
"tax_id": "123456789"
},
"created_at": "2025-09-10T15:30:00.000Z",
"updated_at": "2025-09-10T15:30:00.000Z"
}
],
"meta": {
"pagination": {
"limit": 20,
"total_count": 2,
"has_next": false,
"has_previous": false,
"next_cursor": null
},
"filters_applied": {
"entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"type": null,
"search": null,
"sort": "created_desc"
}
}
}Authorization header: Bearer {jwt or Secretkey}
Filter counterparties by type
Filter counterparties created on or after this timestamp (Unix epoch in milliseconds)
Filter counterparties created on or before this timestamp (Unix epoch in milliseconds)
Number of results to return per page
Cursor for pagination (the ID of the last item in the previous page)
Sort direction for results
Search term to filter counterparties by name, email, or account number
Successful operation
A descriptive message indicating the result of the operation
The status of the API operation (successful, error, failed, pending)
Array of counterparties
Show child attributes
Unique identifier for the counterparty
Identifier of the entity the counterparty belongs to
The type of counterparty
Relationship between the entity and counterparty
Name of the counterparty
Email address of the counterparty
Physical address of the counterparty
Show child attributes
City name
State or province code
Postal or ZIP code
ISO country code
First line of address
Second line of address
Third line of address
Banking details of the counterparty
Show child attributes
Bank or financial institution details
Account number at the financial institution
Bank routing number
Type of bank account
Country code where the account is located
Payment network type
Timestamp when the counterparty was created
Timestamp when the counterparty was last updated
Metadata related to the response including pagination and filter information
Show child attributes
Pagination information
Show child attributes
Maximum number of items per page
Total number of items available
Whether there are more items available
Whether there are previous items available
Cursor for the next page of results
Filters applied to the list operation