Use this Restful endpoint to retrieve detailed legal and administrative information about a selected company, using the GET method.
Related B2B Restful documentation:
- B2B introduction
- Restful B2B Lookup response
- Restful B2B GetInfo POST request
- Restful B2B GetInfo response
- Restful B2B Swagger documentation
Restful B2B GetInfo GET request
The GetInfo endpoint returns detailed legal and administrative information about a selected company.
There are two ways to retrieve company details:
- Using the
searchRefreturned by the Lookup endpoint. - Using the company
companyNumberdirectly.
Endpoint with search reference
GET https://{SERVER_ADDRESS}/b2b/get-info?country={COUNTRY_CODE}&searchRef={SEARCH_REF}
Endpoint with company number
GET https://{SERVER_ADDRESS}/b2b/get-info?country={COUNTRY_CODE}&companyNumber={COMPANY_NUMBER}
| Parameter | Description | Mandatory/Optional |
|---|---|---|
| country | ISO 3-letter country code. | Mandatory |
| searchRef | Company reference returned by the Lookup endpoint. | Mandatory when companyNumber is not provided |
| companyNumber | Company SIRET number. | Mandatory when searchRef is not provided |
Related to