Skip to main content
X-API-Key
string
required
Your API key. Requires the owners module.

Request body

identifier
string
required
Company CNPJ (e.g. 47.960.950/0001-21). Formatting is optional.
country
string
required
ISO 3166-1 alpha-2 country code. Supported: BR.

Response

identifier
string
The queried CNPJ, as provided.
company_name
string
Official legal company name from Receita Federal.
country
string
Country code.
owners
array
List of registered owners (socios). Empty array if none on record.
owners[].name
string
Full name of the owner or shareholder.
owners[].role
string
Role in the company structure (e.g. Sócio, Administrador, Presidente do Conselho).
owners[].entity_type
string
individual (pessoa física) or company (pessoa jurídica).
owners[].identifier
string | null
Masked CPF for individuals (LGPD-compliant) or full CNPJ for companies.
owners[].entry_date
string | null
ISO date when the owner joined the ownership structure.
owners[].country
string | null
Country code for foreign shareholders. null for Brazilian residents.
Name of the legal representative (for company owners only).
Role of the legal representative.
source
string
Always receita_federal.
checked_at
string
ISO 8601 datetime of this specific check.
curl -X POST https://api.enrichlatam.com/v1/owners \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"identifier": "47.960.950/0001-21", "country": "BR"}'
{
  "identifier": "47.960.950/0001-21",
  "company_name": "MAGAZINE LUIZA S.A.",
  "country": "BR",
  "owners": [
    {
      "name": "LUIZA HELENA TRAJANO INÁCIO RODRIGUES",
      "role": "Presidente do Conselho de Administração",
      "entity_type": "individual",
      "identifier": "***123456**",
      "entry_date": "2011-03-07",
      "country": null,
      "legal_rep_name": null,
      "legal_rep_role": null
    }
  ],
  "source": "receita_federal",
  "checked_at": "2026-04-15T12:00:00+00:00"
}