Skip to main content
GET
/
customer
/
accounts
Get Accounts Signed
curl --request GET \
  --url https://api.example.com/customer/accounts \
  --header 'X-API-NONCE: <x-api-nonce>' \
  --header 'X-API-SIGNATURE: <x-api-signature>' \
  --header 'X-API-SUBSCRIPTION-KEY: <x-api-subscription-key>' \
  --header 'X-API-TIMESTAMP: <x-api-timestamp>'
{
  "message": "<string>",
  "data": {
    "name": "Hedge Fund LLC",
    "dba_name": "Hedge Fund LLC",
    "accounts": [
      {
        "id": "57g3dnEZXOFgYN4yCSVitRcV",
        "account_number": "0999999",
        "account_group": "3",
        "account_title": "Hedge Fund LLC"
      }
    ]
  }
}

Headers

X-API-SIGNATURE
string
required

Signature header

X-API-TIMESTAMP
integer
required

Timestamp header

X-API-NONCE
string
required

Nonce header

X-API-SUBSCRIPTION-KEY
string
required

Account ID header

Response

Successful Response

message
string
required
data
ClientAccountResponse · object

Schema to serialize the account data.