Skip to main content
POST
/
api
/
infogreffe
/
companies
/
financials
/infogreffe/companies/financials
curl --request POST \
  --url https://api.anysite.io/api/infogreffe/companies/financials \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "siren": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@infogreffe_financial",
    "closing_date": "<string>",
    "fiscal_period_months": 123,
    "currency": "<string>",
    "revenue": 123,
    "result": 123,
    "employee_count": 123,
    "is_confidential": true
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
siren
string
required

French company SIREN (9-digit registration number) or SIRET

Minimum string length: 1
Examples:

"652014051"

"542051180"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@infogreffe_financial
closing_date
string | null
fiscal_period_months
integer | null
currency
string | null
revenue
integer | null
result
integer | null
employee_count
integer | null
is_confidential
boolean | null