API Reference

Submit kyc information using the following data in the body:

firstname, lastname, dateofbirth, countrycode, statecode, city, zipcode, address.

Considerations: Take into account which fields require a certain ISO format - ISO2 & ISO3, and which fields do not require an ISO format.

BRAZIL
"country": Name of the Country. Example "Brazil".
"countryCode": Country code in ISO2 format, For example: Brazil would be BR,
"city": Name of the City. Example "Sao Paulo"
"occupation": sample
"email": "[email protected]"
"nationalities": ["Brazilian"],
"phoneNumber": "+5511912345678",
Mexico
"country": Name of the Country. Example "Mexico".
"countryCode": Country code in ISO2 format, For example: Brazil would be MX,
"city": Name of the City. Example "Mexico City"
"occupation": programmer
"email": "[email protected]"
"nationalities": ["Mexican"],
"phoneNumber": "+5511912345678",

Body:

{
    "kycSubmission": {
        "legalFirstName": "Miguel",
        "lastname": "Monasterios",
        "datebirth": "2023-12-11T19:28:39.434Z",
        "countrycode": "US",
        "statecode": "FL",
        "city": "Roseville",
        "zipcode": 120102,
        "address": "55 Fruit St, Boston, MA 02114, Estados Unidos"
    }
}

Response:

{
    "submissionId": "4cd2ad1d-02b7-467c-9871-ea1f4f1f08f9",
    "createdAt": "2023-12-21T22:44:18.120Z"
}

Language
Click Try It! to start a request and see the response here!