Skip to main content
GET
/
counterparties
List counterparties
curl --request GET \
  --url https://api.conduit.financial/counterparties \
  --header 'X-API-Key: <api-key>' \
  --header 'X-API-Secret: <api-key>'
{
  "data": [
    {
      "id": "1234",
      "type": "individual",
      "firstName": "John",
      "middleName": "Snow",
      "lastName": "Smith",
      "birthDate": "2020-03-15T00:00:00.000Z",
      "nationality": "US",
      "email": "[email protected]",
      "phone": "+1-555-123-4567",
      "identificationType": "curp",
      "identificationNumber": "123",
      "address": {
        "streetLine1": "21 Jump Street",
        "streetLine2": "Unit 708",
        "city": "Boston",
        "state": "MA",
        "postalCode": "02111",
        "country": "USA"
      },
      "paymentMethods": [
        {
          "id": "1234",
          "type": "bank",
          "rail": [
            "ted",
            "pix"
          ],
          "bankName": "First National Bank",
          "accountType": "checking",
          "accountOwnerName": "Global Tech Solutions",
          "accountNumber": "123456789",
          "routingNumber": "123",
          "swiftCode": "FNBOUS33",
          "branchCode": "1234",
          "bankCode": "123",
          "currency": "USD",
          "address": {
            "streetLine1": "21 Jump Street",
            "streetLine2": "Unit 708",
            "city": "Boston",
            "state": "MA",
            "postalCode": "02111",
            "country": "USA"
          }
        },
        {
          "id": "bank_1234",
          "type": "wallet",
          "rail": "ethereum",
          "walletAddress": "0X0000000",
          "walletLabel": "Gus Personal ETH Wallet"
        },
        {
          "id": "wlt_1234",
          "type": "wallet",
          "rail": "tron",
          "walletAddress": "T0000000",
          "walletLabel": "Gus Personal Tron Wallet"
        }
      ],
      "documents": [
        {
          "documentId": "doc_1234",
          "documentPurpose": "recurring_payment",
          "documentType": "invoice",
          "documentName": "invoice.png",
          "uploadedAt": "2023-10-15T09:30:00.000Z"
        }
      ],
      "messages": [],
      "status": "active",
      "createdAt": "2024-01-01T10:00:00.000Z",
      "updatedAt": "2024-02-15T15:45:00.000Z"
    }
  ],
  "links": {
    "first": "/counterparties",
    "next": null
  }
}

Authorizations

X-API-Key
string
header
required

Includes an API key in the HTTP headers to authenticate the client.

X-API-Secret
string
header
required

Includes an API secret in the HTTP headers to authenticate the client.

Query Parameters

page[size]
string
default:50

The number of items to return per page.

Example:

"0"

page[after]
string

The cursor to start the page after.

Example:

"cp_2ofTA13AD0xBtbEvBl20aEb1hEu"

Response

A page of listed counterparty objects

data
object[]
required
  • Option 1
  • Option 2
Example:
{
"id": "1234",
"type": "individual",
"firstName": "John",
"middleName": "Snow",
"lastName": "Smith",
"birthDate": "2020-03-15T00:00:00.000Z",
"nationality": "US",
"email": "[email protected]",
"phone": "+1-555-123-4567",
"identificationType": "curp",
"identificationNumber": "123",
"address": {
"streetLine1": "21 Jump Street",
"streetLine2": "Unit 708",
"city": "Boston",
"state": "MA",
"postalCode": "02111",
"country": "USA"
},
"paymentMethods": [
{
"id": "1234",
"type": "bank",
"rail": ["ted", "pix"],
"bankName": "First National Bank",
"accountType": "checking",
"accountOwnerName": "Global Tech Solutions",
"accountNumber": "123456789",
"routingNumber": "123",
"swiftCode": "FNBOUS33",
"branchCode": "1234",
"bankCode": "123",
"currency": "USD",
"address": {
"streetLine1": "21 Jump Street",
"streetLine2": "Unit 708",
"city": "Boston",
"state": "MA",
"postalCode": "02111",
"country": "USA"
}
},
{
"id": "bank_1234",
"type": "wallet",
"rail": "ethereum",
"walletAddress": "0X0000000",
"walletLabel": "Gus Personal ETH Wallet"
},
{
"id": "wlt_1234",
"type": "wallet",
"rail": "tron",
"walletAddress": "T0000000",
"walletLabel": "Gus Personal Tron Wallet"
}
],
"documents": [
{
"documentId": "doc_1234",
"documentPurpose": "recurring_payment",
"documentType": "invoice",
"documentName": "invoice.png",
"uploadedAt": "2023-10-15T09:30:00.000Z"
}
],
"messages": [],
"status": "active",
"createdAt": "2024-01-01T10:00:00.000Z",
"updatedAt": "2024-02-15T15:45:00.000Z"
}
Example:
{ "first": "/counterparties", "next": null }