Skip to main content

Address Object

The address object is used in various APIs to represent an address. The structure is standardized across all endpoints.

Structure

FieldTypeRequiredDescription
streetstringYesStreet address.
numberstringYesAddress number.
complementstringNoComplement.
neighborhoodstringYesNeighborhood.
citystringYesCity.
statestringYesState (2-character abbreviation).
postal_codestringYesPostal code (format XXXXXXXX, without hyphen).

Example

{
"street": "Rua Example",
"number": "123",
"complement": "Sala 1",
"neighborhood": "Centro",
"city": "São Paulo",
"state": "SP",
"postal_code": "01001000"
}

Endpoints that use this object