Download OpenAPI specification:
Before you can start, ensure you have your Tenant API key. This key is essential for accessing the API.
All endpoints requires the Tenant API key to be passed as X-API-KEY
header.
Every transaction must have a participant which can be a Person or a Company and created using the create person endpoint or create company endpoint. The participant can be the same Person/Company, in this case, you can use the same participant id for both 'senderId' and 'receiverId' when creating the transaction.
To use a participant as Sender, it must have at least compliance level 1.
Compliance level is dynamically based on provided fields, participant type and tenant. Every tenant has its own configuration, which means the required fields and compliance levels will vary accordingly.
The default values for required fields are the following:
Compliance level | Required fields | 24h limit | 30 days limit | 180 days limit |
---|---|---|---|---|
1 | name, last name, address, phone number | $ | $ | $ |
2 | ssn, occupation, documentId | $ | $ | $ |
3 | proof of sources of funds | $ | $ | $ |
By following these steps, you can successfully create agents and perform transactions using the API.
participantId required | string |
{- "oneDayLimit": {
- "limit": {
- "amount": "2999.00",
- "currency": "USD"
}, - "used": {
- "amount": "0.00",
- "currency": "USD"
}, - "available": {
- "amount": "2999.00",
- "currency": "USD"
}
}, - "thirtyDaysLimit": {
- "limit": {
- "amount": "6000.00",
- "currency": "USD"
}, - "used": {
- "amount": "2959.99",
- "currency": "USD"
}, - "available": {
- "amount": "3040.01",
- "currency": "USD"
}
}, - "oneHundredAndEightyDaysLimit": {
- "limit": {
- "amount": "9999.00",
- "currency": "USD"
}, - "used": {
- "amount": "5000.00",
- "currency": "USD"
}, - "available": {
- "amount": "4999.00",
- "currency": "USD"
}
}, - "complianceLevel": {
- "level": "LEVEL_1",
- "limits": {
- "oneDayLimit": {
- "amount": "2999.00",
- "currency": "USD"
}, - "thirtyDaysLimit": {
- "amount": "6000.00",
- "currency": "USD"
}, - "oneHundredAndEightyDaysLimit": {
- "amount": "9999.00",
- "currency": "USD"
}
}, - "requiredFields": [
- "birthDate",
- "documentIdNumber",
- "lastName",
- "name",
- "occupation",
- "phoneNumber",
- "residentialAddress"
], - "perTransactionFields": [ ]
}
}
complianceStatus | string or null |
from | string or null |
page | integer or null <int32> |
payoutStatus | string or null |
receiverName | string or null |
senderName | string or null |
size | integer or null <int32> |
to | string or null |
type | string or null Enum: "FX" "TOP_UP" "BILLPAY" Transaction type to be filtered |
{- "total": 3,
- "size": 3,
- "page": 0,
- "numberOfPages": 1,
- "items": [
- {
- "id": "dcbc0c4e-eb92-4fe8-876f-a9e498084077",
- "senderId": "0b0f9690-5dcc-4c8d-9062-5f2731105994",
- "agentId": "17be24aa-18a5-4064-83d3-3ac4d4cadd83",
- "externalId": "000001",
- "sender": {
- "id": "0b0f9690-5dcc-4c8d-9062-5f2731105994",
- "type": "PERSON",
- "name": "John Doe",
- "phoneNumber": "+1234567890"
}, - "receiver": {
- "id": "075c93f9-1978-466b-b5f1-3139cff45e6b",
- "type": "PERSON",
- "name": "John Doe",
- "phoneNumber": "+1234567890"
}, - "receiverId": "075c93f9-1978-466b-b5f1-3139cff45e6b",
- "tenantId": "master",
- "createdAt": "2024-06-06T12:35:32.8315486",
- "anchorCurrencyAmount": "1500.000000000000000",
- "complianceStatus": "Approved",
- "payoutStatus": "Pending",
- "phoneNumber": "1234567890",
- "type": "TOP_UP"
}, - {
- "id": "b2bea47a-f6e1-4875-a86f-b5b0ea03cfc7",
- "senderId": "0b0f9690-5dcc-4c8d-9062-5f2731105994",
- "agentId": "61f24818-33b0-4908-88e8-9e5666ea1119",
- "externalId": "000002",
- "sender": {
- "id": "0b0f9690-5dcc-4c8d-9062-5f2731105994",
- "type": "PERSON",
- "name": "John Doe",
- "phoneNumber": "+1234567890"
}, - "receiver": {
- "id": "fb6f2da4-66be-4374-8fa6-6684618affba",
- "type": "PERSON",
- "name": "John Doe",
- "phoneNumber": "+1234567890"
}, - "receiverId": "fb6f2da4-66be-4374-8fa6-6684618affba",
- "tenantId": "master",
- "createdAt": "2024-06-06T12:35:32.8325571",
- "anchorCurrencyAmount": "1500.000000000000000",
- "complianceStatus": "Approved",
- "payoutStatus": "Pending",
- "invoice": "invoice",
- "provider": "provider",
- "type": "BILLPAY"
}, - {
- "id": "a90800b5-1267-49f5-82b7-09a785092998",
- "senderId": "0b0f9690-5dcc-4c8d-9062-5f2731105994",
- "agentId": "008dc659-2524-46e8-bb94-4123336e1c60",
- "externalId": null,
- "sender": {
- "id": "0b0f9690-5dcc-4c8d-9062-5f2731105994",
- "type": "PERSON",
- "name": "John Doe",
- "phoneNumber": "+1234567890"
}, - "receiver": {
- "id": "9871c329-dc3e-4f12-a13f-fbd6e88d3410",
- "type": "PERSON",
- "name": "John Doe",
- "phoneNumber": "+1234567890"
}, - "receiverId": "9871c329-dc3e-4f12-a13f-fbd6e88d3410",
- "exchangeRate": "1.000000000000000",
- "totalAmount": "1500.000000000000000",
- "receivingAmount": "1500.000000000000000",
- "fee": 0,
- "conversionAmount": "1500.000000000000000",
- "tenantId": "master",
- "createdAt": "2024-06-06T12:35:32.617135",
- "anchorCurrencyAmount": "1500.000000000000000",
- "complianceStatus": "Approved",
- "payoutStatus": "Pending",
- "originExchangeRate": {
- "fromCurrency": "USD",
- "toCurrency": "USD",
- "rate": "1.000000000000000"
}, - "destinationExchangeRate": {
- "fromCurrency": "USD",
- "toCurrency": "USD",
- "rate": "1.000000000000000"
}, - "fundingAccountId": "3b2d2854-26a0-414c-a962-849d003ae08a",
- "recipientAccountId": "7b39b9e4-d62c-469b-a3e4-95868e87b6eb",
- "quoteId": "45efa4f3-8b08-45f6-ade4-eb147c347549",
- "type": "FX"
}
]
}
Register a transaction
tenant required | string |
Request a transaction
externalId | string or null <uuid> External Id |
senderId required | string or null <uuid> Sender Id |
receiverId required | string or null <uuid> Receiver Id |
fundingAccountId required | string or null <uuid> Funding account Id |
recipientAccountId required | string or null <uuid> Recipient account Id |
quoteId required | string or null <uuid> Quote Id |
required | (fx_API_MonetaryAmountPayload (object or null)) or (object or null) Amount |
(fx_API_MonetaryAmountPayload (object or null)) or (object or null) Fee | |
(fx_API_DeviceDataPayload (object or null)) or (object or null) Device data | |
required | object additional data |
{- "senderId": "422a55b2-78c3-4509-8654-16e7375d3e40",
- "receiverId": "4b9dcb4e-2e2a-4e96-b2a9-fcd868b2f4ed",
- "fundingAccountId": "3fe5f23f-65d3-41b6-b34c-33db3c4d8ef9",
- "recipientAccountId": "67203d69-dc48-41d4-b2ac-52682d39b032",
- "quoteId": "30bf05d2-b416-4e71-b8e8-1ef158a2b414",
- "amount": {
- "amount": "102.53",
- "currency": "USD"
}, - "additionalData": {
- "some": "data"
}, - "deviceData": {
- "userIpAddress": "200.123.131.112"
}
}
{- "id": "e4668be7-cf30-4ec8-8026-1a0286487c95",
- "sender": {
- "id": "510ad931-e582-4b55-89ad-4ec91fa99560",
- "type": "COMPANY",
- "name": "My sender company",
- "phoneNumber": "+1123456435"
}, - "receiver": {
- "id": "ac7f2060-5b2b-4797-8c8a-35a77a0ed4a7",
- "type": "COMPANY",
- "name": "My receiver company",
- "phoneNumber": "+1123456435"
}, - "tenantId": "master",
- "externalId": null,
- "agentId": "d12d8d86-9f7a-4a6f-a712-f2b8f6c1a787",
- "createdAt": "2025-05-08T12:31:42.797785",
- "anchorCurrencyAmount": "102.53",
- "complianceStatus": "Approved",
- "payoutStatus": "Pending",
- "quoteId": "b189e950-7f58-4ab2-b5ef-b682d881d8ed",
- "fundingAccountId": "2ad02613-36fe-477e-a096-63e5d2dc55db",
- "recipientAccountId": "5ffae5fe-3eb0-4e87-a81f-0f540deb3684",
- "exchangeRate": "5.63197488",
- "totalAmount": "102.53",
- "receivingAmount": "577.4463844464",
- "fee": "0",
- "conversionAmount": "102.53",
- "originExchangeRate": {
- "fromCurrency": "USD",
- "toCurrency": "USD",
- "rate": "1.00000000"
}, - "destinationExchangeRate": {
- "fromCurrency": "USD",
- "toCurrency": "BRL",
- "rate": "5.63197488"
}, - "type": "FX",
- "senderId": "510ad931-e582-4b55-89ad-4ec91fa99560",
- "receiverId": "ac7f2060-5b2b-4797-8c8a-35a77a0ed4a7"
}
countryCode | string or null Country ISO 3166-1 alpha-2 code |
{- "errors": [
- {
- "fieldName": "countryCode",
- "error": "countryCode must be one of [BR, CO, IN, MX, PH]"
}
]
}
transactionId required | string or null |
{- "id": "9035ee18-052b-4176-a940-ccfe599a1829",
- "sender": {
- "id": "ce06773d-6472-4c93-bdf5-8eb68ab01c7f",
- "type": "COMPANY",
- "name": "Quantum Ledger Dynamics",
- "phoneNumber": "+1123456435"
}, - "receiver": {
- "id": "156675d5-1d1b-4b4d-997e-5c15ae129b82",
- "type": "COMPANY",
- "name": "Horizonte Invest Brasil",
- "phoneNumber": "+1123456435"
}, - "tenantId": "altour",
- "externalId": null,
- "agentId": "41f55211-1eea-4747-9a03-68e99f07ede5",
- "createdAt": "2025-05-29T17:26:27.264312",
- "anchorCurrencyAmount": "102.530000000000000",
- "complianceStatus": "Approved",
- "payoutStatus": "Pending",
- "quoteId": "af2d55d8-1d40-426a-8d4a-7454ccdcbe8a",
- "fundingAccountId": "61bc14a1-b3a2-40b4-b395-0496e4f554a1",
- "recipientAccountId": "4fbc57a6-f673-44ba-88aa-c6e71eb9181b",
- "exchangeRate": "5.571062480000000",
- "totalAmount": "102.530000000000000",
- "receivingAmount": "571.201036074400000",
- "fee": 0,
- "conversionAmount": "102.530000000000000",
- "originExchangeRate": {
- "fromCurrency": "USD",
- "toCurrency": "USD",
- "rate": "1.000000000000000"
}, - "destinationExchangeRate": {
- "fromCurrency": "USD",
- "toCurrency": "BRL",
- "rate": "5.571062480000000"
}, - "type": "FX",
- "senderId": "ce06773d-6472-4c93-bdf5-8eb68ab01c7f",
- "receiverId": "156675d5-1d1b-4b4d-997e-5c15ae129b82"
}
transactionId required | string |
[- {
- "id": "2f6b3f12-a63f-43f7-9bb4-4e98dfc75fe5",
- "complianceStatus": "Approved",
- "payoutStatus": "Pending",
- "transactionId": "46b4c393-3768-4ba4-b6d2-a6398e17dd78",
- "tenantId": "master",
- "externalId": "GMT000648512199",
- "createdAt": "2024-01-03T12:54:09.4557493",
- "messages": [ ]
}
]
Marked a transaction to be confirmed, status must be Created, Hold, Authorized, or Transmitted
tenant required | string |
transactionId required | string |
{- "message": "Transaction state Transmitted is not cancellable"
}
Retrieves a paginated list of wallets associated with a specific participant.The response includes wallet details such as ID, agent name, beneficiary name, asset and others.
participantId required | string Examples: a5aa93bc-e0c7-4db6-bb22-05447405a2d1 The unique identifier of the participant. |
tenant required | string Examples: master The unique identifier of the tenant. |
page | integer or null <int32> Default: 0 Examples: page=0 The page number for pagination (0-indexed) |
size | integer or null <int32> Default: 10 Examples: size=10 The number of items to return per page (page size). |
{- "total": 2,
- "size": 2,
- "page": 0,
- "numberOfPages": 1,
- "items": [
- {
- "id": "4a3439e3-7aaa-4e5b-be24-a34768095748",
- "asset": "USD",
- "fundingAccountId": "701ae44e-a5c2-4d91-ab37-285a820d57f7",
- "beneficiaryId": "6f2e2096-c9a3-4df0-8617-1ddc3abb16ad",
- "beneficiaryName": "Quantum Finance",
- "agentId": "821e8549-abc4-4370-8efe-5d398d46e4c6",
- "agentName": "Zenith Technologies",
- "status": "Pending",
- "createdAt": "2025-06-25T15:20:21.21811"
}, - {
- "id": "6c4db092-aaff-4590-a1ca-b2ff4d247b86",
- "asset": "USD",
- "fundingAccountId": "413f3e0e-6f8a-4e4e-afb6-62d7de6c529f",
- "beneficiaryId": "6f2e2096-c9a3-4df0-8617-1ddc3abb16ad",
- "beneficiaryName": "Quantum Finance",
- "agentId": "2b50fd4b-e5b8-4681-b77a-65016a1de1fc",
- "agentName": "Stellar Innovations",
- "status": "Pending",
- "createdAt": "2025-06-25T15:20:19.497077"
}
]
}
Create a wallet
tenant required | string |
Create a wallet for a company
companyId required | string or null <= 255 characters Company id to create wallet for |
{- "companyId": "e3eaea38-5cd5-4ecc-abcb-ec720fd016ee"
}
{- "id": "0c1787dd-115b-4ef1-bcfb-525ad2a320c5",
- "asset": "USD",
- "fundingAccountId": "bde7ff93-bef8-4f60-81f8-5aadc13dce8c",
- "beneficiaryId": "3f6be631-4ca0-41b8-a61f-b27d394afdd6",
- "beneficiaryName": "Quantum Ledger Dynamics",
- "agentId": "924c75b2-d498-444e-9eb3-d72d95a8d924",
- "agentName": "Agent company",
- "status": "Pending",
- "createdAt": "2025-06-13T16:50:33.393563"
}
Get wallet
tenant required | string |
walletId required | string |
{- "id": "5249999a-16ca-4a9e-92f1-1040da2c8f22",
- "asset": "USD",
- "fundingAccountId": "82807198-63f1-42aa-8a6e-1e92d35c65fe",
- "beneficiaryId": "e2e2fc85-d319-45f8-a828-8fb0d7cae3d8",
- "beneficiaryName": "Quantum Ledger Dynamics",
- "agentId": "b30a105e-4ab3-4689-8ac5-a914d29d0528",
- "agentName": "Agent company",
- "status": "Pending",
- "createdAt": "2025-07-22T13:20:23.551524"
}
Gets the current wallet balance
tenant required | string |
walletId required | string |
{- "walletId": "3280e10a-bea9-45c4-983e-9047109a64ed",
- "balance": "190.55",
- "asset": "USD"
}
Gets the wallet statement
tenant required | string |
walletId required | string |
from | string or null Examples: from=yyyy-mm-dd From |
page | integer or null <int32> Default: 0 Examples: page=0 Page number |
size | integer or null <int32> Default: 10 Examples: size=10 Page size |
to | string or null Examples: to=yyyy-mm-dd to |
{- "total": 2,
- "size": 2,
- "page": 0,
- "numberOfPages": 1,
- "items": [
- {
- "id": "ab64360d-5969-452c-8926-6a9253fa48cb",
- "amount": "-102.53",
- "currency": "USD",
- "status": "PROCESSED",
- "createdAt": "2025-06-25T22:48:41.168386"
}, - {
- "id": "2b3031eb-19a3-4fac-8af4-984b4a763fe9",
- "amount": "190.55",
- "currency": "USD",
- "status": "PROCESSED",
- "createdAt": "2025-06-25T22:48:38.985253"
}
]
}
Register an external transaction batch to analyzed by the compliance team
tenant required | string |
Transaction batch to be inserted
{- "timestamp": 1726054659,
- "agentId": "7b479e42-de5d-4f9f-830d-b9b704dbd021",
- "externalId": "000002",
- "productData": {
- "product": "BILLPAY",
- "invoice": "123423434",
- "amount": 3.99,
- "fee": 1.12,
- "provider": "FPL"
}, - "firstName": "John",
- "lastName": "doe",
- "address": {
- "line1": "4429 CANDLEWOOD ST",
- "line2": null,
- "zipcode": "90712",
- "city": "LAKEWOOD",
- "state": "CA",
- "country": "US"
}
}
This endpoint allows you to create a person who can be used as a sender, receiver, or company owner in transactions. Note:
Default Minimal Required Fields for Level 1 Compliance:
Address Verification:
Additional Information:
Person to be created
firstName | string or null <= 255 characters First name of the person |
lastName | string or null <= 255 characters Last name of the person |
phoneNumber | string or null <= 255 characters Required for us person |
string or null <= 255 characters Required for us person | |
gender | string or null Enum: "Male" "Female" "Other" Gender, Required for us person |
birthDate | string or null Formatted as yyyy-MM-dd, Required for US person |
externalId | string or null <= 255 characters External ID for the person |
(account_API_Address (object or null)) or (object or null) Person address | |
(account_API_Address (object or null)) or (object or null) Person Place of Birth address | |
occupation | string or null <= 255 characters Person Occupation |
Array of objects or null (account_API_Document1) Person documents, for: US [SSN, ITIN] / BR [CPF] | |
employerName | string or null <= 255 characters Employer Name |
(account_API_Address (object or null)) or (object or null) Employer address |
{- "firstName": "Bob",
- "lastName": "Danilo",
- "phoneNumber": "+1 123 456435",
- "email": "Danilo@gmail.com",
- "birthDate": "2015-08-04",
- "gender": "Male",
- "externalId": "Sender_12345",
- "address": {
- "countryCode": "US",
- "stateCode": "CA",
- "city": "LAKEWOOD",
- "line1": "4429 CANDLEWOOD ST",
- "line2": "Some line 2 address",
- "zipcode": "90712"
}
}
{- "id": "48066496-9445-41b7-acbe-85e069a77cb7",
- "firstName": "Bob",
- "lastName": "Danilo",
- "mainAddressId": "9c2ea7e5-51a2-4ea1-83cf-8948754486f8",
- "placeOfBirthId": null,
- "phoneNumber": "+1 123 456435",
- "email": "Danilo@gmail.com",
- "gender": "Male",
- "birthDate": "2015-08-04",
- "externalId": "Sender_12345",
- "updatedAt": "2023-01-01T12:00:00",
- "documents": null,
- "occupation": null,
- "documentId": null,
- "sourceOfFundsId": null,
- "employerName": null,
- "employerAddressId": null
}
Update a person. All fields that are not explicitly sent in payload or are sent with null values will not be altered
personId required | string or null |
Person to be updated
firstName | string or null <= 255 characters First name of the person |
lastName | string or null <= 255 characters Last name of the person |
phoneNumber | string or null <= 255 characters Phone number of the person |
string or null <= 255 characters E-mail of the person | |
gender | string or null Enum: "Male" "Female" "Other" Gender of the person |
birthDate | string or null Birth date of the person, formatted as yyyy-MM-dd |
externalId | string or null <= 255 characters External ID for the person |
occupation | string or null <= 255 characters Person Occupation |
Array of objects or null (account_API_Document1) Person documents, for: US [SSN, ITIN] / BR [CPF] |
{- "firstName": "Paulo"
}
{- "id": "0537fb55-f06e-407f-90b3-a6f04cb0f7b2",
- "firstName": "Paulo",
- "lastName": "Frei",
- "mainAddressId": "bdb8a94b-7ad0-4f60-919c-0c64ddbf80df",
- "placeOfBirthId": null,
- "externalId": "Sender_12345",
- "phoneNumber": "+1 231 456435",
- "email": "frei@gmail.com",
- "gender": "Male",
- "birthDate": "1990-08-04",
- "updatedAt": "2023-01-01T12:00:00",
- "documents": [
- {
- "document": "[MASKED]",
- "type": "SSN",
- "countryCode": "US"
}
], - "occupation": "Developer",
- "documentId": "e33cc352-1d42-4332-b7c5-14e64e62045b",
- "sourceOfFundsId": "e33cc352-1d42-4332-b7c5-14e64e62045b",
- "employerName": null,
- "employerAddressId": null
}
{- "id": "1f6b64bd-874d-4d90-97e5-fbcf4adcaf14",
- "firstName": "Bob",
- "lastName": "Danilo",
- "mainAddressId": "0235435d-27c8-47c4-ad64-12e3f8c98c49",
- "placeOfBirthId": "dcb1723c-c0fe-4671-af76-1ff86b9aba4a",
- "externalId": "Sender_12345",
- "updatedAt": "2024-03-01T07:14:13.831798",
- "phoneNumber": "+1 123 456435",
- "email": "Danilo@gmail.com",
- "gender": "Male",
- "birthDate": "2015-08-04",
- "documents": [
- {
- "document": "[MASKED]",
- "type": "SSN",
- "countryCode": "US"
}
], - "occupation": "Consultant",
- "documentId": null,
- "sourceOfFundsId": null,
- "employerName": "Employer Name",
- "employerAddressId": "41868f6d-35af-48bf-a5e3-961439646ce7"
}
Update a person Address
personId required | string or null |
Address to be updated
countryCode | string or null = 2 characters The two letter iso country code |
stateCode | string or null The stateCode, required for US residents |
city | string or null <= 255 characters The city name |
line1 | string or null <= 255 characters Address line 1 |
line2 | string or null <= 255 characters Address line 2 |
zipcode | string or null Zip code |
{- "countryCode": "US",
- "stateCode": "CA",
- "city": "LAKEWOOD",
- "line1": "4429 CANDLEWOOD ST",
- "line2": "Some line 2 address",
- "zipcode": "90712"
}
{- "id": "ed092aa8-7acf-43ad-9787-8af4dc61e5c1",
- "firstName": "Bob",
- "lastName": "Danilo",
- "mainAddressId": "99554e99-0a0e-4fef-9885-35db23cf3507",
- "placeOfBirthId": null,
- "externalId": "Sender_12345",
- "phoneNumber": "+1 123 456435",
- "email": "Danilo@gmail.com",
- "gender": "Male",
- "birthDate": "2015-08-04",
- "updatedAt": "2023-12-21T02:24:43.3191053",
- "documents": null,
- "occupation": null,
- "documentId": null,
- "sourceOfFundsId": null,
- "employerName": null,
- "employerAddressId": null
}
personId required | string |
{- "person": {
- "id": "44d53c0a-8496-4c60-b972-ee0295bac9c6",
- "firstName": "Bob",
- "lastName": "Danilo",
- "mainAddressId": "9eb6cb55-4b15-442f-8469-278ec2615a03",
- "placeOfBirthId": null,
- "phoneNumber": "+1 123 456435",
- "email": "Danilo@gmail.com",
- "gender": "Male",
- "birthDate": "2015-08-04",
- "externalId": "Sender_12345",
- "updatedAt": "2023-01-01T12:00:00",
- "documents": null,
- "occupation": null,
- "documentId": null,
- "sourceOfFundsId": null,
- "employerName": null,
- "employerAddressId": null
}, - "employerAddress": null,
- "placeOfBirth": null,
- "address": {
- "id": "9eb6cb55-4b15-442f-8469-278ec2615a03",
- "stateCode": "CA",
- "countryCode": "US",
- "city": "LAKEWOOD",
- "line1": "4429 CANDLEWOOD ST",
- "line2": "Some line 2 address",
- "zipcode": "90712"
}, - "complianceLevel": {
- "personId": "44d53c0a-8496-4c60-b972-ee0295bac9c6",
- "currentComplianceLevel": {
- "requiredFields": [
- "lastName",
- "name",
- "phoneNumber",
- "residentialAddress"
], - "perTransactionFields": [ ],
- "level": "LEVEL_1",
- "limits": {
- "oneDayLimit": {
- "amount": "2999.00",
- "currency": "USD"
}, - "thirtyDaysLimit": {
- "amount": "6000.00",
- "currency": "USD"
}, - "oneHundredAndEightyDaysLimit": {
- "amount": "9999.00",
- "currency": "USD"
}
}
}, - "nextComplianceLevel": {
- "level": "LEVEL_2",
- "requiredFields": [
- "documentId",
- "occupation",
- "ssn"
], - "perTransactionFields": [ ],
- "limits": {
- "oneDayLimit": {
- "amount": "10000.00",
- "currency": "USD"
}, - "thirtyDaysLimit": {
- "amount": "20000.00",
- "currency": "USD"
}, - "oneHundredAndEightyDaysLimit": {
- "amount": "30000.00",
- "currency": "USD"
}
}
}, - "missingFieldsForNextComplianceLevel": [
- "documentId",
- "occupation",
- "ssn"
]
}, - "documentId": null
}
Update person employer address
personId required | string or null |
Address to be updated
countryCode | string or null = 2 characters The two letter iso country code |
stateCode | string or null The stateCode, required for US residents |
city | string or null <= 255 characters The city name |
line1 | string or null <= 255 characters Address line 1 |
line2 | string or null <= 255 characters Address line 2 |
zipcode | string or null Zip code |
{- "countryCode": "US",
- "stateCode": "CA",
- "city": "LAKEWOOD",
- "line1": "4429 CANDLEWOOD ST",
- "line2": "Some line 2 address",
- "zipcode": "90712"
}
{- "id": "ed092aa8-7acf-43ad-9787-8af4dc61e5c1",
- "firstName": "Bob",
- "lastName": "Danilo",
- "mainAddressId": "99554e99-0a0e-4fef-9885-35db23cf3507",
- "placeOfBirthId": null,
- "externalId": "Sender_12345",
- "phoneNumber": "+1 123 456435",
- "email": "Danilo@gmail.com",
- "gender": "Male",
- "birthDate": "2015-08-04",
- "updatedAt": "2023-12-21T02:24:43.3191053",
- "documents": null,
- "occupation": null,
- "documentId": null,
- "sourceOfFundsId": null,
- "employerName": null,
- "employerAddressId": "3fc2948b-9359-4378-a37e-eb4092dd4dd6"
}
Update person place of birth
personId required | string or null |
Address to be updated
countryCode | string or null = 2 characters The two letter iso country code |
stateCode | string or null The stateCode, required for US residents |
city | string or null <= 255 characters The city name |
line1 | string or null <= 255 characters Address line 1 |
line2 | string or null <= 255 characters Address line 2 |
zipcode | string or null Zip code |
{- "countryCode": "US",
- "stateCode": "CA",
- "city": "LAKEWOOD",
- "line1": "4429 CANDLEWOOD ST",
- "line2": "Some line 2 address",
- "zipcode": "90712"
}
{- "id": "ed092aa8-7acf-43ad-9787-8af4dc61e5c1",
- "firstName": "Bob",
- "lastName": "Danilo",
- "mainAddressId": "99554e99-0a0e-4fef-9885-35db23cf3507",
- "placeOfBirthId": null,
- "externalId": "Sender_12345",
- "phoneNumber": "+1 123 456435",
- "email": "Danilo@gmail.com",
- "gender": "Male",
- "birthDate": "2015-08-04",
- "updatedAt": "2023-12-21T02:24:43.3191053",
- "documents": null,
- "occupation": null,
- "documentId": null,
- "sourceOfFundsId": null,
- "employerName": null,
- "employerAddressId": null
}
[- {
- "id": 10606,
- "name": "Belo Campo",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "BA",
- "stateId": 2002
}, - {
- "id": 10607,
- "name": "Belo Horizonte",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "MG",
- "stateId": 1998
}, - {
- "id": 10608,
- "name": "Belo Jardim",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "PE",
- "stateId": 2006
}, - {
- "id": 10609,
- "name": "Belo Monte",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "AL",
- "stateId": 2007
}, - {
- "id": 10610,
- "name": "Belo Oriente",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "MG",
- "stateId": 1998
}, - {
- "id": 10611,
- "name": "Belo Vale",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "MG",
- "stateId": 1998
}, - {
- "id": 10983,
- "name": "Campo Belo do Sul",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "SC",
- "stateId": 2014
}, - {
- "id": 13199,
- "name": "Monte Belo do Sul",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "RS",
- "stateId": 2001
}
]
countryCode required | string Country ISO 3166-1 alpha-2 code |
cityName required | string Default: "" City name to search. Note that case and accents are not ignored. |
[- {
- "id": 10606,
- "name": "Belo Campo",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "BA",
- "stateId": 2002
}, - {
- "id": 10607,
- "name": "Belo Horizonte",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "MG",
- "stateId": 1998
}, - {
- "id": 10608,
- "name": "Belo Jardim",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "PE",
- "stateId": 2006
}, - {
- "id": 10609,
- "name": "Belo Monte",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "AL",
- "stateId": 2007
}, - {
- "id": 10610,
- "name": "Belo Oriente",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "MG",
- "stateId": 1998
}, - {
- "id": 10611,
- "name": "Belo Vale",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "MG",
- "stateId": 1998
}, - {
- "id": 10983,
- "name": "Campo Belo do Sul",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "SC",
- "stateId": 2014
}, - {
- "id": 13199,
- "name": "Monte Belo do Sul",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "RS",
- "stateId": 2001
}
]
countryCode required | string Country ISO 3166-1 alpha-2 code |
[- {
- "id": 2012,
- "name": "Acre",
- "stateCode": "AC",
- "countryId": 31
}, - {
- "id": 2007,
- "name": "Alagoas",
- "stateCode": "AL",
- "countryId": 31
}, - {
- "id": 1999,
- "name": "Amapá",
- "stateCode": "AP",
- "countryId": 31
}, - {
- "id": 2004,
- "name": "Amazonas",
- "stateCode": "AM",
- "countryId": 31
}, - {
- "id": 2002,
- "name": "Bahia",
- "stateCode": "BA",
- "countryId": 31
}, - {
- "id": 2016,
- "name": "Ceará",
- "stateCode": "CE",
- "countryId": 31
}, - {
- "id": 2017,
- "name": "Distrito Federal",
- "stateCode": "DF",
- "countryId": 31
}, - {
- "id": 2018,
- "name": "Espírito Santo",
- "stateCode": "ES",
- "countryId": 31
}, - {
- "id": 2000,
- "name": "Goiás",
- "stateCode": "GO",
- "countryId": 31
}, - {
- "id": 2015,
- "name": "Maranhão",
- "stateCode": "MA",
- "countryId": 31
}, - {
- "id": 2011,
- "name": "Mato Grosso",
- "stateCode": "MT",
- "countryId": 31
}, - {
- "id": 2010,
- "name": "Mato Grosso do Sul",
- "stateCode": "MS",
- "countryId": 31
}, - {
- "id": 1998,
- "name": "Minas Gerais",
- "stateCode": "MG",
- "countryId": 31
}, - {
- "id": 2009,
- "name": "Pará",
- "stateCode": "PA",
- "countryId": 31
}, - {
- "id": 2005,
- "name": "Paraíba",
- "stateCode": "PB",
- "countryId": 31
}, - {
- "id": 2022,
- "name": "Paraná",
- "stateCode": "PR",
- "countryId": 31
}, - {
- "id": 2006,
- "name": "Pernambuco",
- "stateCode": "PE",
- "countryId": 31
}, - {
- "id": 2008,
- "name": "Piauí",
- "stateCode": "PI",
- "countryId": 31
}, - {
- "id": 1997,
- "name": "Rio de Janeiro",
- "stateCode": "RJ",
- "countryId": 31
}, - {
- "id": 2019,
- "name": "Rio Grande do Norte",
- "stateCode": "RN",
- "countryId": 31
}, - {
- "id": 2001,
- "name": "Rio Grande do Sul",
- "stateCode": "RS",
- "countryId": 31
}, - {
- "id": 2013,
- "name": "Rondônia",
- "stateCode": "RO",
- "countryId": 31
}, - {
- "id": 4858,
- "name": "Roraima",
- "stateCode": "RR",
- "countryId": 31
}, - {
- "id": 2014,
- "name": "Santa Catarina",
- "stateCode": "SC",
- "countryId": 31
}, - {
- "id": 2021,
- "name": "São Paulo",
- "stateCode": "SP",
- "countryId": 31
}, - {
- "id": 2003,
- "name": "Sergipe",
- "stateCode": "SE",
- "countryId": 31
}, - {
- "id": 2020,
- "name": "Tocantins",
- "stateCode": "TO",
- "countryId": 31
}
]
city required | string Default: "" City name to check. Note that case and accents are not ignored. |
countryCode required | string Default: "" |
line1 required | string Default: "" |
line2 required | string Default: "" |
stateCode required | string Default: "" The stateCode, required for US residents, to check. Note that case and accents are not ignored. |
zipCode required | string Default: "" City name to check. Note that case and accents are not ignored. |
{- "errors": [
- {
- "fieldName": "city",
- "error": "City Springfield not match the USPS city LAKEWOOD"
}
]
}
This endpoint allows you to create an agent who can be used to make transactions. Note:
This will return an Agent ID and an Agent API key. Save these fields, as it is necessary for authenticating to some endpoints.
The Agent must be approved by the compliance team before it can make transactions. Before approval, attempts to authenticate using the Agent ID and Agent API key will fail with 403 response
tenant required | string |
Agent to be created
externalId | string or null <= 255 characters |
email required | string or null <= 255 characters |
companyId required | string or null Company ID |
account_API_AddressInput (object) or object Agent address | |
businessName | string or null Agent business name |
{- "externalId": "Agent_12345",
- "email": "test@test.com",
- "companyId": "${companyId}",
- "businessName": "Bkt Services Corporation",
- "mainAddress": {
- "type": "Headquarters",
- "stateCode": "CA",
- "countryCode": "US",
- "city": "Springfield",
- "line1": "4429 CANDLEWOOD ST",
- "line2": "Some line 2 address",
- "zipcode": "90712"
}
}
{- "id": "2aa3cbab-0e94-42fc-849f-3d467b2b4f3b",
- "externalId": "Agent_12345",
- "email": "test@test.com",
- "orgName": "master",
- "companyId": "1db8fbd4-6f77-45d9-9449-018ee94372b6",
- "status": "Pending",
- "apiKey": "5734a303-9bf0-42ef-9e24-6505d49395d2",
- "businessName": "Bkt Services Corporation",
- "mainAddress": {
- "id": "1e75ed7c-e358-4bd8-8f5e-405bcf0260ef",
- "type": "HEADQUARTERS",
- "stateCode": "CA",
- "countryCode": "US",
- "city": "Springfield",
- "line1": "4429 CANDLEWOOD ST",
- "line2": "Some line 2 address",
- "zipcode": "90712"
}
}
[- "achAuthorizationFormWithAVoidCheckAttached",
- "additionalAuthorizedLocationsForm",
- "addressChangeDocument",
- "agencyCommissionSchedule",
- "agencyPreApprovalApplication",
- "agentCheckCashingLicense",
- "agreementForm",
- "articlesOfCorporationOrganizationOrPartnershipAgreement",
- "auditedFinancialStatementsLastTwoYears",
- "bankAgreementForm",
- "businessAndLitigationHistory",
- "businessRegistration",
- "certificateOfIncorporation",
- "certificateOfOwnership",
- "certificateOfResale",
- "companyOrganizationChart",
- "completedDueDiligenceForm",
- "complianceAddendumToAgencyAgreement",
- "complianceManual",
- "complianceOfficerAssign",
- "complianceSurvey",
- "complianceTrainingAcknowledgement",
- "complianceTrainingQuiz",
- "complianceTrainingRenewal",
- "complianceVisit",
- "complianceVisit2016",
- "complianceVisit2016Certificate",
- "complianceVisit2017",
- "complianceVisit2019",
- "complianceVisit2020",
- "contactList",
- "contract",
- "copyOfBusinessLicenseSellersPermit",
- "copyOfEinIrsLetter",
- "courtesyVisit2015",
- "courtesyVisit2016",
- "creditAndBackgroundCheckReportComplianceOnly",
- "directDepositAgreement",
- "equipmentResponsibility",
- "gmtCertificate",
- "invoice",
- "listOfAuthorizedSignatories",
- "listOfShareholders",
- "listOfShareholders100PercentOfShares",
- "monthlyAudit",
- "mysteryShopping",
- "negativeNewsSearch",
- "ofacVerification",
- "onboardingZip",
- "other",
- "pepVerification",
- "phoneRechargeContract",
- "photosOfApplicantsStoreFront",
- "proofOfAddress",
- "proofOfDbaFiling",
- "rdcAgreement",
- "releaseOfLiability",
- "summaryOfDataProtectionAndCyberSecurityPoliciesAndProcedures",
- "terminationChecklist",
- "terminationLetter",
- "tosAndDisclosuresPlacement",
- "userComplianceTraining",
- "usernameAssignmentForm",
- "validPhotoId",
- "visitDocumentsDisplay",
- "visitReport",
- "voidedCheck",
- "w9",
- "wpDeclarationLetter",
- "wpVideoVerification2019"
]
Get companies by filters
fein | string or null Examples: fein=12-3456789 Federal Employer Identification Number |
legalName | string or null Legal name |
page | integer or null <int32> Default: 0 Examples: page=0 Page number |
phoneNumber | string or null Phone number |
size | integer or null <int32> Default: 10 Examples: size=10 Page size |
sort required | object Examples: sort=createdAt,DESC Sort by field and order. Each item should be in the format 'field,order' where 'field' is one of ['createdAt'] and 'order' is either ASC or DESC. |
{- "total": 3,
- "size": 2,
- "page": 0,
- "numberOfPages": 2,
- "items": [
- {
- "id": "a69f8797-72fc-4e97-9138-22865f494997",
- "legalName": "CCDDCC",
- "tradeName": "Very cool company",
- "businessType": "LLC",
- "phoneNumber": "+1123456435",
- "document": "12-6644559",
- "incorporationCountry": "US",
- "addressId": "289ed41d-35ae-4124-a59d-73f475fe6703",
- "bankAccountId": "5483744f-b826-4b67-945e-10b660e4bc7d"
}, - {
- "id": "d19235e9-6cfa-4ba4-ae79-fcc2cc65181e",
- "legalName": "BBCCBB",
- "tradeName": "Very cool company",
- "businessType": "LLC",
- "phoneNumber": "+1123456435",
- "document": "12-5544559",
- "incorporationCountry": "US",
- "addressId": "79935d42-2387-43f1-aae8-6ae7691afd1b",
- "bankAccountId": "ec0a5def-bed6-4df9-b021-c9d78d77217d"
}
]
}
This endpoint allows you to create a new company.
The request body must include essential company details such as legal name, trade name, phone number, incorporation country, business type, document, address and bank account information.
Optionally, you can include ownership details. Each owner must be a valid person (create person endpoint) and you must provide an ownership percentage.
If ownership details are provided, the sum of all ownership percentages must equal 1.0.
Company to be created
legalName required | string or null <= 255 characters Legal name |
tradeName required | string or null <= 255 characters Trade name |
incorporationCountry required | string or null Enum: "US" "BR" Incorporation country |
businessType required | string or null A business type by incorporation country, for: US [LLC, CORP, INC, PARTNERSHIP, SOLE_PROPRIETORSHIP, NONPROFIT, LLP, PLC, LTD, S_CORP, C_CORP, COOPERATIVE, JOINT_VENTURE, FRANCHISE, ASSOCIATION, TRUST, PRIVATE_COMPANY, PUBLIC_COMPANY, PROFESSIONAL_CORPORATION, BENEFIT_CORPORATION, OTHER] BR [MEI, ME, EI, EIRELI, EPP, SLU, LTDA, SA, SS, COOPERATIVA, OTHER] |
document required | string or null A document by incorporation country, for: US [FEIN] / BR [CNPJ] |
fein | string or null^\d{2}-\d{7}$ Deprecated Federal Employer Identification Number (FEIN) in the format of XX-XXXXXXX |
phoneNumber required | string or null^\+[1-9]\d{1,14}$ Phone number in E.164 format |
Array of objects or null (account_API_OwnerPayload) List of the company owners | |
required | (account_API_AddressInput (object or null)) or (object or null) Address |
required | (account_API_BankAccountInput (object or null)) or (object or null) Bank account |
{- "legalName": "My Company",
- "tradeName": "Very cool company",
- "phoneNumber": "+1123456435",
- "businessType": "LLC",
- "fein": "12-3456789",
- "owners": [
- {
- "ownerId": "${ownerId}",
- "ownershipPercentage": 1
}
], - "address": {
- "countryCode": "US",
- "stateCode": "CA",
- "city": "LAKEWOOD",
- "line1": "4429 CANDLEWOOD ST",
- "line2": "Some line 2 address",
- "zipcode": "90712"
}, - "bankAccount": {
- "bankName": "Wells fargo",
- "routingNumber": "123456789",
- "accountNumber": "123456789"
}
}
{- "id": "70f77430-98ec-4ea5-a642-c3cef0115ee8",
- "legalName": "My Company",
- "tradeName": "Very cool company",
- "businessType": "LLC",
- "phoneNumber": "+1123456435",
- "incorporationCountry": "US",
- "document": "12-3456789",
- "fein": "12-3456789",
- "createdAt": "2024-06-10T14:20:30.08097",
- "updatedAt": "2024-06-10T14:20:30.08097",
- "address": {
- "id": "1b1b1e56-430c-47da-b462-c097f6ad7bba",
- "stateCode": "CA",
- "countryCode": "US",
- "city": "LAKEWOOD",
- "line1": "4429 CANDLEWOOD ST",
- "line2": "Some line 2 address",
- "zipcode": "90712"
}, - "bankAccount": {
- "id": "0dae3162-52ea-48bd-96e2-617aad26bdc6",
- "bankName": "Wells fargo",
- "routingNumber": "123456789",
- "accountNumber": "123456789"
}, - "owners": [
- {
- "id": "4e31d3f5-93c3-48ba-87be-dc4d05b6a2c0",
- "firstName": "Bob",
- "lastName": "Danilo",
- "phoneNumber": "+1 123 456435",
- "email": "Danilo@gmail.com",
- "gender": "Male",
- "birthDate": "2015-08-04",
- "documents": [
- {
- "document": "[MASKED]",
- "type": "SSN",
- "countryCode": "US"
}
], - "occupation": "Consultant",
- "ownershipPercentage": 1,
- "address": {
- "id": "edddfa94-319e-4125-aea5-c0b146cb6a17",
- "stateCode": "CA",
- "countryCode": "US",
- "city": "LAKEWOOD",
- "line1": "4429 CANDLEWOOD ST",
- "line2": "Some line 2 address",
- "zipcode": "90712"
}, - "placeOfBirth": {
- "id": "65d61869-345a-4fdc-afcf-89a3d3bb3fd0",
- "stateCode": "CA",
- "countryCode": "US",
- "city": "LAKEWOOD",
- "line1": "4429 CANDLEWOOD ST",
- "line2": "Some line 2 address",
- "zipcode": "90712"
}, - "documentId": null
}
]
}
[- "achAuthorizationFormWithAVoidCheckAttached",
- "additionalAuthorizedLocationsForm",
- "addressChangeDocument",
- "agencyCommissionSchedule",
- "agencyPreApprovalApplication",
- "agentCheckCashingLicense",
- "agreementForm",
- "articlesOfCorporationOrganizationOrPartnershipAgreement",
- "auditedFinancialStatementsLastTwoYears",
- "bankAgreementForm",
- "businessAndLitigationHistory",
- "businessRegistration",
- "certificateOfIncorporation",
- "certificateOfOwnership",
- "certificateOfResale",
- "companyOrganizationChart",
- "completedDueDiligenceForm",
- "complianceAddendumToAgencyAgreement",
- "complianceManual",
- "complianceOfficerAssign",
- "complianceSurvey",
- "complianceTrainingAcknowledgement",
- "complianceTrainingQuiz",
- "complianceTrainingRenewal",
- "complianceVisit",
- "complianceVisit2016",
- "complianceVisit2016Certificate",
- "complianceVisit2017",
- "complianceVisit2019",
- "complianceVisit2020",
- "contactList",
- "contract",
- "copyOfBusinessLicenseSellersPermit",
- "copyOfEinIrsLetter",
- "courtesyVisit2015",
- "courtesyVisit2016",
- "creditAndBackgroundCheckReportComplianceOnly",
- "directDepositAgreement",
- "equipmentResponsibility",
- "gmtCertificate",
- "invoice",
- "listOfAuthorizedSignatories",
- "listOfShareholders",
- "listOfShareholders100PercentOfShares",
- "monthlyAudit",
- "mysteryShopping",
- "negativeNewsSearch",
- "ofacVerification",
- "onboardingZip",
- "other",
- "pepVerification",
- "phoneRechargeContract",
- "photosOfApplicantsStoreFront",
- "proofOfAddress",
- "proofOfDbaFiling",
- "rdcAgreement",
- "releaseOfLiability",
- "summaryOfDataProtectionAndCyberSecurityPoliciesAndProcedures",
- "terminationChecklist",
- "terminationLetter",
- "tosAndDisclosuresPlacement",
- "userComplianceTraining",
- "usernameAssignmentForm",
- "validPhotoId",
- "visitDocumentsDisplay",
- "visitReport",
- "voidedCheck",
- "w9",
- "wpDeclarationLetter",
- "wpVideoVerification2019"
]
Update a company, all fields that are not in payload or null will not be altered
companyId required | string or null |
Company to be updated
legalName | string or null <= 255 characters Legal name |
tradeName | string or null <= 255 characters Trade name |
businessType | string or null A business type by incorporation country, for: US [LLC, CORP, INC, PARTNERSHIP, SOLE_PROPRIETORSHIP, NONPROFIT, LLP, PLC, LTD, S_CORP, C_CORP, COOPERATIVE, JOINT_VENTURE, FRANCHISE, ASSOCIATION, TRUST, PRIVATE_COMPANY, PUBLIC_COMPANY, PROFESSIONAL_CORPORATION, BENEFIT_CORPORATION, OTHER] BR [MEI, ME, EI, EIRELI, EPP, SLU, LTDA, SA, SS, COOPERATIVA, OTHER] |
document | string or null A document by incorporation country, for: US [FEIN] / BR [CNPJ] |
fein | string or null^\d{2}-\d{7}$ Deprecated Federal Employer Identification Number (FEIN) in the format of XX-XXXXXXX |
phoneNumber | string or null^\+[1-9]\d{1,14}$ Phone number in E.164 format |
{- "tradeName": "Cooler company"
}
{- "id": "68aebdf0-6f81-4bac-8ae5-55a5d38a8dc1",
- "legalName": "New Company Name",
- "tradeName": "Cooler company",
- "businessType": "INC",
- "phoneNumber": "+1321987654",
- "fein": "21-3456789",
- "document": "21-3456789",
- "incorporationCountry": "US",
- "address": {
- "id": "5228b7e2-bf7e-41a8-bfa9-6cf396f67dd8",
- "stateCode": "CA",
- "countryCode": "US",
- "city": "LAKEWOOD",
- "line1": "4429 CANDLEWOOD ST",
- "line2": "Some line 2 address",
- "zipcode": "90712"
}, - "bankAccount": {
- "id": "2c5a5880-3a99-457f-83e1-e40f5dccefee",
- "bankName": "Wells fargo",
- "routingNumber": "123456789",
- "accountNumber": "123456789"
}, - "owners": [
- {
- "id": "68b69f94-9983-4bab-b776-ebdc7667ac23",
- "firstName": "Bob",
- "lastName": "Danilo",
- "phoneNumber": "+1 123 456435",
- "email": "Danilo@gmail.com",
- "gender": "Male",
- "birthDate": "2015-08-04",
- "documents": [
- {
- "document": "[MASKED]",
- "type": "SSN",
- "countryCode": "US"
}
], - "occupation": "Consultant",
- "ownershipPercentage": 1,
- "address": {
- "id": "2998b2b4-9d6c-4bf8-943b-934cc80d74a3",
- "stateCode": "CA",
- "countryCode": "US",
- "city": "LAKEWOOD",
- "line1": "4429 CANDLEWOOD ST",
- "line2": "Some line 2 address",
- "zipcode": "90712"
}, - "placeOfBirth": {
- "id": "72569c4d-8339-4c00-9589-abd1a78fbc76",
- "stateCode": "CA",
- "countryCode": "US",
- "city": "LAKEWOOD",
- "line1": "4429 CANDLEWOOD ST",
- "line2": "Some line 2 address",
- "zipcode": "90712"
}, - "documentId": null
}
], - "createdAt": "2024-02-24T06:17:04.549734",
- "updatedAt": "2024-02-24T06:17:04.576335"
}
{- "id": "e2e54b03-fa5f-402b-bcac-e09554208225",
- "legalName": "My Company",
- "tradeName": "Very cool company",
- "businessType": "LLC",
- "phoneNumber": "+1123456435",
- "fein": "12-3456789",
- "document": "12-3456789",
- "incorporationCountry": "US",
- "address": {
- "id": "99b1fc79-01f5-42e1-863c-455bc43eeade",
- "stateCode": "CA",
- "countryCode": "US",
- "city": "LAKEWOOD",
- "line1": "4429 CANDLEWOOD ST",
- "line2": "Some line 2 address",
- "zipcode": "90712"
}, - "bankAccount": {
- "id": "aac06fd2-03c7-4727-bc2d-c3851de4b93f",
- "bankName": "Wells fargo",
- "routingNumber": "123456789",
- "accountNumber": "123456789"
}, - "owners": [
- {
- "id": "9463165d-147a-4607-9033-36582f79863d",
- "firstName": "Bob",
- "lastName": "Danilo",
- "phoneNumber": "+1 123 456435",
- "email": "Danilo@gmail.com",
- "gender": "Male",
- "birthDate": "2015-08-04",
- "documents": [
- {
- "document": "[MASKED]",
- "type": "SSN",
- "countryCode": "US"
}
], - "occupation": "Consultant",
- "ownershipPercentage": 1,
- "address": {
- "id": "b36f9552-4307-45d0-9653-7ff7e0afdfa8",
- "stateCode": "CA",
- "countryCode": "US",
- "city": "LAKEWOOD",
- "line1": "4429 CANDLEWOOD ST",
- "line2": "Some line 2 address",
- "zipcode": "90712"
}, - "placeOfBirth": {
- "id": "d927a909-69ca-4a30-9f9c-b9a4bd8c16c1",
- "stateCode": "CA",
- "countryCode": "US",
- "city": "LAKEWOOD",
- "line1": "4429 CANDLEWOOD ST",
- "line2": "Some line 2 address",
- "zipcode": "90712"
}, - "documentId": null
}
], - "createdAt": "2024-02-24T06:17:04.549734",
- "updatedAt": "2024-02-24T06:17:04.576335"
}
companyId required | string or null |
{- "documents": [
- {
- "id": "695164fe-e94e-4ddf-91c6-0d856d600e82",
- "subtype": "agreementForm",
- "verificationStatus": "REJECTED",
- "expirationDate": "2031-02-02",
- "fileName": "695164fe-e94e-4ddf-91c6-0d856d600e82-generic-agreementForm.png",
- "documentType": "generic",
- "isValid": false,
- "isExpired": false,
- "createdAt": "2024-07-25T14:06:32.417959"
}, - {
- "id": "70766d7e-0608-49df-83d0-8c26f3dfe117",
- "subtype": "certificateOfResale",
- "verificationStatus": "VERIFIED",
- "expirationDate": "2031-02-02",
- "fileName": "70766d7e-0608-49df-83d0-8c26f3dfe117-generic-certificateOfResale.png",
- "documentType": "generic",
- "isValid": true,
- "isExpired": false,
- "createdAt": "2024-07-25T14:06:32.417959"
}, - {
- "id": "381765f7-6870-4ba5-8170-eac2c5094de3",
- "subtype": "businessRegistration",
- "verificationStatus": "PENDING",
- "expirationDate": "2024-01-01",
- "fileName": "381765f7-6870-4ba5-8170-eac2c5094de3-generic-businessRegistration.png",
- "documentType": "generic",
- "isValid": false,
- "isExpired": true,
- "createdAt": "2024-07-25T14:06:32.417959"
}, - {
- "id": "722cc5ed-c68a-446e-9d7d-2da7793e5893",
- "subtype": "certificateOfIncorporation",
- "verificationStatus": "PENDING",
- "expirationDate": "2031-02-02",
- "fileName": "722cc5ed-c68a-446e-9d7d-2da7793e5893-generic-certificateOfIncorporation.png",
- "documentType": "generic",
- "isValid": false,
- "isExpired": false,
- "createdAt": "2024-07-25T14:06:32.417959"
}
]
}
Upload company document, allowed types:
Complete list can be obtained in get company document types endpoint
companyId required | string or null |
type required | string or null |
expirationDate | string or null Formatted as yyyy-MM-dd, must be a future date |
file | string or null <binary> The file to be uploaded |
{- "id": "bc1e5e4c-5ac2-4393-8db9-c8693dca4cc3",
- "subtype": "businessRegistration",
- "verificationStatus": "PENDING",
- "expirationDate": "2031-02-02",
- "isExpired": false,
- "isValid": false,
- "fileName": "deef3416-46f3-4b56-87b3-8501d87d7c44-generic-other.jpg",
- "documentType": "generic",
- "createdAt": "2024-07-25T14:06:32.417959"
}
documentId required | string or null |
{- "documentId": "97b8786c-c120-40c2-aff9-eeabd21096f9",
- "expirationDate": "2031-02-02",
- "isExpired": false,
- "isValid": false,
- "verificationStatus": [
- {
- "status": "PENDING",
- "message": "",
- "createdAt": "2024-06-19T14:08:31.889101"
}
]
}
documentId required | string or null |
{- "documentId": "97b8786c-c120-40c2-aff9-eeabd21096f9",
- "status": "PENDING",
- "message": "",
- "expirationDate": "2031-02-02",
- "isExpired": false,
- "isValid": false,
- "createdAt": "2024-06-19T14:08:31.889101"
}
Get the participant compliance levels. A participant can be either a Person or a Company
participantId required | string |
{- "participantId": "93714eaa-2f6b-417c-bce1-5930b8e6a344",
- "currentComplianceLevel": {
- "level": "LEVEL_0",
- "limits": {
- "oneDayLimit": {
- "amount": "0.00",
- "currency": "USD"
}, - "thirtyDaysLimit": {
- "amount": "0.00",
- "currency": "USD"
}, - "oneHundredAndEightyDaysLimit": {
- "amount": "0.00",
- "currency": "USD"
}
}, - "requiredFields": [ ],
- "perTransactionFields": [ ]
}, - "nextComplianceLevel": {
- "level": "LEVEL_1",
- "limits": {
- "thirtyDaysLimit": {
- "amount": "6000.00",
- "currency": "USD"
}, - "oneHundredAndEightyDaysLimit": {
- "amount": "9999.00",
- "currency": "USD"
}, - "oneDayLimit": {
- "amount": "2999.00",
- "currency": "USD"
}
}, - "requiredFields": [
- "birthDate",
- "documentIdNumber",
- "lastName",
- "name",
- "occupation",
- "phoneNumber",
- "residentialAddress"
], - "perTransactionFields": [ ]
}, - "missingFieldsForNextComplianceLevel": [
- "documentIdNumber",
- "occupation"
]
}
participantId required | string |
[- {
- "id": "1101fdf4-94ee-41c2-80b9-6a6ce06c1742",
- "data": {
- "id": "cf72718c-b912-4431-86b3-e60ed047a8f1",
- "type": "COMPANY"
}, - "verificationStatus": "PENDING",
- "message": "City Springfield not match the USPS city LAKEWOOD",
- "type": "CITY_ZIPCODE_MISMATCH"
}
]
personId required | string |
documentSubtype | string or null |
documentType | string or null |
status | string or null |
{- "documents": [
- {
- "id": "4537a0de-51c3-42ef-b623-745dcc9cf355",
- "subtype": "savings",
- "verificationStatus": "PENDING",
- "expirationDate": "2031-02-02",
- "isExpired": false,
- "isValid": false,
- "fileName": "e1567c78-b3e8-43e2-981d-f9f2424ecc13-proofOfSourceOfFunds-savings.jpg",
- "documentType": "sourceOfFunds",
- "createdAt": "2024-07-25T14:06:32.417959"
}, - {
- "id": "10e9214a-9503-432d-a933-15f254b6efba",
- "subtype": "passport",
- "verificationStatus": "PENDING",
- "expirationDate": "2031-02-02",
- "isExpired": false,
- "isValid": false,
- "fileName": "e1567c78-b3e8-43e2-981d-f9f2424ecc13-documentId-passport.jpg",
- "documentType": "documentId",
- "issuer": "CA",
- "idNumber": "321313",
- "createdAt": "2024-07-25T14:06:32.417959"
}, - {
- "id": "fedf0564-88d0-4a74-8246-4255aa746746",
- "subtype": "other",
- "verificationStatus": "PENDING",
- "expirationDate": "2031-02-02",
- "isExpired": false,
- "isValid": false,
- "fileName": "89488a74-8e31-4cb0-8b22-d7109b53a459-generic-other.jpg",
- "documentType": "generic",
- "createdAt": "2024-07-25T14:06:32.417959"
}
]
}
Upload Document Identification.
Additional Information:
personId required | string or null |
subtype required | string or null Enum: "nationalId" "passport" "driversLicense" "stateId" Document subtype |
issuer | string or null <= 255 characters Document Issuer |
idNumber | string or null Document Identification number |
expirationDate | string or null Formatted as yyyy-MM-dd, Required for US person |
file | string or null <binary> |
{- "id": "5f115bed-8cac-4465-ae3c-45c29238f3ea",
- "subtype": "nationalId",
- "verificationStatus": "PENDING",
- "expirationDate": "2031-02-02",
- "isExpired": false,
- "isValid": false,
- "fileName": "132a1051-24c0-47ba-ae86-ce8d2045de30-documentId-nationalId.png",
- "documentType": "documentId",
- "issuer": "CA",
- "idNumber": "321313",
- "createdAt": "2024-07-25T14:06:32.417959"
}
Upload Source of funds document
Additional information's:
personId required | string or null |
subtype required | string or null Enum: "savings" "bankAccount" "settlement" "businessSale" "houseSale" "salary" "other" Source of funds subtype |
expirationDate | string or null Formatted as yyyy-MM-dd, Required for US person |
file | string or null <binary> |
{- "id": "5f115bed-8cac-4465-ae3c-45c29238f3ea",
- "subtype": "savings",
- "verificationStatus": "PENDING",
- "expirationDate": "2031-02-02",
- "isExpired": false,
- "isValid": false,
- "fileName": "132a1051-24c0-47ba-ae86-ce8d2045de30-documentId-nationalId.png",
- "documentType": "sourceOfFunds",
- "createdAt": "2024-07-25T14:06:32.417959"
}
stateId required | integer <int32> The state Id |
cityName required | string Default: "" City name to search. Note that case and accents are not ignored. |
[- {
- "id": 10606,
- "name": "Belo Campo",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "BA",
- "stateId": 2002
}, - {
- "id": 10607,
- "name": "Belo Horizonte",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "MG",
- "stateId": 1998
}, - {
- "id": 10608,
- "name": "Belo Jardim",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "PE",
- "stateId": 2006
}, - {
- "id": 10609,
- "name": "Belo Monte",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "AL",
- "stateId": 2007
}, - {
- "id": 10610,
- "name": "Belo Oriente",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "MG",
- "stateId": 1998
}, - {
- "id": 10611,
- "name": "Belo Vale",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "MG",
- "stateId": 1998
}, - {
- "id": 10983,
- "name": "Campo Belo do Sul",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "SC",
- "stateId": 2014
}, - {
- "id": 13199,
- "name": "Monte Belo do Sul",
- "countryId": 31,
- "countryCode": "BR",
- "stateCode": "RS",
- "stateId": 2001
}
]
Register a company's gateway funding account
companyId required | string |
tenant required | string |
Gateway company funding account fields to be registered
externalId required | string or null External Id |
asset | object (payout_API_FundingAccountInputAsset) Enum: "USD" "BRL" "MXN" "PHP" "INR" "COP" |
nickname | string or null Nickname |
{- "asset": "USD",
- "nickname": "My USD wallet"
}
{- "id": "45ce1c49-219a-47de-8b85-3c2dbe71922b",
- "createdAt": "2025-03-31T20:29:44.515044",
- "asset": "USD",
- "nickname": "My USD wallet",
- "walletId": "2e3d1db8-b63d-42df-a103-af62556526e5",
- "beneficiaryId": "7793dc18-5bf4-4367-9bbf-925aae64dd12",
- "beneficiaryName": "My Company",
- "agentId": "03c8e401-cfc6-4e4b-8750-e765058e7129",
- "agentName": "My Company",
- "type": "INYO_WALLET",
- "status": "Pending",
- "externalId": null,
- "tenantId": "test",
- "representative": {
- "id": "7793dc18-5bf4-4367-9bbf-925aae64dd12",
- "type": "COMPANY"
}
}
Get funding account
fundingAccountId required | string |
{- "externalId": "7a7c31e3-50f0-447b-abfe-2c06c3976c88",
- "id": "29dc45f1-af75-4326-b9e8-837076239a41",
- "createdAt": "2025-03-31T20:29:42.243942",
- "asset": "USD",
- "nickname": "My USD wallet",
- "walletId": "2e3d1db8-b63d-42df-a103-af62556526e5",
- "beneficiaryId": "0780e142-065a-42fd-aec4-c570e4e14ef9",
- "beneficiaryName": "My Company",
- "agentId": "73851d8e-7773-4aa5-b6d7-bea090618e07",
- "agentName": "My Company",
- "type": "INYO_WALLET",
- "status": "Pending",
- "tenantId": "test",
- "representative": {
- "id": "0780e142-065a-42fd-aec4-c570e4e14ef9",
- "type": "COMPANY"
}
}
List participant funding accounts
participantId required | string |
tenant required | string |
page | integer or null <int32> Default: 0 Examples: page=0 Page number |
size | integer or null <int32> Default: 10 Examples: size=10 Page size |
sort required | object Examples: sort=createdAt,DESC Sort by field and order. Each item should be in the format 'field,order' where 'field' is one of ['createdAt'] and 'order' is either ASC or DESC. |
type | string or null Value: "INYO_WALLET" Examples: type=INYO_WALLET Funding account type |
{- "total": 2,
- "size": 2,
- "page": 0,
- "numberOfPages": 1,
- "items": [
- {
- "id": "9586e1f2-b8bf-48d9-a8ce-02c42ed6ecde",
- "createdAt": "2025-06-25T11:18:00.852625",
- "asset": "USD",
- "status": "Pending",
- "nickname": "My USD wallet",
- "externalId": "1e8536ed-062a-4e5d-a7cc-1496c81ef80f",
- "tenantId": "16b20fbf-9b93-4ae3-a51c-3f7a080d7db9",
- "walletId": "54d386a9-0770-4833-bfe0-71f8dad1f8d9",
- "beneficiaryId": "16131843-1585-4491-adec-886a26bc3c22",
- "beneficiaryName": "Quantum Finance",
- "agentId": "5a7a330f-badb-4e86-813d-6a015bdaa668",
- "agentName": "Zenith Technologies",
- "type": "INYO_WALLET",
- "representative": {
- "id": "16131843-1585-4491-adec-886a26bc3c22",
- "type": "COMPANY"
}
}, - {
- "id": "934d514d-eb41-4762-8a3d-fd5b5b8de8ad",
- "createdAt": "2025-06-25T11:17:58.706928",
- "asset": "USD",
- "status": "Pending",
- "nickname": "My USD wallet",
- "externalId": "93aef066-35c8-4905-8e37-cc4f15867ef1",
- "tenantId": "16b20fbf-9b93-4ae3-a51c-3f7a080d7db9",
- "walletId": "a424d28f-ee7e-4210-8e02-6b731e39ac7a",
- "beneficiaryId": "16131843-1585-4491-adec-886a26bc3c22",
- "beneficiaryName": "Quantum Finance",
- "agentId": "e52aa4d4-ed5c-4b59-9e41-6a640b76d921",
- "agentName": "Stellar Innovations",
- "type": "INYO_WALLET",
- "representative": {
- "id": "16131843-1585-4491-adec-886a26bc3c22",
- "type": "COMPANY"
}
}
]
}
Get payment methods by country
destinationCountryIso2 required | any Enum: "AF" "AX" "AL" "DZ" "AS" "AD" "AO" "AI" "AQ" "AG" "AR" "AM" "AW" "AU" "AT" "AZ" "BS" "BH" "BD" "BB" "BY" "BE" "BZ" "BJ" "BM" "BT" "BO" "BQ" "BA" "BW" "BV" "BR" "IO" "BN" "BG" "BF" "BI" "CV" "KH" "CM" "CA" "KY" "CF" "TD" "CL" "CN" "CX" "CC" "CO" "KM" "CG" "CD" "CK" "CR" "CI" "HR" "CU" "CW" "CY" "CZ" "DK" "DJ" "DM" "DO" "EC" "EG" "SV" "GQ" "ER" "EE" "SZ" "ET" "FK" "FO" "FJ" "FI" "FR" "GF" "PF" "TF" "GA" "GM" "GE" "DE" "GH" "GI" "GR" "GL" "GD" "GP" "GU" "GT" "GG" "GN" "GW" "GY" "HT" "HM" "VA" "HN" "HK" "HU" "IS" "IN" "ID" "IR" "IQ" "IE" "IM" "IL" "IT" "JM" "JP" "JE" "JO" "KZ" "KE" "KI" "KP" "KR" "KW" "KG" "LA" "LV" "LB" "LS" "LR" "LY" "LI" "LT" "LU" "MO" "MG" "MW" "MY" "MV" "ML" "MT" "MH" "MQ" "MR" "MU" "YT" "MX" "FM" "MD" "MC" "MN" "ME" "MS" "MA" "MZ" "MM" "NA" "NR" "NP" "NL" "NC" "NZ" "NI" "NE" "NG" "NU" "NF" "MK" "MP" "NO" "OM" "PK" "PW" "PS" "PA" "PG" "PY" "PE" "PH" "PN" "PL" "PT" "PR" "QA" "RE" "RO" "RU" "RW" "BL" "SH" "KN" "LC" "MF" "PM" "VC" "WS" "SM" "ST" "SA" "SN" "RS" "SC" "SL" "SG" "SX" "SK" "SI" "SB" "SO" "ZA" "GS" "SS" "ES" "LK" "SD" "SR" "SE" "CH" "SY" "TW" "TJ" "TZ" "TH" "TL" "TG" "TK" "TO" "TT" "TN" "TR" "TM" "TC" "TV" "UG" "UA" "AE" "GB" "US" "UM" "UY" "UZ" "VU" "VE" "VN" "VG" "VI" "WF" "EH" "YE" "ZM" "ZW" Country destination in 'ISO 3166-1 alpha-2' format |
{- "paymentMethods": [
- {
- "id": "7a601e7f-324f-4e33-9db1-c8bb763c08a7"
}, - {
- "id": "cbd7c578-8326-4a97-a80d-c87c36f1fccd"
}
]
}
Get all available banks in a given country
countryIso2 required | string or null Examples: BR, MX, CO Country code iso 2 |
page | integer or null <int32> Default: 0 Examples: page=0 Page number |
size | integer or null <int32> Default: 10 Examples: size=10 Page size |
{- "total": 441,
- "size": 2,
- "page": 0,
- "numberOfPages": 45,
- "items": [
- {
- "code": "001",
- "name": "BCO DO BRASIL S.A.",
- "countryIso2": "BR"
}, - {
- "code": "003",
- "name": "BCO DA AMAZONIA S.A.",
- "countryIso2": "BR"
}
]
}
Get all available destination countries from a given source country
sourceCountryIso2 required | any Enum: "AF" "AX" "AL" "DZ" "AS" "AD" "AO" "AI" "AQ" "AG" "AR" "AM" "AW" "AU" "AT" "AZ" "BS" "BH" "BD" "BB" "BY" "BE" "BZ" "BJ" "BM" "BT" "BO" "BQ" "BA" "BW" "BV" "BR" "IO" "BN" "BG" "BF" "BI" "CV" "KH" "CM" "CA" "KY" "CF" "TD" "CL" "CN" "CX" "CC" "CO" "KM" "CG" "CD" "CK" "CR" "CI" "HR" "CU" "CW" "CY" "CZ" "DK" "DJ" "DM" "DO" "EC" "EG" "SV" "GQ" "ER" "EE" "SZ" "ET" "FK" "FO" "FJ" "FI" "FR" "GF" "PF" "TF" "GA" "GM" "GE" "DE" "GH" "GI" "GR" "GL" "GD" "GP" "GU" "GT" "GG" "GN" "GW" "GY" "HT" "HM" "VA" "HN" "HK" "HU" "IS" "IN" "ID" "IR" "IQ" "IE" "IM" "IL" "IT" "JM" "JP" "JE" "JO" "KZ" "KE" "KI" "KP" "KR" "KW" "KG" "LA" "LV" "LB" "LS" "LR" "LY" "LI" "LT" "LU" "MO" "MG" "MW" "MY" "MV" "ML" "MT" "MH" "MQ" "MR" "MU" "YT" "MX" "FM" "MD" "MC" "MN" "ME" "MS" "MA" "MZ" "MM" "NA" "NR" "NP" "NL" "NC" "NZ" "NI" "NE" "NG" "NU" "NF" "MK" "MP" "NO" "OM" "PK" "PW" "PS" "PA" "PG" "PY" "PE" "PH" "PN" "PL" "PT" "PR" "QA" "RE" "RO" "RU" "RW" "BL" "SH" "KN" "LC" "MF" "PM" "VC" "WS" "SM" "ST" "SA" "SN" "RS" "SC" "SL" "SG" "SX" "SK" "SI" "SB" "SO" "ZA" "GS" "SS" "ES" "LK" "SD" "SR" "SE" "CH" "SY" "TW" "TJ" "TZ" "TH" "TL" "TG" "TK" "TO" "TT" "TN" "TR" "TM" "TC" "TV" "UG" "UA" "AE" "GB" "US" "UM" "UY" "UZ" "VU" "VE" "VN" "VG" "VI" "WF" "EH" "YE" "ZM" "ZW" Country source in 'ISO 3166-1 alpha-2' format |
{- "countryDestinations": [
- {
- "country": "BR",
- "countryName": "Brazil",
- "currency": "BRL",
- "currencyName": "Brazilian real",
- "currencySymbol": "R$",
- "emoji": "🇧🇷"
}, - {
- "country": "DO",
- "countryName": "Dominican Republic",
- "currency": "DOP",
- "currencyName": "Dominican peso",
- "currencySymbol": "$",
- "emoji": "🇩🇴"
}, - {
- "country": "MX",
- "countryName": "Mexico",
- "currency": "MXN",
- "currencyName": "Mexican peso",
- "currencySymbol": "$",
- "emoji": "🇲🇽"
}
]
}
Register a participant's gateway recipient account
participantId required | string |
Gateway participant recipient account fields to be registered
externalId | string or null External Id |
asset required | object (payout_API_RecipientAccountInputAsset) Enum: "BRL" "MXN" "PHP" "INR" "COP" |
nickname | string or null |
required | object (payout_API_PayoutMethodPayload) Payout method payload |
{- "externalId": "45146379-6360-41dc-8ad7-d863983167e4",
- "asset": "BRL",
- "payoutMethod": {
- "type": "BANK_DEPOSIT",
- "countryCode": "BR",
- "bankCode": "064",
- "routingNumber": "1234",
- "accountNumber": "19238123",
- "accountType": "CHECKING",
- "additionalData": {
- "test": "test"
}
}
}
{- "type": "INYO_BANK_DEPOSIT",
- "id": "0bbb1313-add5-48f4-980a-487586884e15",
- "createdAt": "2025-02-03T15:01:04.443806",
- "asset": "BRL",
- "countryCode": "BR",
- "bankCode": "001",
- "routingNumber": "1234",
- "accountNumber": "19238123",
- "accountType": "CHECKING",
- "nickname": null,
- "externalId": null,
- "tenantId": "test",
- "representative": {
- "id": "0e34304f-ce6a-44ef-8c3a-630e1b78ddae",
- "type": "COMPANY"
}, - "additionalData": null
}
Get recipient account
recipientAccountId required | string |
{- "type": "INYO_BANK_DEPOSIT",
- "id": "d20c50e9-8150-45c8-a17a-9ee49dfc6f35",
- "createdAt": "2025-02-03T14:55:33.94861",
- "asset": "BRL",
- "countryCode": "BR",
- "bankCode": "001",
- "routingNumber": "1234",
- "accountNumber": "19238123",
- "accountType": "CHECKING",
- "nickname": null,
- "externalId": null,
- "tenantId": "test",
- "representative": {
- "id": "b36462d0-d170-45de-b617-789d35672dac",
- "type": "COMPANY"
}, - "additionalData": null
}
Request all available quotes "from" currency "to" currency
fromCurrency required | string |
toCurrency required | string |
{- "quotes": [
- {
- "id": "9ebc245e-7885-4972-88ea-3ed6fbbcd1b9",
- "payerId": "b372b940-60e4-43ca-872e-56fc8d24a829",
- "agentId": "2cbae11c-e43a-43df-be02-7458626d1ea7",
- "fromAsset": "USD",
- "toAsset": "BRL",
- "rate": 3.39140437,
- "feeRate": 0,
- "expireAt": "2025-02-06T16:31:18Z",
- "createdAt": "2025-02-06T16:01:18.613818Z",
- "paymentMethod": {
- "id": "7a601e7f-324f-4e33-9db1-c8bb763c08a7"
}
}, - {
- "id": "9e792d17-d2e7-3970-8bc3-9d1233fc133a",
- "payerId": "ed04c402-17fd-43f9-bc67-ef29aa6560dd",
- "agentId": "2cbae11c-e43a-43df-be02-7458626d1ea7",
- "fromAsset": "USD",
- "toAsset": "BRL",
- "rate": 5.832649,
- "feeRate": 0,
- "expireAt": "2025-02-06T16:31:18Z",
- "createdAt": "2025-02-06T16:01:18.613851Z",
- "paymentMethod": {
- "id": "cbd7c578-8326-4a97-a80d-c87c36f1fccd"
}
}
]
}
Get quote by id
quoteId required | string or null |
{- "id": "9c80c73d-64b3-4855-9cf9-9fba1f405b0c",
- "payerId": "36fa52e2-05c8-471d-83b3-e639487636c0",
- "agentId": "2ec82937-952a-4f13-b3cf-4482e9f128d8",
- "fromAsset": "USD",
- "toAsset": "BRL",
- "rate": 5.9424624,
- "feeRate": 0,
- "expireAt": "2025-04-10T15:15:17Z",
- "createdAt": "2025-04-10T14:45:17.000745Z",
- "paymentMethodId": "cbd7c578-8326-4a97-a80d-c87c36f1fccd"
}