v1
latestOpenAPI 3.0.02026-07-26166415635.8 KBAccounts
Create an Account
Submit an account application with KYC information. This will create a trading account for the end user. The account status may or may not be ACTIVE immediately and you will receive account status updates on the event API.
Multi-Live Accounts (MLA): To open an additional account for an existing account holder, supply primary_account_holder_id at the top level instead of contact/identity data. In that case, supplying contact or identity returns HTTP 400. Only account_type of trading and ira are supported via this flow.
post/v1/accounts
Request body
Example request
{
"account_sub_type": "traditional",
"account_type": "trading",
"agreements": [
{
"agreement": "customer_agreement",
"ip_address": "185.13.21.99",
"signed_at": "2019-09-11T18:09:33Z"
}
],
"beneficiaries": [
{
"date_of_birth": "1970-01-01",
"family_name": "Doe",
"given_name": "Jane",
"middle_name": "P",
"relationship": "spouse",
"share_pct": "100",
"tax_id": "xxx-xx-xxxx",
"tax_id_type": "USA_SSN",
"type": "primary"
}
],
"cash_interest": {
"USD": {
"apr_tier_name": "gold",
"status": "ACTIVE"
}
},
"contact": {
"city": "San Mateo",
"country": "USA",
"email_address": "john.doe@example.com",
"phone_number": "+15556667788",
"postal_code": "94401",
"state": "CA",
"street_address": [
"20 N San Mateo Dr"
]
},
"disclosures": {
"immediate_family_exposed": false,
"is_affiliated_exchange_or_finra": false,
"is_control_person": false,
"is_politically_exposed": false
},
"documents": [
{
"content": "/9j/Cg==",
"document_sub_type": "passport",
"document_type": "identity_verification",
"mime_type": "image/jpeg"
}
],
"fpsl": {
"US": {
"tier_id": "61e69015-8549-4bfd-b9c3-01e75843f47d"
}
},
"identity": {
"country_of_birth": "AUS",
"country_of_citizenship": "AUS",
"country_of_tax_residence": "USA",
"date_of_birth": "1990-01-01",
"family_name": "Doe",
"funding_source": [
"employment_income"
],
"given_name": "John",
"tax_id": "666-55-4321",
"tax_id_type": "USA_SSN"
},
"trusted_contact": {
"email_address": "jane.doe@example.com",
"family_name": "Doe",
"given_name": "Jane"
}
}Response
OK
Example response
{
"account_type": "trading",
"agreements": [
{
"agreement": "customer_agreement",
"ip_address": "185.13.21.99",
"signed_at": "2019-09-11T18:09:33Z"
}
],
"cash_interest": {
"USD": {
"apr_tier_name": "gold",
"status": "ACTIVE"
}
},
"contact": {
"city": "San Mateo",
"country": "USA",
"email_address": "john.doe@example.com",
"phone_number": "+15556667788",
"postal_code": "94401",
"state": "CA",
"street_address": [
"20 N San Mateo Dr"
]
},
"crypto_status": "ACTIVE",
"disclosures": {
"immediate_family_exposed": false,
"is_affiliated_exchange_or_finra": false,
"is_control_person": false,
"is_politically_exposed": false
},
"documents": [
{
"created_at": "2019-09-30T23:55:31.185998Z",
"document_sub_type": "passport",
"document_type": "identity_verification",
"id": "0d18ae51-3c94-4511-b209-101e1666416b",
"mime_type": "image/jpeg"
}
],
"fpsl": {
"US": {
"status": "ACTIVE",
"tier_id": "61e69015-8549-4bfd-b9c3-01e75843f47d"
}
},
"identity": {
"country_of_birth": "AUS",
"country_of_citizenship": "AUS",
"country_of_tax_residence": "USA",
"date_of_birth": "1990-01-01",
"family_name": "Doe",
"funding_source": [
"employment_income"
],
"given_name": "John",
"tax_id": "666-55-4321",
"tax_id_type": "USA_SSN"
},
"status": "ACTIVE",
"trusted_contact": {
"email_address": "jane.doe@example.com",
"family_name": "Doe",
"given_name": "Jane"
}
}