Use this Restful endpoint to retrieve detailed legal and administrative information about a selected company, using the POST method.
Related B2B Restful documentation:
- B2B introduction
- Restful B2B Lookup response
- Restful B2B GetInfo GET request
- Restful B2B GetInfo response
- Restful B2B Swagger documentation
Restful B2B GetInfo POST 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
POST https://{SERVER_ADDRESS}/b2b/get-info
Send the following parameters in the request body using JSON.
| 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 |
Example:
{
"country": "FRA",
"searchRef": "_29613410"
}
Related to