UnifyAPI
← Back to catalog

insee.search_companies

mock data$0.002 / call

Search French Companies in Sirene

Search French legal units (companies, associations, sole traders) in the INSEE Sirene national registry using a Lucene-style filter query. Supports filtering by company name (denominationUniteLegale), NAF activity code (activitePrincipaleUniteLegale, e.g. "62.01Z" for software publishing), administrative status (etatAdministratifUniteLegale: A=active, C=ceased), and legal category code (categorieJuridiqueUniteLegale, e.g. 5710 for SA). Combine clauses with AND / OR operators. Returns SIREN, name, acronym, status, NAF code, legal category, and creation date for each matching company. Use insee.company.by_siren to retrieve full details for a specific SIREN number.

Referenceprovider: Insee#insee#reference

Input schema

qrequired

Lucene-style filter expression on legal-unit fields. Examples: "denominationUniteLegale:AIRBUS" searches by company name; "activitePrincipaleUniteLegale:62.01Z" searches by NAF activity code; "etatAdministratifUniteLegale:A" returns only active companies (A=active, C=ceased); "categorieJuridiqueUniteLegale:5710" searches by legal category code. Combine with AND / OR operators.

string
max

Maximum number of results to return (1–20, default 10).

integer
offset

Zero-based starting offset for pagination (default 0).

integer

Call via REST

curl -X POST https://unifyapi.pro/api/call/insee.search_companies \
  -H "Authorization: Bearer uak_live_..." \
  -H "Content-Type: application/json" \
  -d '{"q":"<q>","max":0,"offset":0}'

Try it

Paste a UnifyAPI key (create one in the dashboard) and run a real call.