Skip to main content

Borrower Object

The borrower object represents the credit borrower in debt operations. It is used in various Lending-as-a-Service endpoints.

Structure — Individual (natural_person)

FieldTypeRequiredDescription
person_typestringYesPerson type. Values: natural or legal.
namestringYesFull name of the borrower.
document_numberstringYesCPF (11 digits, without punctuation).
mother_namestringNoMother's name.
birth_datestringNoBirth date (YYYY-MM-DD format).
nationalitystringNoNationality.
genderstringNoGender. Values: male, female.
emailstringNoBorrower's email.
phoneobjectNophone object.
addressobjectNoaddress object.
FieldTypeRequiredDescription
person_typestringYesValue: legal.
company_namestringYesCorporate name.
trading_namestringNoTrade name.
document_numberstringYesCNPJ (14 digits, without punctuation).
foundation_datestringNoFoundation date (YYYY-MM-DD format).
emailstringNoCorporate email.
phoneobjectNophone object.
addressobjectNoaddress object.

Phone

FieldTypeRequiredDescription
country_codestringYesCountry code (e.g.: "55").
area_codestringYesArea code (e.g.: "11").
numberstringYesPhone number.

Example

{
"person_type": "natural",
"name": "João da Silva",
"document_number": "12345678901",
"mother_name": "Maria da Silva",
"birth_date": "1990-01-01",
"phone": {
"country_code": "55",
"area_code": "11",
"number": "999999999"
},
"address": {
"street": "Rua Example",
"number": "123",
"neighborhood": "Centro",
"city": "São Paulo",
"state": "SP",
"postal_code": "01001000"
}
}