Skip to main content
POST
/
api
/
infogreffe
/
companies
/
officers
/infogreffe/companies/officers
curl --request POST \
  --url https://api.anysite.io/api/infogreffe/companies/officers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "siren": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@infogreffe_officer",
    "person_type": "<string>",
    "name": "<string>",
    "role": "<string>",
    "role_code": "<string>",
    "can_bind_company": true,
    "is_active": true,
    "start_date": "<string>",
    "end_date": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "other_names": [
      "<string>"
    ],
    "title": "<string>",
    "gender": "<string>",
    "birth_year": 123,
    "birth_month": 123,
    "nationality": "<string>",
    "siren": "<string>",
    "legal_form": {
      "@type": "@infogreffe_legal_form",
      "code": "<string>",
      "label": "<string>"
    },
    "capital": {
      "@type": "@infogreffe_capital",
      "amount": 123,
      "currency": "<string>",
      "type": "<string>"
    },
    "address": {
      "@type": "@infogreffe_address",
      "line_1": "<string>",
      "line_2": "<string>",
      "line_3": "<string>",
      "postal_code": "<string>",
      "city": "<string>",
      "country": "<string>"
    }
  }
]

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"

count
integer
required

Max number of officers to return

Required range: x >= 1
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_officer
person_type
string | null
name
string | null
role
string | null
role_code
string | null
can_bind_company
boolean | null
is_active
boolean | null
start_date
string | null
end_date
string | null
first_name
string | null
last_name
string | null
other_names
string[] | null
title
string | null
gender
string | null
birth_year
integer | null
birth_month
integer | null
nationality
string | null
siren
string | null
capital
InfogreffeCapital · object
address
InfogreffeAddress · object