curl --request GET \
--url https://api.example.com/api/v1/search{
"results": [
{
"id": "<string>",
"type": "<string>",
"name": "<string>",
"score": 123,
"document": "<string>",
"properties": {},
"sources": [
{
"database": "<string>",
"record_id": "<string>",
"extracted_at": "<string>"
}
],
"exposure_tier": "<string>"
}
],
"total": 123,
"page": 123,
"size": 123
}Search for entities across the BR-ACC knowledge graph using full-text search with Lucene query syntax.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> headerperson - Individual personscompany - Companies and organizationscontract - Government contractsamendment - Contract amendmentssanction - Administrative sanctionsembargo - Environmental embargoesconvenio - Federal agreementselection - Electoral datafinance - Financial recordshealth - Healthcare facilitieseducation - Educational institutionslaborstats - Labor statisticscurl -X GET "https://api.br-acc.com/api/v1/search?q=petrobras&type=company&page=1&size=10" \
-H "Authorization: Bearer YOUR_TOKEN"
{
"results": [
{
"id": "4:abc123:1",
"type": "company",
"name": "Petróleo Brasileiro S.A.",
"score": 9.87,
"document": "33000167000101",
"properties": {
"razao_social": "Petróleo Brasileiro S.A.",
"nome_fantasia": "Petrobras",
"cnpj": "33.000.167/0001-01",
"uf": "RJ"
},
"sources": [
{
"database": "receita_federal"
}
],
"exposure_tier": "public_safe"
}
],
"total": 42,
"page": 1,
"size": 10
}
HIDE_PERSON_ENTITIES environment variable is enabled:
search.py:44-114:
curl --request GET \
--url https://api.example.com/api/v1/search{
"results": [
{
"id": "<string>",
"type": "<string>",
"name": "<string>",
"score": 123,
"document": "<string>",
"properties": {},
"sources": [
{
"database": "<string>",
"record_id": "<string>",
"extracted_at": "<string>"
}
],
"exposure_tier": "<string>"
}
],
"total": 123,
"page": 123,
"size": 123
}