curl --request GET \
--url https://api.example.com/api/v1/entity/{entity_type}/{entity_id}{
"id": "<string>",
"type": "<string>",
"entity_label": "<string>",
"identity_quality": "<string>",
"properties": {},
"sources": [
{
"database": "<string>",
"record_id": "<string>",
"extracted_at": "<string>"
}
],
"is_pep": true,
"exposure_tier": "<string>"
}Retrieve detailed information about a specific entity using its CPF, CNPJ, or internal element ID.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/World-Open-Graph/br-acc/llms.txt
Use this file to discover all available pages before exploring further.
Authorization: Bearer <token> headerENTITY_LOOKUP_ENABLED configuration.
GET /api/v1/entity/{cpf_or_cnpj}
Lookup an entity using its Brazilian tax identifier (CPF for individuals, CNPJ for companies).
12345678900 or 123.456.789-0012345678000100 or 12.345.678/0001-00GET /api/v1/entity/by-element-id/{element_id}
Lookup an entity using its internal Neo4j element ID.
4:abc123:1)strong - Person with valid formatted CPFpartial - Partner with incomplete identificationunknown - Person without valid CPFnull - Not applicable for non-person entitiesname, cpf, birth_date, mother_namerazao_social, nome_fantasia, cnpj, ufobject, value, date, contractortype, date, sanctioning_body# By CPF
curl -X GET "https://api.br-acc.com/api/v1/entity/12345678900" \
-H "Authorization: Bearer YOUR_TOKEN"
# By CNPJ with formatting
curl -X GET "https://api.br-acc.com/api/v1/entity/12.345.678/0001-00" \
-H "Authorization: Bearer YOUR_TOKEN"
# By element ID
curl -X GET "https://api.br-acc.com/api/v1/entity/by-element-id/4:abc123:1" \
-H "Authorization: Bearer YOUR_TOKEN"
{
"id": "4:abc123:1",
"type": "company",
"entity_label": "Company",
"identity_quality": null,
"properties": {
"razao_social": "Acme Construções LTDA",
"nome_fantasia": "Acme",
"cnpj": "12.345.678/0001-00",
"uf": "SP",
"capital_social": 500000.0,
"natureza_juridica": "Sociedade Empresária Limitada"
},
"sources": [
{
"database": "receita_federal",
"record_id": "cnpj_12345678000100",
"extracted_at": "2024-01-15T10:30:00Z"
}
],
"is_pep": false,
"exposure_tier": "public_safe"
}
GET /api/v1/entity/{entity_id}/timeline
Retrieve chronological events related to an entity.
GET /api/v1/entity/{entity_id}/connections
Retrieve entities connected to this entity via relationships.
GET /api/v1/entity/{entity_id}/exposure
Calculate risk exposure index based on graph connections and attributes.
HIDE_PERSON_ENTITIES is enabled)HIDE_PERSON_ENTITIES environment variable is enabled:
entity.py:99-144:
curl --request GET \
--url https://api.example.com/api/v1/entity/{entity_type}/{entity_id}{
"id": "<string>",
"type": "<string>",
"entity_label": "<string>",
"identity_quality": "<string>",
"properties": {},
"sources": [
{
"database": "<string>",
"record_id": "<string>",
"extracted_at": "<string>"
}
],
"is_pep": true,
"exposure_tier": "<string>"
}