Introduction
Welcome to the TradeIn Data API! You can use our API to access Financial API endpoints, which can get information on various company matrices.
We have language bindings both in Shell, and Python! You can view code examples in the dark area to the right, and you can switch the programming language of the examples with the tabs in the top right.
All requests should use the appropriate TradeIn Data platform root API URL which can be found at:
Production URL: https://api.tradeinsur.com/
Sandbox URL: https://api.demo.tradeinsur.com/
All API requests must be made over HTTPS; calls made over plain HTTP will fail. API requests without authentication will also fail - see the Authentication section for information on correctly authenticating calls to the TradeIn API.
Authentication
To Authenticate, you have to pass your API Key in the header section of you request for each api endpoints. To get API Key, you can send email to contact@tradeinsur.com
x-api-key: YOUR_API_KEY
To authenticate and authorize, use the following code:
import requests
api = requests.get("API_END_POINT", headers={"x-api-key": "YOUR_API_KEY"})
# With shell, you can just pass the correct header with each request
curl "API_END_POINT" \
-H "x-api-key: YOUR_API_KEY"
Make sure to replace
YOUR_API_KEY
with your own API key andAPI_END_POINT
with the corresponding endpoints
TradeIn Data platform uses API keys to allow access to the API. You can request a new API key by sending us an email.
The API platform expects for the API key to be included in all API requests to the server in a header such as:
x-api-key: YOUR_API_KEY
Sandbox environment
We have a separate key for the sandbox(demo) and production system. You have to get(request) a key for each if you want. The sandbox API key starts with demo prefix (eg. demo_xxxxxxxxxxxxxxxxx
).
In the sandbox environment, we have restrictions - you are allowed to request certain companies only (as agreed) to help you set up your framework.
Example of the national id of companies:
- 830041273
- 493322978
- 83418183600026
- 888858073
- 381870963
- 007350200
- 054800958
- 378528863
- 404298721
- 448258798
Sandbox URL: https://api.demo.tradeinsur.com/
Search Company
With the company search endpoint, you can request with your own wished values(name or national id). The national id is not counted as the searched result. It means this endpoint does not count for your credit.
Search a Company based on its name
import requests
requests.post(
"https://api.tradeinsur.com/fast/api/v1/search/company",
json={"name": "COMPANY_NAME"},
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X POST
"https://api.tradeinsur.com/fast/api/v1/search/company" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json" \
-d '{"name": "COMPANY_NAME"}'
Replace COMPANY_NAME with the actual COMPANY_NAME of the company you are looking for.
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "Details of company search",
"body": [
{
"active": "true",
"zipcode": "92130",
"street_complement": "14 16",
"brand": "Edenred",
"legal_form": "Société européenne",
"legal_form_code": "5800",
"naf_label": "Activités des sièges sociaux",
"naf_code": "7010Z",
"non_diffusable": "false",
"company_name": "EDENRED",
"street": "14 BOULEVARD GARIBALDI",
"headquarters": "true",
"acronym": null,
"establishment_id": "49332297800039",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "ISSY LES MOULINEAUX",
"country": "France",
"national_id": "493322978"
},
{
"active": "true",
"zipcode": "92240",
"street_complement": "166 180",
"brand": null,
"legal_form": "Société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"non_diffusable": "false",
"company_name": "EDENRED FRANCE",
"street": "166 BOULEVARD GABRIEL PERI",
"headquarters": "true",
"acronym": null,
"establishment_id": "39336513500358",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "MALAKOFF",
"country": "France",
"national_id": "393365135"
},
{
"active": "true",
"zipcode": "69003",
"street_complement": "RESIDENCE PHENIX",
"brand": null,
"legal_form": "Société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"non_diffusable": "false",
"company_name": "EDENRED FRANCE",
"street": "47 RUE MAURICE FLANDIN",
"headquarters": "false",
"acronym": null,
"establishment_id": "39336513500408",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "LYON 03",
"country": "France",
"national_id": "393365135"
},
{
"active": "true",
"zipcode": "67100",
"street_complement": null,
"brand": "TICKET RESTAURANT - ACCENTIV'",
"legal_form": "Société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"non_diffusable": "false",
"company_name": "EDENRED FRANCE",
"street": "2 A RUE BARTISCH",
"headquarters": "false",
"acronym": null,
"establishment_id": "39336513500333",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "STRASBOURG",
"country": "France",
"national_id": "393365135"
},
{
"active": "true",
"zipcode": "97400",
"street_complement": "MONTGAILLARD",
"brand": "TICKET RESTAURANT- ACCENTIV'",
"legal_form": "Société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"non_diffusable": "false",
"company_name": "EDENRED FRANCE",
"street": "14 RUE DU STADE",
"headquarters": "false",
"acronym": null,
"establishment_id": "39336513500283",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "ST DENIS",
"country": "France",
"national_id": "393365135"
},
{
"active": "true",
"zipcode": "44800",
"street_complement": "LA FREGATE",
"brand": null,
"legal_form": "Société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Edition de logiciels applicatifs",
"naf_code": "5829C",
"non_diffusable": "false",
"company_name": "EDENRED FRANCE",
"street": "1903 AVENUE JACQUES CARTIER",
"headquarters": "false",
"acronym": null,
"establishment_id": "39336513500465",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "ST HERBLAIN",
"country": "France",
"national_id": "393365135"
},
{
"active": "true",
"zipcode": "59800",
"street_complement": null,
"brand": null,
"legal_form": "Société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Edition de logiciels applicatifs",
"naf_code": "5829C",
"non_diffusable": "false",
"company_name": "EDENRED FRANCE",
"street": "7 B RUE DES AUGUSTINS",
"headquarters": "false",
"acronym": null,
"establishment_id": "39336513500457",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "LILLE",
"country": "France",
"national_id": "393365135"
},
{
"active": "true",
"zipcode": "59000",
"street_complement": null,
"brand": "Ticket Restaurant - Accentiv'",
"legal_form": "Société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"non_diffusable": "false",
"company_name": "EDENRED FRANCE",
"street": "135 BOULEVARD PAUL PAINLEVE",
"headquarters": "false",
"acronym": null,
"establishment_id": "39336513500416",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "LILLE",
"country": "France",
"national_id": "393365135"
},
{
"active": "true",
"zipcode": "97122",
"street_complement": "ZONE INDUSTRIELLE DE JARRY LIEU DIT VO",
"brand": null,
"legal_form": "Société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités de soutien aux entreprises n.c.a.",
"naf_code": "8299Z",
"non_diffusable": "false",
"company_name": "EDENRED FRANCE",
"street": "IMMEUBLE BRAVO",
"headquarters": "false",
"acronym": null,
"establishment_id": "39336513500234",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "BAIE MAHAULT",
"country": "France",
"national_id": "393365135"
},
{
"active": "true",
"zipcode": "13127",
"street_complement": null,
"brand": "TICKET RESTAURANT - ACCENTIV'",
"legal_form": "Société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"non_diffusable": "false",
"company_name": "EDENRED FRANCE",
"street": "24 RUE DE MADRID",
"headquarters": "false",
"acronym": null,
"establishment_id": "39336513500325",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "VITROLLES",
"country": "France",
"national_id": "393365135"
},
{
"active": "true",
"zipcode": "44800",
"street_complement": "PARC ATALNTIS BATIMENT H",
"brand": "TICKET RESTAURANT ACCENTIV",
"legal_form": "Société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"non_diffusable": "false",
"company_name": "EDENRED FRANCE",
"street": "4 RUE VASCO DE GAMA",
"headquarters": "false",
"acronym": null,
"establishment_id": "39336513500366",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "ST HERBLAIN",
"country": "France",
"national_id": "393365135"
},
{
"active": "true",
"zipcode": "31500",
"street_complement": null,
"brand": "Ticket Restaurant - Accentiv'",
"legal_form": "Société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"non_diffusable": "false",
"company_name": "EDENRED FRANCE",
"street": "6 RUE DE PERIOLE",
"headquarters": "false",
"acronym": null,
"establishment_id": "39336513500424",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "TOULOUSE",
"country": "France",
"national_id": "393365135"
},
{
"active": "true",
"zipcode": "13290",
"street_complement": "IMMEUBLE CROSSROAD N 161 ZACLA ROBOLE",
"brand": null,
"legal_form": "Société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"non_diffusable": "false",
"company_name": "EDENRED FRANCE",
"street": "230 RUE PIERRE DUHEM",
"headquarters": "false",
"acronym": null,
"establishment_id": "39336513500432",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "AIX EN PROVENCE",
"country": "France",
"national_id": "393365135"
},
{
"active": "true",
"zipcode": "69007",
"street_complement": "IMMEUBLE AMBRE",
"brand": null,
"legal_form": "Société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Edition de logiciels applicatifs",
"naf_code": "5829C",
"non_diffusable": "false",
"company_name": "EDENRED FRANCE",
"street": "160 AVENUE JEAN JAURES",
"headquarters": "false",
"acronym": null,
"establishment_id": "39336513500440",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "LYON 07",
"country": "France",
"national_id": "393365135"
},
{
"active": "true",
"zipcode": "92240",
"street_complement": null,
"brand": null,
"legal_form": "SASU Société par actions simplifiée à associé unique",
"legal_form_code": "5720",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"non_diffusable": "false",
"company_name": "EDENRED PAIEMENT",
"street": "166 BOULEVARD GABRIEL PERI",
"headquarters": "true",
"acronym": null,
"establishment_id": "78996824500017",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "MALAKOFF",
"country": "France",
"national_id": "789968245"
},
{
"active": "true",
"zipcode": "92130",
"street_complement": "14 16",
"brand": null,
"legal_form": "SASU Société par actions simplifiée à associé unique",
"legal_form_code": "5720",
"naf_label": "Activités des sièges sociaux",
"naf_code": "7010Z",
"non_diffusable": "false",
"company_name": "EDENRED CORPORATE PAYMENT",
"street": "14 BOULEVARD GARIBALDI",
"headquarters": "true",
"acronym": null,
"establishment_id": "75124767700022",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "ISSY LES MOULINEAUX",
"country": "France",
"national_id": "751247677"
},
{
"active": "true",
"zipcode": "92130",
"street_complement": "14 16",
"brand": null,
"legal_form": "SASU Société par actions simplifiée à associé unique",
"legal_form_code": "5720",
"naf_label": "Autres intermédiaires du commerce en combustibles, métaux, minéraux et produits chimiques",
"naf_code": "4612B",
"non_diffusable": "false",
"company_name": "EDENRED FUEL CARD A",
"street": "14 BOULEVARD GARIBALDI",
"headquarters": "true",
"acronym": null,
"establishment_id": "83004127300020",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "ISSY LES MOULINEAUX",
"country": "France",
"national_id": "830041273"
},
{
"active": "true",
"zipcode": "92130",
"street_complement": "14 16",
"brand": null,
"legal_form": "SASU Société par actions simplifiée à associé unique",
"legal_form_code": "5720",
"naf_label": "Conseil pour les affaires et autres conseils de gestion",
"naf_code": "7022Z",
"non_diffusable": "false",
"company_name": "EDENRED FLEET AND MOBILITY SAS",
"street": "14 BOULEVARD GARIBALDI",
"headquarters": "true",
"acronym": null,
"establishment_id": "83418183600026",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "ISSY LES MOULINEAUX",
"country": "France",
"national_id": "834181836"
}
],
"isBase64Encoded": false
}
This endpoint returns the list of the companies matching the given company name.
HTTP Request
POST https://api.tradeinsur.com/fast/api/v1/search/company
JSON post data
Key | Required | Description |
---|---|---|
name | string | Name of the company you are looking for |
JSON response data
Body : List of matching companies
Key | Value type | Description |
---|---|---|
active | string | State if this company is still active |
zipcode | string | Zipcode of the address of the company |
street_complement | string | Street Complement of the address of the company |
brand | string | Brand of the company |
legal_form | string | Legal form of the company |
legal_form_code | string | Code associated to the legal form of the company |
naf_label | string | Activity of the company |
naf_code | string | Activity code of the company |
non_diffusable | string | If the information should have remained confidential |
company_name | string | Name of the company |
street | string | Street of the address of the company |
headquarters | string | Is the headquarter of the company |
acronym | string | Acronym of the company |
establishment_id | string | Identification number of the establishment |
status_eirl_code | string | Status of the EIRL code |
status_eirl_label | string | Status of the EIRL label |
city | string | City of the address of the company |
country | string | Country of the address of the company |
national_id | string | National identification number of the company |
Search a Company based on its national ID
import requests
requests.post(
"https://api.tradeinsur.com/fast/api/v1/search/company",
json={"national_id": "NATIONAL_ID"},
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X POST
"https://api.tradeinsur.com/fast/api/v1/search/company" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json" \
-d '{"national_id": "NATIONAL_ID"}'
Replace NATIONAL_ID with the actual NATIONAL_ID of the company you are interested in.
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "Details of company search",
"body": [
{
"active": "true",
"zipcode": "92130",
"street_complement": "14 16",
"brand": "Edenred",
"legal_form": "Société européenne",
"legal_form_code": "5800",
"naf_label": "Activités des sièges sociaux",
"naf_code": "7010Z",
"non_diffusable": "false",
"company_name": "EDENRED",
"street": "14 BOULEVARD GARIBALDI",
"headquarters": "true",
"acronym": null,
"establishment_id": "49332297800039",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "ISSY LES MOULINEAUX",
"country": "France",
"national_id": "493322978"
}
],
"isBase64Encoded": false
}
This endpoint retrieves the list of the companies matching the given national ID.
HTTP Request
POST https://api.tradeinsur.com/fast/api/v1/search/company
JSON post data
Key | Required | Description |
---|---|---|
national_id | string | Identifier of company according to its national/jurisdiction register |
JSON response data
Body : List of matching companies
Key | Value type | Description |
---|---|---|
active | string | State if this company is still active |
zipcode | string | Zipcode of the address of the company |
street_complement | string | Street Complement of the address of the company |
brand | string | Brand of the company |
legal_form | string | Legal form of the company |
legal_form_code | string | Code associated to the legal form of the company |
naf_label | string | Activity of the company |
naf_code | string | Activity code of the company |
non_diffusable | string | If the information should have remained confidential |
company_name | string | Name of the company |
street | string | Street of the address of the company |
headquarters | string | Is the headquarter of the company |
acronym | string | Acronym of the company |
establishment_id | string | identification number of the establishment |
status_eirl_code | string | Status of the EIRL code |
status_eirl_label | string | Status of the EIRL label |
city | string | City of the address of the company |
country | string | Country of the address of the company |
national_id | string | National_id of the company |
General Information of company
import requests
requests.post(
"https://api.tradeinsur.com/fast/api/v1/search/company/general",
json={"national_id": "NATIONAL_ID"},
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X POST
"https://api.tradeinsur.com/fast/api/v1/search/company/general" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json" \
-d '{"national_id": "NATIONAL_ID"}'
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "ok",
"body": [
{
"national_id": "493322978",
"is_active": true,
"company_name": "EDENRED",
"naf_code": "7010Z",
"legal_form": "Société européenne",
"street_address": "14 BOULEVARD GARIBALDI",
"city_address": "ISSY LES MOULINEAUX",
"zipcode": "92130",
"country": "France"
}
],
"isBase64Encoded": false
}
This endpoint retrieves general information of the company matching the given national ID.
HTTP Request
POST https://api.tradeinsur.com/fast/api/v1/search/company/general
JSON post data
Key | Required | Description |
---|---|---|
national_id | string | Identifier of company according to its national/jurisdiction register |
JSON response data
Key | Value type | Description |
---|---|---|
national_id | string | National identification number of the company |
is_active | boolean | Either or not the company is active |
company_name | string | Name of the company |
naf_code | string | Activity code of the company |
legal_form | string | Legal form of the company |
street_address | string | Street name of the address of the company (headquarters) |
city_address | string | City of the address of the company (headquarters) |
zipcode | string | Zip code of the address of the company (headquarters) |
country | string | Country of the company (headquarters) |
has_published | boolean | Indicate if the company has already published its results |
Score of company
import requests
requests.post(
"https://api.tradeinsur.com/fast/api/v1/search/company/score",
json={"national_id": "NATIONAL_ID"},
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X POST
"https://api.tradeinsur.com/fast/api/v1/search/company/score" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json" \
-d '{"national_id": "NATIONAL_ID"}'
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "ok",
"body": [
{
"last_update": "2022-03-19",
"recommended_outstanding": "1500000.0",
"risk_level": "Very low risk",
"risk_level_code": "1",
"default_probability": "0.00095",
"score_company_percent": "82",
"score_company_twenty": "16",
"score_sector_percent": "79",
"score_sector_twenty": "15"
}
],
"isBase64Encoded": false
}
This endpoint retrieves scores of the company matching the given national ID.
HTTP Request
POST https://api.tradeinsur.com/fast/api/v1/search/company/score
JSON post data
Key | Required | Description |
---|---|---|
national_id | string | Identifier of company according to its national/jurisdiction register |
JSON response data
Key | Value type | Description |
---|---|---|
last_update | string (%year-%month-%day) | Last update of the risks calculation |
recommended_outstanding | string | Recommended maximum outstanding to have with this company |
risk_level | string | Level of the risk (Label) |
risk_level_code | string | Level of the risk (rated on 4) |
default_probability | string | Probability for the company to fail within the next 12 months |
score_company_percent | string | Company solvability score (rated on 100) |
score_company_twenty | string | Company solvability score (rated on 20) |
score_sector_percent | string | Company's sector solvability score (rated on 100) |
score_sector_twenty | string | Company's sector solvability score (rated on 20) |
Finances of company
import requests
requests.post(
"https://api.tradeinsur.com/fast/api/v1/search/company/finances",
json={"national_id": "NATIONAL_ID"},
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X POST
"https://api.tradeinsur.com/fast/api/v1/search/company/finances" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json" \
-d '{"national_id": "NATIONAL_ID"}'
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "ok",
"body": [
{
"closing_date": "2020-12-31",
"time_n_months": "12",
"currency": "EUR",
"total_assets": "3.07E8",
"shared_capital": "4.93E8",
"net_revenue": "2.05E8",
"operating_debt": "0.0",
"accounts_payable": "2.6E7",
"turnover": "8.7E7",
"total_equity": "1.92E9",
"total_debts": "5.375E9",
"net_cashflow": "-1450000000.0",
"raw": {
"schema": "Formulaire 2050-LIASSE : LIASSE BIC/IS - REGIME RN (Tableaux n° 2050-SD à 2059-G-SD)",
"values": {
"02": "0.0",
"03": "0.0",
"3Z": "1000000.0",
"5P": "0.0",
"6N": "0.0",
"04": "0.0",
"0G": "6.294E9",
"05": "0.0",
"0H": "0.0",
"0P": "6000000.0",
"06": "0.0",
"1K": "0.0",
"07": "0.0",
"6B": "2000000.0",
"6H": "0.0",
"08": "0.0",
"0R": "4.3E7",
"5A": "1.1E7",
"09": "0.0",
"0J": "1.1E8",
"1A": "3.07E8",
"1E": "0.0",
"6A": "9000000.0",
"0K": "1.78E8",
"0L": "6.227E9",
"0N": "3.7E7",
"4W": "0.0",
"5Z": "4.7E7",
"0Q": "0.0",
"5S": "0.0",
"1B": "0.0",
"1C": "0.0",
"1J": "0.0",
"4D": "0.0",
"1D": "0.0",
"6C": "0.0",
"1G": "0.0",
"1H": "0.0",
"2E": "1.2E7",
"5R": "0.0",
"4H": "0.0",
"6F": "0.0",
"4M": "0.0",
"6E": "0.0",
"4S": "0.0",
"6D": "1.1E7",
"5E": "0.0",
"5U": "0.0",
"5K": "0.0",
"5Y": "0.0",
"5T": "0.0",
"6G": "0.0",
"6P": "0.0",
"6R": "0.0",
"6S": "0.0",
"6U": "7000000.0",
"6Y": "6000000.0",
"6Z": "0.0",
"7A": "8000000.0",
"7B": "1.89E8",
"7C": "2.37E8",
"7Y": "0.0",
"7Y3": "0.0",
"7Z": "2.974E9",
"7Z2": "1.17E8",
"8A": "2.312E9",
"8B": "2.6E7",
"8B3": "0.0",
"8C": "0.0",
"8D": "0.0",
"8D3": "0.0",
"6T": "0.0",
"6W": "7000000.0",
"6X": "2000000.0",
"8C3": "0.0",
"6V": "0.0",
"8A2": "2.312E9",
"8B2": "2.6E7",
"7Y2": "0.0",
"7Z3": "1.257E9",
"8C2": "0.0",
"8A3": "0.0",
"8D2": "0.0",
"8E2": "0.0",
"8J": "1000000.0",
"8J2": "1000000.0",
"8J3": "0.0",
"8K": "9000000.0",
"8K2": "9000000.0",
"8K3": "0.0",
"8L": "3.2E7",
"8L2": "9000000.0",
"8L3": "2.2E7",
"9X": "2.4E8",
"9Z": "0.0",
"A1": "0.0",
"A2": "0.0",
"A3": "0.0",
"A4": "0.0",
"AA": "0.0",
"AB": "0.0",
"AC": "0.0",
"AE": "0.0",
"AF": "2.0E7",
"AG": "1.9E7",
"AH": "0.0",
"AI": "0.0",
"AJ": "4.8E7",
"AK": "3.0E7",
"AL": "0.0",
"AM": "0.0",
"AN": "0.0",
"AO": "0.0",
"AP": "0.0",
"AQ": "0.0",
"AS": "0.0",
"AT": "9000000.0",
"AU": "5000000.0",
"AV": "0.0",
"AW": "0.0",
"AX": "0.0",
"AY": "0.0",
"B1": "0.0",
"BB": "1.289E9",
"BC": "0.0",
"BD": "2.7E7",
"BE": "0.0",
"8E": "0.0",
"8E3": "0.0",
"AD": "0.0",
"AR": "0.0",
"8J4": "0.0",
"BF": "0.0",
"BG": "0.0",
"BH": "3.5E7",
"BI": "0.0",
"BJ": "6.227E9",
"BK": "2.93E8",
"BL": "0.0",
"BM": "0.0",
"BN": "0.0",
"BO": "0.0",
"BP": "0.0",
"BQ": "0.0",
"BR": "0.0",
"BS": "0.0",
"BT": "0.0",
"BU": "0.0",
"BV": "0.0",
"BW": "0.0",
"BX": "3.1E7",
"BY": "7000000.0",
"CA": "8000000.0",
"CB": "0.0",
"CC": "0.0",
"CD": "7.06E8",
"CE": "0.0",
"CF": "1.56E8",
"CG": "0.0",
"CH": "7000000.0",
"CI": "0.0",
"CJ": "1.377E9",
"CK": "1.5E7",
"CL": "2.3E7",
"CM": "7000000.0",
"CN": "9000000.0",
"CO": "7.642E9",
"CP": "0.0",
"CR": "0.0",
"CS": "0.0",
"CT": "0.0",
"CU": "4.8E9",
"CV": "2.4E8",
"CY": "0.0",
"CZ": "0.0",
"D0": "0.0",
"D8": "0.0",
"DA": "4.93E8",
"DC": "0.0",
"DD": "4.9E7",
"DE": "0.0",
"DF": "0.0",
"DG": "0.0",
"DH": "2.25E8",
"DI": "2.05E8",
"DJ": "0.0",
"DK": "0.0",
"DL": "1.92E9",
"DM": "0.0",
"DN": "0.0",
"DO": "0.0",
"DP": "2000000.0",
"DQ": "3.0E7",
"DR": "3.2E7",
"DS": "0.0",
"DT": "2.974E9",
"DU": "1000000.0",
"DV": "2.312E9",
"DW": "0.0",
"DX": "2.6E7",
"DY": "2.0E7",
"DZ": "1000000.0",
"EA": "9000000.0",
"EB": "3.2E7",
"EC": "5.375E9",
"ED": "9000000.0",
"EE": "7.336E9",
"EF": "0.0",
"EG": "0.0",
"EH": "0.0",
"EI": "0.0",
"EJ": "0.0",
"EK": "0.0",
"EL": "0.0",
"EM": "0.0",
"FA": "0.0",
"FB": "0.0",
"FC": "0.0",
"FD": "0.0",
"FE": "0.0",
"FF": "0.0",
"FG": "1.8E7",
"FH": "6.9E7",
"FI": "8.7E7",
"FJ": "1.8E7",
"FK": "6.9E7",
"FL": "8.7E7",
"FM": "0.0",
"FN": "9000000.0",
"FO": "0.0",
"FP": "2.1E7",
"FQ": "4.4E7",
"FR": "1.61E8",
"FS": "0.0",
"FT": "0.0",
"FU": "0.0",
"FV": "0.0",
"FW": "9.4E7",
"FX": "4000000.0",
"FY": "3.1E7",
"FZ": "2.8E7",
"GA": "6000000.0",
"GB": "0.0",
"GC": "7000000.0",
"GD": "1.9E7",
"GE": "1000000.0",
"GF": "1.9E8",
"GG": "-2.9E7",
"GH": "0.0",
"GI": "0.0",
"GJ": "3.13E8",
"GK": "0.0",
"GL": "1.4E7",
"GM": "2000000.0",
"GN": "1.1E7",
"GO": "0.0",
"GP": "3.4E8",
"GQ": "7.0E7",
"GR": "3.8E7",
"GS": "8000000.0",
"GT": "0.0",
"GU": "1.16E8",
"GV": "2.24E8",
"GW": "1.95E8",
"HA": "1000000.0",
"HB": "4000000.0",
"HC": "2.1E7",
"HD": "2.6E7",
"HE": "1000000.0",
"HF": "1.6E7",
"HG": "2000000.0",
"HH": "2.0E7",
"HI": "6000000.0",
"HJ": "0.0",
"HK": "-4000000.0",
"HL": "5.27E8",
"HM": "3.23E8",
"HN": "2.04E8",
"HO": "0.0",
"HP": "0.0",
"HQ": "0.0",
"HX": "0.0",
"HY": "0.0",
"I4": "0.0",
"IN": "0.0",
"KC": "0.0",
"KD": "5.8E7",
"KE": "0.0",
"KF": "1.2E7",
"LN": "8000000.0",
"LO": "0.0",
"LP": "4000000.0",
"LQ": "6.228E9",
"LR": "0.0",
"LS": "9.4E7",
"LT": "0.0",
"LV": "2000000.0",
"LV1": "0.0",
"LW": "6.8E7",
"NC": "0.0",
"NG": "4000000.0",
"NG1": "0.0",
"NH": "8000000.0",
"NJ": "1.72E8",
"NJ1": "0.0",
"NK": "6.15E9",
"PD": "0.0",
"PE": "3.3E7",
"PF": "5000000.0",
"PG": "0.0",
"PH": "3.8E7",
"PZ": "0.0",
"QA": "0.0",
"QB": "0.0",
"QC": "0.0",
"QH": "0.0",
"QI": "0.0",
"QJ": "0.0",
"QK": "0.0",
"QL": "0.0",
"QN": "0.0",
"QO": "0.0",
"QU": "4000000.0",
"QW": "0.0",
"QX": "5000000.0",
"SB": "0.0",
"SC": "0.0",
"SD": "0.0",
"SE": "0.0",
"SF": "0.0",
"SM": "5000000.0",
"SP": "2000000.0",
"SP0": "9000000.0",
"BZ": "4.78E8",
"DB": "9.49E8",
"QV": "1000000.0",
"MY": "0.0",
"QM": "0.0",
"SP1": "0.0",
"SR": "7000000.0",
"SS": "0.0",
"ST": "0.0",
"SZ": "0.0",
"SZ2": "0.0",
"SZ3": "0.0",
"TO": "0.0",
"TS": "0.0",
"TT": "1000000.0",
"TU": "0.0",
"TV": "2.2E7",
"TW": "3.7E7",
"TX": "3.2E7",
"TY": "7.6E7",
"TZ": "0.0",
"UA": "2.65E8",
"UB": "9.8E7",
"UC": "3.8E7",
"UD": "2.96E8",
"UE": "2.7E7",
"UF": "2.8E7",
"UG": "7.0E7",
"UH": "2000000.0",
"UJ": "2000000.0",
"UK": "8000000.0",
"UL": "1.289E9",
"UM": "3.5E7",
"UP": "0.0",
"UR": "0.0",
"UT": "3.5E7",
"UU": "0.0",
"UU2": "0.0",
"UV": "3.5E7",
"UX": "3.1E7",
"UX2": "3.1E7",
"UY": "0.0",
"UY2": "0.0",
"UZ": "0.0",
"UZ2": "0.0",
"VA": "0.0",
"VA2": "0.0",
"VB": "0.0",
"VB2": "0.0",
"VC": "4.62E8",
"VC2": "4.62E8",
"VG": "0.0",
"VG2": "0.0",
"VG3": "0.0",
"VH": "1000000.0",
"VH2": "1000000.0",
"VH3": "0.0",
"VI": "0.0",
"VI2": "0.0",
"VI3": "0.0",
"VI4": "0.0",
"VJ": "0.0",
"VK": "0.0",
"VL": "0.0",
"VM": "0.0",
"VM2": "0.0",
"VN": "0.0",
"VN2": "0.0",
"VP": "1.3E7",
"VP2": "1.3E7",
"VQ": "2.0E7",
"VQ2": "2000000.0",
"VQ3": "1.8E7",
"VR": "2000000.0",
"VR2": "1000000.0",
"VS": "7000000.0",
"VS2": "7000000.0",
"VT": "1.84E9",
"VU": "5.85E8",
"VV": "1.255E9",
"VW": "0.0",
"VW2": "0.0",
"VW3": "0.0",
"VX": "0.0",
"VX2": "0.0",
"VX3": "0.0",
"VY": "5.375E9",
"VY3": "1.297E9",
"VY4": "1.601E9",
"VZ": "2.477E9",
"XQ": "0.0",
"YP": "243.0",
"YQ": "0.0",
"YR": "0.0",
"YS": "0.0",
"YT": "0.0",
"YU": "0.0",
"YV": "0.0",
"YW": "0.0",
"YX": "0.0",
"YY": "0.0",
"YZ": "0.0",
"Z10": "4000000.0",
"Z11": "2.5E7",
"Z8": "2.3E7",
"ZE": "0.0",
"ZJ": "0.0",
"ZR": "0.0"
}
}
},
{
"closing_date": "2019-12-31",
"time_n_months": "12",
"currency": "EUR",
"total_assets": "2.25E8",
"shared_capital": "4.86E8",
"net_revenue": "2.97E8",
"operating_debt": "0.0",
"accounts_payable": "1.7E7",
"turnover": "8.0E7",
"total_equity": "1.811E9",
"total_debts": "5.273E9",
"net_cashflow": "-2016000000.0",
"raw": {
"schema": "Formulaire 2050-LIASSE : LIASSE BIC/IS - REGIME RN (Tableaux n° 2050-SD à 2059-G-SD)",
"values": {
"02": "0.0",
"03": "0.0",
"06": "1.68E8",
"0J": "1.421E9",
"0K": "1.36E8",
"0R": "3.7E7",
"1C": "0.0",
"04": "0.0",
"07": "1.1E7",
"0N": "3.2E7",
"05": "0.0",
"0G": "5.009E9",
"08": "1000000.0",
"0H": "0.0",
"09": "1.78E8",
"1A": "2.25E8",
"0L": "6.294E9",
"1B": "0.0",
"0P": "5000000.0",
"0Q": "0.0",
"1D": "0.0",
"1E": "0.0",
"1G": "0.0",
"1H": "0.0",
"1J": "0.0",
"1K": "0.0",
"2E": "2.9E7",
"3Z": "2000000.0",
"4D": "0.0",
"4H": "0.0",
"4M": "0.0",
"4S": "0.0",
"4W": "0.0",
"5A": "1.5E7",
"5E": "0.0",
"5K": "0.0",
"5P": "0.0",
"5R": "0.0",
"5S": "0.0",
"5T": "0.0",
"5U": "0.0",
"5Y": "0.0",
"5Z": "4.1E7",
"6A": "9000000.0",
"6B": "0.0",
"6C": "0.0",
"6D": "9000000.0",
"6E": "0.0",
"6F": "0.0",
"6G": "0.0",
"6H": "0.0",
"6N": "0.0",
"6P": "0.0",
"6R": "0.0",
"6S": "0.0",
"6T": "0.0",
"6U": "0.0",
"6V": "0.0",
"6W": "0.0",
"6X": "1000000.0",
"7A": "1000000.0",
"7B": "1.78E8",
"7C": "2.21E8",
"7Y": "0.0",
"7Y2": "0.0",
"7Y3": "0.0",
"7Z": "2.623E9",
"7Z2": "3000000.0",
"7Z3": "6.2E8",
"8A": "2.525E9",
"8A2": "2.525E9",
"8A3": "0.0",
"8B": "1.7E7",
"8B3": "0.0",
"8C": "0.0",
"6Y": "1000000.0",
"6Z": "1000000.0",
"8B2": "1.7E7",
"8C2": "0.0",
"8C3": "0.0",
"8D": "0.0",
"8D2": "0.0",
"8D3": "0.0",
"8E": "0.0",
"8E2": "0.0",
"8E3": "0.0",
"8J": "3000000.0",
"8J2": "3000000.0",
"8J3": "0.0",
"8J4": "0.0",
"8K": "1000000.0",
"8K2": "1000000.0",
"8K3": "0.0",
"8L": "4.0E7",
"8L2": "8000000.0",
"8L3": "3.1E7",
"9X": "0.0",
"9Z": "0.0",
"A1": "0.0",
"A2": "0.0",
"A3": "0.0",
"A4": "0.0",
"AA": "0.0",
"AB": "0.0",
"AC": "0.0",
"AD": "0.0",
"AE": "0.0",
"AF": "2.0E7",
"AG": "1.8E7",
"AH": "0.0",
"AI": "0.0",
"AJ": "3.8E7",
"AK": "2.3E7",
"AL": "0.0",
"AM": "0.0",
"AN": "0.0",
"AO": "0.0",
"AP": "0.0",
"AQ": "0.0",
"AR": "0.0",
"AS": "0.0",
"AT": "4000000.0",
"AU": "4000000.0",
"AV": "2000000.0",
"AW": "0.0",
"AX": "2000000.0",
"AY": "0.0",
"B1": "0.0",
"BB": "1.366E9",
"BC": "2000000.0",
"BD": "2.5E7",
"BE": "0.0",
"BF": "0.0",
"BG": "0.0",
"BH": "4.7E7",
"BI": "4000000.0",
"BJ": "6.293E9",
"BK": "2.24E8",
"BL": "0.0",
"BM": "0.0",
"BN": "0.0",
"BO": "0.0",
"BP": "0.0",
"BQ": "0.0",
"BR": "0.0",
"BS": "0.0",
"BT": "0.0",
"BU": "0.0",
"BV": "0.0",
"BW": "0.0",
"BX": "3.9E7",
"BY": "2000000.0",
"BZ": "4.8E8",
"CA": "0.0",
"CB": "0.0",
"CC": "0.0",
"CD": "3.71E8",
"CE": "0.0",
"CF": "1.38E8",
"CG": "0.0",
"CH": "3000000.0",
"CI": "0.0",
"CJ": "1.031E9",
"CK": "2000000.0",
"CL": "2.1E7",
"CM": "9000000.0",
"CN": "5000000.0",
"CO": "7.359E9",
"CP": "0.0",
"CR": "0.0",
"CS": "0.0",
"CT": "0.0",
"CU": "4.79E9",
"CV": "1.73E8",
"CY": "0.0",
"CZ": "0.0",
"D0": "0.0",
"D8": "0.0",
"DA": "4.86E8",
"DB": "8.8E8",
"DC": "0.0",
"DD": "4.8E7",
"DE": "0.0",
"DF": "0.0",
"DG": "0.0",
"DH": "9.9E7",
"DI": "2.97E8",
"DJ": "0.0",
"DK": "1000000.0",
"DL": "1.811E9",
"DM": "0.0",
"DN": "0.0",
"DO": "0.0",
"DP": "9000000.0",
"DQ": "3.7E7",
"DR": "4.6E7",
"DS": "0.0",
"DT": "2.623E9",
"DU": "4.6E7",
"DV": "2.525E9",
"DW": "0.0",
"DX": "1.7E7",
"DY": "1.8E7",
"DZ": "3000000.0",
"EA": "1000000.0",
"EB": "4.0E7",
"EC": "5.273E9",
"ED": "5000000.0",
"EE": "7.135E9",
"EF": "0.0",
"EG": "0.0",
"EH": "0.0",
"EI": "0.0",
"EJ": "0.0",
"EK": "0.0",
"EL": "0.0",
"EM": "0.0",
"FA": "0.0",
"FB": "0.0",
"FC": "0.0",
"FD": "0.0",
"FE": "0.0",
"FF": "0.0",
"FG": "1.8E7",
"FH": "6.2E7",
"FI": "8.0E7",
"FJ": "1.8E7",
"FK": "6.2E7",
"FL": "8.0E7",
"FM": "0.0",
"FN": "6000000.0",
"FO": "0.0",
"FP": "3.4E7",
"FQ": "4.5E7",
"FR": "1.65E8",
"FS": "0.0",
"FT": "0.0",
"FU": "0.0",
"FV": "0.0",
"FW": "8.6E7",
"FX": "4000000.0",
"FY": "2.6E7",
"FZ": "3.2E7",
"GA": "5000000.0",
"GB": "0.0",
"GC": "5000000.0",
"GD": "2.8E7",
"GE": "1000000.0",
"GF": "1.87E8",
"GG": "-2.2E7",
"GH": "0.0",
"GI": "0.0",
"GJ": "3.38E8",
"GK": "0.0",
"GL": "8000000.0",
"GM": "4000000.0",
"GN": "1.2E7",
"GO": "0.0",
"GP": "3.62E8",
"GQ": "1.5E7",
"GR": "3.7E7",
"GS": "1.2E7",
"GT": "0.0",
"GU": "6.4E7",
"GV": "2.98E8",
"GW": "2.76E8",
"HA": "0.0",
"HB": "9000000.0",
"HC": "8000000.0",
"HD": "1.7E7",
"HE": "0.0",
"HF": "1.4E7",
"HG": "0.0",
"HH": "1.4E7",
"HJ": "0.0",
"HK": "-1.8E7",
"HL": "5.44E8",
"HM": "2.47E8",
"HP": "0.0",
"HQ": "0.0",
"HX": "0.0",
"HY": "0.0",
"I4": "0.0",
"HI": "3000000.0",
"HN": "2.97E8",
"HO": "0.0",
"IN": "0.0",
"KC": "0.0",
"KD": "5.2E7",
"KE": "0.0",
"KF": "6000000.0",
"LN": "5000000.0",
"LO": "0.0",
"LP": "5000000.0",
"LQ": "4.952E9",
"LR": "0.0",
"LS": "1.41E9",
"LT": "0.0",
"LV": "0.0",
"LV1": "0.0",
"LW": "5.8E7",
"MY": "0.0",
"NC": "0.0",
"NG": "2000000.0",
"NG1": "0.0",
"NH": "8000000.0",
"NJ": "1.34E8",
"NJ1": "0.0",
"NK": "6.228E9",
"PD": "0.0",
"PE": "2.8E7",
"PF": "5000000.0",
"PG": "0.0",
"PH": "3.3E7",
"PZ": "0.0",
"QA": "0.0",
"QB": "0.0",
"QC": "0.0",
"QH": "0.0",
"QI": "0.0",
"QJ": "0.0",
"QK": "0.0",
"QL": "0.0",
"QM": "0.0",
"QN": "0.0",
"QO": "0.0",
"QU": "4000000.0",
"QV": "1000000.0",
"QW": "0.0",
"QX": "5000000.0",
"SB": "0.0",
"SC": "0.0",
"SD": "0.0",
"SE": "0.0",
"SF": "0.0",
"SM": "0.0",
"SP": "0.0",
"SP0": "0.0",
"SP1": "0.0",
"SR": "0.0",
"SS": "0.0",
"ST": "0.0",
"SZ": "0.0",
"SZ2": "0.0",
"SZ3": "0.0",
"TO": "1000000.0",
"TS": "0.0",
"TT": "1000000.0",
"TU": "1000000.0",
"TV": "2.9E7",
"TW": "2.4E7",
"TX": "4.6E7",
"TY": "1.2E7",
"TZ": "1000000.0",
"UA": "1.89E8",
"UB": "4.1E7",
"UC": "2.6E7",
"UD": "2.37E8",
"UE": "2.8E7",
"UG": "1.3E7",
"UH": "4000000.0",
"UJ": "0.0",
"UK": "1000000.0",
"UL": "1.366E9",
"UM": "6.3E7",
"UP": "0.0",
"UR": "0.0",
"UT": "4.7E7",
"UU": "0.0",
"UU2": "0.0",
"UV": "4.7E7",
"UX2": "3.6E7",
"UY": "0.0",
"UY2": "0.0",
"UZ": "0.0",
"UZ2": "0.0",
"VA": "0.0",
"VA2": "0.0",
"VB2": "0.0",
"VC": "0.0",
"VC2": "0.0",
"VG": "0.0",
"VG2": "0.0",
"VG3": "0.0",
"VH": "4.6E7",
"VH2": "4.6E7",
"VH3": "0.0",
"VI": "0.0",
"VI2": "0.0",
"UF": "2.1E7",
"UX": "3.6E7",
"VB": "0.0",
"VI3": "0.0",
"VI4": "0.0",
"VJ": "0.0",
"VK": "0.0",
"VL": "0.0",
"VM": "0.0",
"VM2": "0.0",
"VN": "0.0",
"VN2": "0.0",
"VP": "0.0",
"VP2": "0.0",
"VQ": "1.8E7",
"VQ2": "1.6E7",
"VQ3": "2000000.0",
"VR": "4.81E8",
"VR2": "4.79E8",
"VS": "3000000.0",
"VS2": "3000000.0",
"VT": "1.933E9",
"VU": "6.28E8",
"VV": "1.305E9",
"VW": "0.0",
"VW2": "0.0",
"VW3": "0.0",
"VX": "0.0",
"VX2": "0.0",
"VX3": "0.0",
"VY": "5.273E9",
"VY3": "6.53E8",
"VY4": "2.001E9",
"VZ": "2.619E9",
"XQ": "0.0",
"YP": "222.0",
"YQ": "0.0",
"YR": "0.0",
"YS": "0.0",
"YT": "0.0",
"YU": "0.0",
"YV": "0.0",
"YW": "0.0",
"YX": "4000000.0",
"YY": "0.0",
"YZ": "0.0",
"Z10": "0.0",
"Z11": "0.0",
"Z8": "0.0",
"ZE": "0.0",
"ZJ": "8.6E7",
"ZR": "0.0"
}
}
},
{
"closing_date": "2018-12-31",
"time_n_months": "12",
"currency": "EUR",
"total_assets": "2.1E8",
"shared_capital": "4.78E8",
"net_revenue": "2.85E8",
"operating_debt": "0.0",
"accounts_payable": "1.6E7",
"turnover": "5.9E7",
"total_equity": "1.603E9",
"total_debts": "4.318E9",
"net_cashflow": "-1247000000.0",
"raw": {
"schema": "Formulaire 2050-LIASSE : LIASSE BIC/IS - REGIME RN (Tableaux n° 2050-SD à 2059-G-SD)",
"values": {
"02": "0.0",
"03": "0.0",
"04": "0.0",
"07": "0.0",
"09": "0.0",
"0G": "4.238E9",
"0H": "0.0",
"1B": "0.0",
"05": "0.0",
"0K": "5.22E8",
"0N": "2.7E7",
"0R": "3.2E7",
"06": "0.0",
"0L": "5.009E9",
"0P": "5000000.0",
"08": "0.0",
"0J": "1.293E9",
"0Q": "0.0",
"1A": "2.1E8",
"1C": "0.0",
"1D": "0.0",
"1E": "0.0",
"1G": "0.0",
"1H": "0.0",
"1J": "0.0",
"2E": "2.6E7",
"3Z": "2000000.0",
"4D": "0.0",
"4H": "0.0",
"4M": "0.0",
"4S": "0.0",
"4W": "0.0",
"5A": "1.8E7",
"5E": "0.0",
"5K": "0.0",
"5P": "0.0",
"5R": "0.0",
"5S": "0.0",
"5T": "0.0",
"5U": "0.0",
"5Y": "2.3E7",
"5Z": "5.6E7",
"6A": "9000000.0",
"6B": "0.0",
"6E": "0.0",
"6F": "0.0",
"6G": "0.0",
"1K": "0.0",
"6C": "0.0",
"6D": "9000000.0",
"6H": "0.0",
"6N": "0.0",
"6P": "0.0",
"6R": "0.0",
"6S": "0.0",
"6T": "0.0",
"6U": "0.0",
"6W": "0.0",
"6Y": "0.0",
"6Z": "0.0",
"7A": "1000000.0",
"7C": "2.35E8",
"7Y": "0.0",
"7Y2": "0.0",
"7Y3": "0.0",
"7Z": "2.228E9",
"7Z2": "3000000.0",
"6V": "0.0",
"6X": "1000000.0",
"7B": "1.77E8",
"7Z3": "7.25E8",
"8A": "1.979E9",
"8A2": "1.979E9",
"8A3": "0.0",
"8B": "1.6E7",
"8B2": "1.6E7",
"8B3": "0.0",
"8C": "0.0",
"8C2": "0.0",
"8C3": "0.0",
"8D": "0.0",
"8D2": "0.0",
"8D3": "0.0",
"8E": "0.0",
"8E2": "0.0",
"8E3": "0.0",
"8J": "0.0",
"8J2": "0.0",
"8J3": "0.0",
"8K": "1000000.0",
"8K2": "1000000.0",
"8K3": "0.0",
"8L2": "0.0",
"8L3": "0.0",
"9X": "1.68E8",
"9Z": "0.0",
"A2": "0.0",
"A3": "0.0",
"A4": "0.0",
"AA": "0.0",
"AB": "0.0",
"AC": "0.0",
"AD": "0.0",
"AE": "0.0",
"AF": "1.9E7",
"8J4": "0.0",
"8L": "0.0",
"A1": "0.0",
"AG": "1.8E7",
"AH": "3.3E7",
"AI": "1.9E7",
"AJ": "0.0",
"AK": "0.0",
"AL": "0.0",
"AM": "0.0",
"AN": "0.0",
"AO": "0.0",
"AP": "0.0",
"AQ": "0.0",
"AR": "0.0",
"AS": "0.0",
"AT": "5000000.0",
"AU": "4000000.0",
"AV": "0.0",
"AW": "0.0",
"AX": "0.0",
"AY": "0.0",
"B1": "0.0",
"BB": "1.406E9",
"BC": "0.0",
"BD": "2.3E7",
"BE": "0.0",
"BF": "0.0",
"BG": "0.0",
"BH": "4.2E7",
"BI": "0.0",
"BJ": "5.009E9",
"BK": "2.09E8",
"BL": "0.0",
"BM": "0.0",
"BN": "0.0",
"BO": "0.0",
"BP": "0.0",
"BQ": "0.0",
"BR": "0.0",
"BS": "0.0",
"BT": "0.0",
"BU": "0.0",
"BV": "0.0",
"BW": "0.0",
"BX": "1.9E7",
"BY": "0.0",
"BZ": "3.75E8",
"CA": "1000000.0",
"CB": "0.0",
"CC": "0.0",
"CD": "2.75E8",
"CE": "0.0",
"CF": "4.57E8",
"CG": "0.0",
"CH": "2000000.0",
"CI": "0.0",
"CJ": "1.128E9",
"CK": "1000000.0",
"CL": "2.5E7",
"CM": "1.0E7",
"CN": "3000000.0",
"CO": "6.175E9",
"CP": "0.0",
"CR": "0.0",
"CS": "0.0",
"CT": "0.0",
"CU": "3.481E9",
"CV": "1.68E8",
"CY": "0.0",
"CZ": "0.0",
"D0": "0.0",
"D8": "0.0",
"DA": "4.78E8",
"DB": "7.7E8",
"DC": "0.0",
"DD": "4.7E7",
"DE": "0.0",
"DF": "0.0",
"DG": "0.0",
"DH": "2.1E7",
"DI": "2.85E8",
"DJ": "0.0",
"DK": "2000000.0",
"DL": "1.603E9",
"DM": "0.0",
"DN": "0.0",
"DO": "0.0",
"DP": "1.1E7",
"DQ": "3.0E7",
"DR": "4.1E7",
"DS": "0.0",
"DT": "2.228E9",
"DU": "7.8E7",
"DV": "1.979E9",
"DW": "0.0",
"DX": "1.6E7",
"DY": "1.6E7",
"DZ": "0.0",
"EA": "1000000.0",
"EB": "0.0",
"EC": "4.318E9",
"ED": "3000000.0",
"EE": "5.965E9",
"EF": "0.0",
"EG": "0.0",
"EH": "0.0",
"EI": "0.0",
"EJ": "0.0",
"EK": "0.0",
"EL": "0.0",
"EM": "0.0",
"FA": "0.0",
"FB": "0.0",
"FC": "0.0",
"FD": "0.0",
"FE": "0.0",
"FF": "0.0",
"FG": "1.3E7",
"FH": "4.6E7",
"FI": "5.9E7",
"FJ": "1.3E7",
"FK": "4.6E7",
"FL": "5.9E7",
"FM": "0.0",
"FN": "3000000.0",
"FO": "0.0",
"FP": "1.5E7",
"FQ": "3.9E7",
"FR": "1.16E8",
"FS": "0.0",
"FT": "0.0",
"FU": "0.0",
"FV": "0.0",
"FW": "6.9E7",
"FX": "4000000.0",
"FY": "2.3E7",
"FZ": "2.1E7",
"GA": "4000000.0",
"GB": "0.0",
"GC": "5000000.0",
"GD": "1.6E7",
"GE": "1000000.0",
"GF": "1.43E8",
"GG": "-2.7E7",
"GH": "0.0",
"GI": "0.0",
"GJ": "2.78E8",
"GK": "0.0",
"GL": "4000000.0",
"GM": "3.8E7",
"GN": "1.6E7",
"GO": "0.0",
"GP": "3.36E8",
"GQ": "1.9E7",
"GR": "3.3E7",
"GS": "3.9E7",
"GT": "0.0",
"GU": "9.1E7",
"GV": "2.45E8",
"GW": "2.18E8",
"HA": "0.0",
"HB": "7.6E7",
"HC": "6000000.0",
"HD": "8.2E7",
"HE": "0.0",
"HF": "2.5E7",
"HG": "0.0",
"HH": "2.5E7",
"HI": "5.7E7",
"HJ": "0.0",
"HK": "-1.0E7",
"HL": "5.34E8",
"HM": "2.49E8",
"HN": "2.85E8",
"HO": "0.0",
"HP": "0.0",
"HQ": "0.0",
"HX": "0.0",
"HY": "0.0",
"I4": "0.0",
"IN": "0.0",
"KC": "0.0",
"KD": "4.7E7",
"KE": "0.0",
"KF": "6000000.0",
"LN": "4000000.0",
"LO": "0.0",
"LP": "1000000.0",
"LQ": "4.187E9",
"LR": "0.0",
"LS": "1.286E9",
"LT": "0.0",
"LV": "1000000.0",
"LV1": "0.0",
"LW": "5.2E7",
"MY": "0.0",
"NC": "0.0",
"NG": "0.0",
"NG1": "0.0",
"NH": "5000000.0",
"NJ": "5.21E8",
"NJ1": "0.0",
"NK": "4.952E9",
"PD": "0.0",
"PE": "2.4E7",
"PF": "4000000.0",
"PG": "0.0",
"PH": "2.8E7",
"PZ": "0.0",
"QA": "0.0",
"QB": "0.0",
"QC": "0.0",
"QH": "0.0",
"QI": "0.0",
"QJ": "0.0",
"QK": "0.0",
"QL": "0.0",
"QM": "0.0",
"QN": "0.0",
"QO": "0.0",
"QU": "3000000.0",
"QV": "1000000.0",
"QW": "0.0",
"QX": "4000000.0",
"SB": "0.0",
"SC": "0.0",
"SD": "0.0",
"SE": "0.0",
"SF": "0.0",
"SM": "0.0",
"SP": "0.0",
"SP0": "0.0",
"SP1": "0.0",
"SR": "0.0",
"SS": "0.0",
"ST": "0.0",
"SZ": "0.0",
"SZ2": "0.0",
"SZ3": "0.0",
"TO": "2000000.0",
"TS": "0.0",
"TT": "0.0",
"TU": "2000000.0",
"TV": "1.8E7",
"TW": "3.3E7",
"TX": "4.1E7",
"TY": "1.5E7",
"TZ": "1.4E7",
"UA": "1.78E8",
"UB": "3.3E7",
"UC": "4.7E7",
"UD": "2.21E8",
"UE": "1.6E7",
"UF": "9000000.0",
"UG": "1.7E7",
"UH": "3.8E7",
"UJ": "0.0",
"UK": "0.0",
"UL": "1.406E9",
"UM": "5000000.0",
"UP": "0.0",
"UR": "0.0",
"UT": "4.2E7",
"UU": "0.0",
"UU2": "0.0",
"UV": "4.2E7",
"UX": "1.9E7",
"UX2": "1.2E7",
"UY": "0.0",
"UY2": "0.0",
"UZ": "0.0",
"UZ2": "0.0",
"VA": "0.0",
"VA2": "0.0",
"VB": "0.0",
"VB2": "0.0",
"VC": "0.0",
"VC2": "0.0",
"VG": "7.8E7",
"VG2": "7.8E7",
"VG3": "0.0",
"VH": "0.0",
"VH2": "0.0",
"VH3": "0.0",
"VI": "0.0",
"VI2": "0.0",
"VI3": "0.0",
"VI4": "0.0",
"VJ": "0.0",
"VK": "0.0",
"VL": "0.0",
"VM": "0.0",
"VM2": "0.0",
"VN": "0.0",
"VN2": "0.0",
"VP": "0.0",
"VP2": "0.0",
"VQ": "1.6E7",
"VQ2": "1.6E7",
"VQ3": "0.0",
"VR": "3.75E8",
"VR2": "3.73E8",
"VS": "2000000.0",
"VS2": "2000000.0",
"VT": "1.844E9",
"VU": "4.34E8",
"VV": "1.41E9",
"VW": "0.0",
"VW2": "0.0",
"VW3": "0.0",
"VX": "0.0",
"VX2": "0.0",
"VX3": "0.0",
"VY": "4.318E9",
"VY3": "7.25E8",
"VY4": "1.5E9",
"VZ": "2.093E9",
"XQ": "0.0",
"YP": "199.0",
"YQ": "0.0",
"YR": "0.0",
"YS": "0.0",
"YT": "0.0",
"YU": "0.0",
"YV": "0.0",
"YW": "0.0",
"YX": "4000000.0",
"YY": "0.0",
"YZ": "0.0",
"Z10": "0.0",
"Z11": "0.0",
"Z8": "0.0",
"ZE": "0.0",
"ZJ": "6.9E7",
"ZR": "0.0"
}
}
}
],
"isBase64Encoded": false
}
This endpoint retrieves finances of the company matching the given national ID.
HTTP Request
POST https://api.tradeinsur.com/fast/api/v1/search/company/finances
JSON post data
Key | Required | Description |
---|---|---|
national_id | string | Identifier of company according to its national/jurisdiction register |
JSON response data
Key | Value type | Description |
---|---|---|
closing_date | string (%year-%month-%day) | Closing date of the financial statement |
time_n_months | string | Number of months considered on the financial statement (generally 12, one accountable year) |
currency | string | Currency of the values provided on the financial statement |
total_assets | string | Total amount of the assets of the company |
shared_capital | string | Total amount of the company's shared capital |
net_revenue | string | Net revenue of the company |
operating_debt | string | Operating debt of the company |
accounts_payable | string | Payable accounts of the company |
turnover | string | Company's turnover |
total_equity | string | Total equity amount of the company |
total_debts | string | Total amount of debts of the company |
net_cashflow | string | Net cashflow of the company |
raw | list | composed of two elements:
|
Financial indicatior of company
import requests
requests.post(
"https://api.tradeinsur.com/fast/api/v1/search/company/financial-indicator",
json={"national_id": "NATIONAL_ID"},
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X POST
"https://api.tradeinsur.com/fast/api/v1/search/company/financial-indicator" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json" \
-d '{"national_id": "NATIONAL_ID"}'
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "ok",
"body": [
{
"financial_indicators": [
[
{
"ratio_label": "Equity quote",
"ratio_calculation": "Equity / Total Assets",
"company_value": "6.25407",
"closing_date": "2020-12-31"
},
{
"ratio_label": "Operating Income to net revenue ratio",
"ratio_calculation": "Operating Income / Net Revenue",
"company_value": "-0.14146",
"closing_date": "2020-12-31"
},
{
"ratio_label": "Debts to equity ratio",
"ratio_calculation": "Debt / Equity",
"company_value": "2.79948",
"closing_date": "2020-12-31"
},
{
"ratio_label": "Return on debt",
"ratio_calculation": "Operating Income / Loan Amount",
"company_value": "-29.0",
"closing_date": "2020-12-31"
},
{
"ratio_label": "Net Profit Margin",
"ratio_calculation": "Net Income / Turnover",
"company_value": "11.38889",
"closing_date": "2020-12-31"
}
],
[
{
"ratio_label": "Equity quote",
"ratio_calculation": "Equity / Total Assets",
"company_value": "8.04889",
"closing_date": "2019-12-31"
},
{
"ratio_label": "Operating Income to net revenue ratio",
"ratio_calculation": "Operating Income / Net Revenue",
"company_value": "-0.07407",
"closing_date": "2019-12-31"
},
{
"ratio_label": "Debts to equity ratio",
"ratio_calculation": "Debt / Equity",
"company_value": "2.91165",
"closing_date": "2019-12-31"
},
{
"ratio_label": "Return on debt",
"ratio_calculation": "Operating Income / Loan Amount",
"company_value": "-0.47826",
"closing_date": "2019-12-31"
},
{
"ratio_label": "Net Profit Margin",
"ratio_calculation": "Net Income / Turnover",
"company_value": "16.5",
"closing_date": "2019-12-31"
}
],
[
{
"ratio_label": "Equity quote",
"ratio_calculation": "Equity / Total Assets",
"company_value": "7.63333",
"closing_date": "2018-12-31"
},
{
"ratio_label": "Operating Income to net revenue ratio",
"ratio_calculation": "Operating Income / Net Revenue",
"company_value": "-0.09474",
"closing_date": "2018-12-31"
},
{
"ratio_label": "Debts to equity ratio",
"ratio_calculation": "Debt / Equity",
"company_value": "2.6937",
"closing_date": "2018-12-31"
},
{
"ratio_label": "Return on debt",
"ratio_calculation": "Operating Income / Loan Amount",
"company_value": "-0.34615",
"closing_date": "2018-12-31"
},
{
"ratio_label": "Net Profit Margin",
"ratio_calculation": "Net Income / Turnover",
"company_value": "21.92308",
"closing_date": "2018-12-31"
}
]
]
}
],
"isBase64Encoded": false
}
This endpoint retrieves financial indicator of the company matching the given national ID.
HTTP Request
POST https://api.tradeinsur.com/fast/api/v1/search/company/financial-indicator
JSON post data
Key | Required | Description |
---|---|---|
national_id | string | Identifier of company according to its national/jurisdiction register |
JSON response data
Key | Value type | Description |
---|---|---|
ratio_label | string | Name of the financial indicator |
ratio_calculation | string | Calculation used to Obtained the indicator |
company_value | string | Value computed for the company |
closing_date | string (%year-%month-%day) | closing date of the financial statement on which the indicator has been computed |
Financial trend of company
import requests
requests.post(
"https://api.tradeinsur.com/fast/api/v1/search/company/financial-trend",
json={"national_id": "NATIONAL_ID"},
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X POST
"https://api.tradeinsur.com/fast/api/v1/search/company/financial-trend" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json" \
-d '{"national_id": "NATIONAL_ID"}'
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "ok",
"body": [
{
"financial_trend": [
{
"label": "Yearly relative evolution",
"stating_date": "2019-12-31",
"end_date": "2020-12-31",
"time_n_months": "12",
"total_assets": "0.36444",
"shared_capital": "0.0144",
"net_revenue": "-0.30976",
"operating_debt": "nan",
"accounts_payable": "0.52941",
"turnover": "0.0875",
"total_equity": "0.06019",
"total_debts": "0.01934",
"net_cashflow": "-0.28075"
},
{
"label": "Yearly relative evolution",
"stating_date": "2018-12-31",
"end_date": "2019-12-31",
"time_n_months": "12",
"total_assets": "0.07143",
"shared_capital": "0.01674",
"net_revenue": "0.04211",
"operating_debt": "nan",
"accounts_payable": "0.0625",
"turnover": "0.35593",
"total_equity": "0.12976",
"total_debts": "0.22117",
"net_cashflow": "0.61668"
}
]
}
],
"isBase64Encoded": false
}
This endpoint retrieves financial trend of the company matching the given national ID.
HTTP Request
POST https://api.tradeinsur.com/fast/api/v1/search/company/financial-trend
JSON post data
Key | Required | Description |
---|---|---|
national_id | string | Identifier of company according to its national/jurisdiction register |
JSON response data
Key | Value type | Description |
---|---|---|
label | string | Financial trend definition: Computed to obtain the trend on a yearly, so 12 months, basis |
stating_date | string (%year-%month-%day) | First date considered for the calculation of the trend |
end_date | string (%year-%month-%day) | End date considered for the calculation of the trend |
time_n_months | string | Number of months between the two publications considered |
total_assets | string | Yearly trend of the total assets |
shared_capital | string | Yearly trend of the total shared capital |
net_revenue | string | Yearly trend of the net revenue |
operating_debt | string | Yearly trend of the operating debt |
accounts_payable | string | Yearly trend of the payable accounts |
turnover | string | Yearly trend of the turnover |
total_equity | string | Yearly trend of the total equity |
total_debts | string | Yearly trend of the total debts |
net_cashflow | string | Yearly trend of the net cashflow |
Profit ratio of company
import requests
requests.post(
"https://api.tradeinsur.com/fast/api/v1/search/company/profit-ratio",
json={"national_id": "NATIONAL_ID"},
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X POST
"https://api.tradeinsur.com/fast/api/v1/search/company/profit-ratio" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json" \
-d '{"national_id": "NATIONAL_ID"}'
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "ok",
"body": [
{
"ratio_label": "Overall Gross Profit Margin",
"ratio_calculation": "Overall Margin / (Sales of goods + Production Sold)",
"sector_value": "55.94429024497695",
"company_value": "100.0",
"closing_date": "2020-12-31",
"balance_id": "20476229",
"balance_format": "3841"
},
{
"ratio_label": "Added value ratio",
"ratio_calculation": "Value Added / (Production + Sales of goods)",
"sector_value": "11.880015075387478",
"company_value": "2.083333333333333",
"closing_date": "2020-12-31",
"balance_id": "20476229",
"balance_format": "3841"
},
{
"ratio_label": "Sales Margin",
"ratio_calculation": "Gross margin / Purchases consumed",
"sector_value": "0.9227813448637245",
"company_value": "0.0",
"closing_date": "2020-12-31",
"balance_id": "20476229",
"balance_format": "3841"
},
{
"ratio_label": "Financial Rentability",
"ratio_calculation": "gross profit / equity",
"sector_value": "-2.89140852414952",
"company_value": "10.671525247267049",
"closing_date": "2020-12-31",
"balance_id": "20476229",
"balance_format": "3841"
}
],
"isBase64Encoded": false
}
This endpoint retrieves profit ratio of the company matching the given national ID.
HTTP Request
POST https://api.tradeinsur.com/fast/api/v1/search/company/profit-ratio
JSON post data
Key | Required | Description |
---|---|---|
national_id | string | Identifier of company according to its national/jurisdiction register |
JSON response data
Key | Value type | Description |
---|---|---|
ratio_label | string | Name of the financial ratio |
ratio_calculation | string | Definition of the financial ratio |
sector_value | string | Mean value of the ratio in the company's sector |
company_value | string | Value of the financial ratio for the company |
closing_date | string (%year-%month-%day) | Date on which the ratio has be evalauted |
balance_id | string | Financial statement identification number |
balance_format | string | Financial statement format |
Decision makers of company
import requests
requests.post(
"https://api.tradeinsur.com/fast/api/v1/search/company/decision-makers",
json={"national_id": "NATIONAL_ID"},
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X POST
"https://api.tradeinsur.com/fast/api/v1/search/company/decision-makers" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json" \
-d '{"national_id": "NATIONAL_ID"}'
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "ok",
"body": [
{
"function_code": "0110",
"function": "Président du conseil d'administration",
"start_date": "2015-11-07",
"birthday": "1971-07-10",
"title": "M",
"firstname": "Bertrand",
"lastname": "DUMAZY",
"place_of_birth": "Tourcoing",
"corporate_name": null
},
{
"function_code": "0400",
"function": "Directeur général",
"start_date": "2015-11-07",
"birthday": "1971-07-10",
"title": "M",
"firstname": "Bertrand",
"lastname": "DUMAZY",
"place_of_birth": "Tourcoing",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2010-09-21",
"birthday": "1946-11-29",
"title": "M",
"firstname": "Jean Paul",
"lastname": "BAILLY",
"place_of_birth": "Hénin-Beaumont",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2010-09-21",
"birthday": "1947-01-11",
"title": "MME",
"firstname": "Gabriele",
"lastname": "GALATERI DI GENOLA E SUNIGLIA",
"place_of_birth": "Italie",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2010-09-21",
"birthday": "1957-12-21",
"title": "MME",
"firstname": "Françoise",
"lastname": "GRI",
"place_of_birth": "Agen",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2013-11-16",
"birthday": "1975-08-22",
"title": "M",
"firstname": "Jean-Romain",
"lastname": "LHOMME",
"place_of_birth": "Neuilly-sur-Seine",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2014-06-25",
"birthday": "1978-05-22",
"title": "MME",
"firstname": "Maëlle",
"lastname": "GAVET",
"place_of_birth": "Boulogne-Billancourt",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2015-11-07",
"birthday": "1971-07-10",
"title": "M",
"firstname": "Bertrand",
"lastname": "DUMAZY",
"place_of_birth": "Tourcoing",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2016-05-03",
"birthday": "1961-12-01",
"title": "MME",
"firstname": "Sylvia",
"lastname": "COUTINHO",
"place_of_birth": "Brésil",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2017-06-28",
"birthday": "1959-08-04",
"title": "M",
"firstname": "Dominique",
"lastname": "D'HINNIN",
"place_of_birth": "Canteleu",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2019-05-23",
"birthday": "1961-03-25",
"title": "M",
"firstname": "Jean-Bernard",
"lastname": "HAMEL",
"place_of_birth": "Vendôme",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2020-06-27",
"birthday": "1951-09-10",
"title": "MME",
"firstname": "Graziella Danila",
"lastname": "GAVEZOTTI",
"place_of_birth": "Italie",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2021-06-15",
"birthday": "1970-09-27",
"title": "MME",
"firstname": "Angeles",
"lastname": "GARCIA POVEDA MORERA",
"place_of_birth": "Espagne",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2021-06-15",
"birthday": "1960-09-26",
"title": "MME",
"firstname": "Monica",
"lastname": "MONDARDINI",
"place_of_birth": "Italie",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2021-06-15",
"birthday": "1964-08-28",
"title": "M",
"firstname": "Philippe",
"lastname": "VALLEE",
"place_of_birth": "Marseille",
"corporate_name": null
}
],
"isBase64Encoded": false
}
This endpoint retrieves decision makers of the company matching the given national ID.
HTTP Request
POST https://api.tradeinsur.com/fast/api/v1/search/company/decision-makers
JSON post data
Key | Required | Description |
---|---|---|
national_id | string | Identifier of company according to its national/jurisdiction register |
JSON response data
Key | Value type | Description |
---|---|---|
function_code | string | Function code of the decision maker |
function | string | Function name of the decision maker |
start_date | string | Date at which the decision maker took his position |
birthday | string | Birthday date of the decision maker |
title | string | Title of the decision maker |
firstname | string | First name of the decision maker |
lastname | string | Last name of the decision maker |
place_of_birth | string | Place of birth of the decision maker |
corporate_name | string | Name of the company associated to the decision maker |
Shareholders of company
import requests
requests.post(
"https://api.tradeinsur.com/fast/api/v1/search/company/share-holders",
json={"national_id": "NATIONAL_ID"},
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X POST
"https://api.tradeinsur.com/fast/api/v1/search/company/share-holders" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json" \
-d '{"national_id": "NATIONAL_ID"}'
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "OK",
"body": [
{
"country_code": "US",
"update_date": "2021-10-18",
"country": "États Unis",
"percentage": "10.03",
"company_name": "THE CAPITAL GROUP COMPANIES, INC.",
"national_id": null,
"type": "Minoritaire"
},
{
"country_code": "US",
"update_date": "2021-10-18",
"country": "États Unis",
"percentage": "5.02",
"company_name": "SELECT EQUITY GROUP LP",
"national_id": null,
"type": "Minoritaire"
},
{
"country_code": "US",
"update_date": "2021-10-18",
"country": "États Unis",
"percentage": "4.98",
"company_name": "WELLINGTON MGT GROUP LLP",
"national_id": null,
"type": "Minoritaire"
},
{
"country_code": "US",
"update_date": "2021-10-18",
"country": "États Unis",
"percentage": "4.82",
"company_name": "BLACKROCK INC",
"national_id": null,
"type": "Minoritaire"
},
{
"country_code": null,
"update_date": "2021-10-18",
"country": null,
"percentage": "0.4",
"company_name": "SALARIES",
"national_id": null,
"type": "Minoritaire"
},
{
"country_code": null,
"update_date": "2021-10-18",
"country": null,
"percentage": "0.03",
"company_name": "Monsieur DUMAZY Bertrand",
"national_id": null,
"type": "Minoritaire"
},
{
"country_code": null,
"update_date": "2021-10-18",
"country": null,
"percentage": "0.01",
"company_name": "Madame GALATERI DI GENOLA Gabriele",
"national_id": null,
"type": "Minoritaire"
},
{
"country_code": null,
"update_date": "2021-10-18",
"country": null,
"percentage": "0.01",
"company_name": "Madame GAVEZOTTI Graziella",
"national_id": null,
"type": "Minoritaire"
},
{
"country_code": null,
"update_date": "2021-10-18",
"country": null,
"percentage": "0.01",
"company_name": "Madame GRI Francoise",
"national_id": null,
"type": "Minoritaire"
},
{
"country_code": null,
"update_date": "2021-10-18",
"country": null,
"percentage": "0.01",
"company_name": "Madame GAVET Maëlle",
"national_id": null,
"type": "Minoritaire"
},
{
"country_code": null,
"update_date": "2021-10-18",
"country": null,
"percentage": "0.01",
"company_name": "Monsieur HAMEL Jean-Bernard",
"national_id": null,
"type": "Minoritaire"
},
{
"country_code": null,
"update_date": "2021-10-18",
"country": null,
"percentage": "0.01",
"company_name": "Monsieur LHOMME Jean-Romain",
"national_id": null,
"type": "Minoritaire"
},
{
"country_code": null,
"update_date": "2021-10-18",
"country": null,
"percentage": "0.01",
"company_name": "Monsieur BAILLY Jean-Paul",
"national_id": null,
"type": "Minoritaire"
},
{
"country_code": null,
"update_date": "2021-10-18",
"country": null,
"percentage": "0.01",
"company_name": "Madame COUTINHO Sylvia",
"national_id": null,
"type": "Minoritaire"
},
{
"country_code": null,
"update_date": "2021-10-18",
"country": null,
"percentage": "0.01",
"company_name": "Monsieur BEGOUGNE DE JUNIAC Alexandre",
"national_id": null,
"type": "Minoritaire"
},
{
"country_code": null,
"update_date": "2021-10-18",
"country": null,
"percentage": "0.01",
"company_name": "Madame BOUVEROT Anne",
"national_id": null,
"type": "Minoritaire"
},
{
"country_code": null,
"update_date": "2021-10-18",
"country": null,
"percentage": "0.01",
"company_name": "Monsieur D'HINNIN Dominique",
"national_id": null,
"type": "Minoritaire"
},
{
"country_code": null,
"update_date": "2021-10-18",
"country": null,
"percentage": null,
"company_name": "PUBLIC",
"national_id": null,
"type": "Majoritaire"
}
],
"isBase64Encoded": false
}
This endpoint retrieves shareholders of the company matching the given national ID.
HTTP Request
POST https://api.tradeinsur.com/fast/api/v1/search/company/share-holders
JSON post data
Key | Required | Description |
---|---|---|
national_id | string | Identifier of company according to its national/jurisdiction register |
JSON response data
Key | Value type | Description |
---|---|---|
country_code | string | ISO-2 country code |
update_date | string | Date of update |
country | string | Name of country |
percentage | string | Share percentage |
company_name | string | Person/Company name |
national_id | string | Id of company registered |
type | string | Type of share occupied |
Payment information of company
import requests
requests.post(
"https://api.tradeinsur.com/fast/api/v1/search/company/payment-information",
json={"national_id": "NATIONAL_ID"},
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X POST
"https://api.tradeinsur.com/fast/api/v1/search/company/payment-information" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json" \
-d '{"national_id": "NATIONAL_ID"}'
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "ok",
"body": [
{
"n_days_delay": "19",
"n_providers": "14"
}
],
"isBase64Encoded": false
}
This endpoint retrieves payment information of the company matching the given national ID.
HTTP Request
POST https://api.tradeinsur.com/fast/api/v1/search/company/payment-information
JSON post data
Key | Required | Description |
---|---|---|
national_id | string | Identifier of company according to its national/jurisdiction register |
JSON response data
Key | Value type | Description |
---|---|---|
n_days_delay | string | Estimated numbers of days of late payment |
n_providers | string | Number of the company's providers used for the estimation of n_days_delay |
File report of company
import requests
requests.post(
"https://api.tradeinsur.com/fast/api/v1/search/company/file-report",
json={"national_id": "NATIONAL_ID"},
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X POST
"https://api.tradeinsur.com/fast/api/v1/search/company/file-report" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json" \
-d '{"national_id": "NATIONAL_ID"}'
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "ok",
"body": [
{
"url": "http://intuiz.altares.fr/bilanpdf//resultat_20476229191846acae0884659d3cfc19.pdf",
"balance_sheet_id": "20476229",
"closing_date": "2020-12-31",
"time_n_months": "12",
"balance_sheet_type": "3841",
"source": "BILAN",
"type": "PUBLIC"
}
],
"isBase64Encoded": false
}
This endpoint retrieves report file of the company matching the given national ID.
HTTP Request
POST https://api.tradeinsur.com/fast/api/v1/search/company/file-report
JSON post data
Key | Required | Description |
---|---|---|
national_id | string | Identifier of company according to its national/jurisdiction register |
JSON response data
Key | Value type | Description |
---|---|---|
url | string | or object |
balance_sheet_id | string | Identification number of the balance sheet analysed |
closing_date | string (%year-%month-%day) | Closing date of the balance sheet analysed |
time_n_months | string | Number of months the balance sheet is considering |
balance_sheet_type | string | Type of balance sheet format |
source | string | Source file used |
type | string | Type of file used |
Establishment of company
import requests
requests.post(
"https://api.tradeinsur.com/fast/api/v1/search/company/establishment",
json={"national_id": "NATIONAL_ID"},
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X POST
"https://api.tradeinsur.com/fast/api/v1/search/company/establishment" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json" \
-d '{"national_id": "NATIONAL_ID"}'
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "ok",
"body": [
{
"establishments": [
{
"active": "true",
"zipcode": "92130",
"street_complement": "14 16",
"brand": "Edenred",
"legal_form": "Société européenne",
"legal_form_code": "5800",
"naf_label": "Activités des sièges sociaux",
"naf_code": "7010Z",
"non_diffusable": "false",
"company_name": "EDENRED",
"street": "14 BOULEVARD GARIBALDI",
"headquarters": "true",
"acronym": null,
"establishment_id": "49332297800039",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "ISSY LES MOULINEAUX",
"country": "France",
"national_id": "493322978"
}
]
}
],
"isBase64Encoded": false
}
This endpoint retrieves establishment of the company matching the given national ID.
HTTP Request
POST https://api.tradeinsur.com/fast/api/v1/search/company/establishment
JSON post data
Key | Required | Description |
---|---|---|
national_id | string | Identifier of company according to its national/jurisdiction register |
JSON response data
Key | Value type | Description |
---|---|---|
active | string | State if this establishment is still active |
zipcode | string | Zipcode of the address of the establishment |
street_complement | string | Street Complement of the address of the establishment |
brand | string | Brand of the establishment |
legal_form | string | Legal form of the establishment |
legal_form_code | string | Code associated to the legal form of the establishment |
naf_label | string | Activity of the establishment |
naf_code | string | Activity code of the establishment |
non_diffusable | string | If the information should have remained confidential |
company_name | string | Name of the company |
street | string | Street of the address of the establishment |
headquarters | string | Is the headquarter of the company |
acronym | string | Acronym of the establishment |
national_id | string | National_id of the establishment |
status_eirl_code | string | Status of the EIRL code |
status_eirl_label | string | Status of the EIRL label |
city | string | City of the address of the establishment |
country | string | Country of the address of the establishment |
establishment_id | string | Identification number of the establishment |
Legal information of company
import requests
requests.post(
"https://api.tradeinsur.com/fast/api/v1/search/company/legal-information",
json={"national_id": "NATIONAL_ID"},
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X POST
"https://api.tradeinsur.com/fast/api/v1/search/company/legal-information" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json" \
-d '{"national_id": "NATIONAL_ID"}'
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "ok",
"body": [
{
"legal_information": [
{
"publication_date": "21/02/2010",
"publication_number": "20100036",
"announce_number": "1760",
"creation_date": "19/08/2021",
"court": "GREFFE DU TRIBUNAL DE COMMERCE DE NANTERRE",
"registration_category": "Immatriculation d'une personne morale suite à transfert de son siège social",
"decription": "Immatriculation d'une personne morale suite au transfert du siège hors ressort. Modification de représentant.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/A/20100036/1760",
"info_type": "BODACC RCS A"
},
{
"publication_date": "31/05/2021",
"publication_number": "20210105",
"announce_number": "2330",
"decription": "Modification survenue sur la forme juridique.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20210105/2330",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2021%5C20210105%5C1%5CBODACC_B_PDF_Unitaire_20210105_02330.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "22/06/2021",
"publication_number": "20210120",
"announce_number": "2299",
"decription": "Modification survenue sur le capital.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20210120/2299",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2021%5C20210120%5C1%5CBODACC_B_PDF_Unitaire_20210120_02299.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "16/06/2021",
"publication_number": "20210116",
"announce_number": "2374",
"decription": "Modification survenue sur l'administration.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20210116/2374",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2021%5C20210116%5C1%5CBODACC_B_PDF_Unitaire_20210116_02374.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "23/05/2019",
"publication_number": "20190099",
"announce_number": "3078",
"decription": "Modification de représentant.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20190099/3078",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2019%5C20190099%5C1%5CBODACC_B_PDF_Unitaire_20190099_03078.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "23/05/2019",
"publication_number": "20190099",
"announce_number": "3079",
"decription": "Modification du capital.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20190099/3079",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2019%5C20190099%5C1%5CBODACC_B_PDF_Unitaire_20190099_03079.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "12/03/2020",
"publication_number": "20200051",
"announce_number": "4513",
"decription": "Modification survenue sur l'administration, le capital.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20200051/4513",
"info_type": "BODACC RCS B"
},
{
"publication_date": "05/07/2020",
"publication_number": "20200129",
"announce_number": "2304",
"decription": "Modification survenue sur le capital.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20200129/2304",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2020%5C20200129%5C1%5CBODACC_B_PDF_Unitaire_20200129_02304.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "04/06/2019",
"publication_number": "20190106",
"announce_number": "4158",
"decription": "Modification du capital.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20190106/4158",
"info_type": "BODACC RCS B"
},
{
"publication_date": "25/01/2019",
"publication_number": "20190018",
"announce_number": "3033",
"decription": "Modification du capital.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20190018/3033",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2019%5C20190018%5C1%5CBODACC_B_PDF_Unitaire_20190018_03033.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "17/12/2019",
"publication_number": "20190242",
"announce_number": "3279",
"activity_start_date": "14/12/2006",
"decription": "transfert du siège social.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20190242/3279",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2019%5C20190242%5C1%5CBODACC_B_PDF_Unitaire_20190242_03279.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "19/06/2019",
"publication_number": "20190116",
"announce_number": "505",
"decription": "Modification du capital.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20190116/505",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2019%5C20190116%5C0%5CBODACC_B_PDF_Unitaire_20190116_00505.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "24/04/2019",
"publication_number": "20190080",
"announce_number": "3316",
"decription": "Modification du capital.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20190080/3316",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2019%5C20190080%5C1%5CBODACC_B_PDF_Unitaire_20190080_03316.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "07/04/2020",
"publication_number": "20200069",
"announce_number": "1440",
"decription": "Modification survenue sur le capital.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20200069/1440",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2020%5C20200069%5C0%5CBODACC_B_PDF_Unitaire_20200069_01440.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "30/06/2020",
"publication_number": "20200125",
"announce_number": "2581",
"decription": "Modification survenue sur l'administration.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20200125/2581",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2020%5C20200125%5C1%5CBODACC_B_PDF_Unitaire_20200125_02581.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "31/03/2020",
"publication_number": "20200064",
"announce_number": "1411",
"decription": "Modification survenue sur le capital.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20200064/1411",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2020%5C20200064%5C0%5CBODACC_B_PDF_Unitaire_20200064_01411.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "07/06/2020",
"publication_number": "20200109",
"announce_number": "2339",
"decription": "Modification survenue sur l'administration.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20200109/2339",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2020%5C20200109%5C1%5CBODACC_B_PDF_Unitaire_20200109_02339.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "03/07/2018",
"publication_number": "20180125",
"announce_number": "2432",
"decription": "Modification du capital.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20180125/2432",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2018%5C20180125%5C1%5CBODACC_B_PDF_Unitaire_20180125_02432.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "19/01/2018",
"publication_number": "20180013",
"announce_number": "2295",
"decription": "Modification du capital.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20180013/2295",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2018%5C20180013%5C1%5CBODACC_B_PDF_Unitaire_20180013_02295.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "11/07/2018",
"publication_number": "20180130",
"announce_number": "4104",
"decription": "Modification de représentant.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20180130/4104",
"info_type": "BODACC RCS B"
},
{
"publication_date": "10/04/2018",
"publication_number": "20180069",
"announce_number": "1503",
"decription": "Modification du capital.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20180069/1503",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2018%5C20180069%5C0%5CBODACC_B_PDF_Unitaire_20180069_01503.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "11/06/2017",
"publication_number": "20170110",
"announce_number": "1891",
"decription": "Modification de représentant..",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20170110/1891",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2017%5C20170110%5C0%5CBODACC_B_PDF_Unitaire_20170110_01891.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "25/06/2017",
"publication_number": "20170120",
"announce_number": "1345",
"decription": "Modification du capital..",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20170120/1345",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2017%5C20170120%5C0%5CBODACC_B_PDF_Unitaire_20170120_01345.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "16/03/2017",
"publication_number": "20170053",
"announce_number": "2385",
"decription": "Modification du capital..",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20170053/2385",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2017%5C20170053%5C1%5CBODACC_B_PDF_Unitaire_20170053_02385.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "29/06/2017",
"publication_number": "20170123",
"announce_number": "1784",
"decription": "Modification de représentant..",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20170123/1784",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2017%5C20170123%5C0%5CBODACC_B_PDF_Unitaire_20170123_01784.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "29/06/2016",
"publication_number": "20160127",
"announce_number": "1451",
"decription": "Modification du capital..",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20160127/1451",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC-B_20160127_0001_p000.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "28/06/2016",
"publication_number": "20160126",
"announce_number": "1350",
"decription": "Modification de représentant..",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20160126/1350",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC-B_20160126_0001_p000.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "04/05/2016",
"publication_number": "20160089",
"announce_number": "957",
"decription": "Modification de représentant..",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20160089/957",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC-B_20160089_0001_p000.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "04/05/2016",
"publication_number": "20160089",
"announce_number": "958",
"decription": "Modification du capital..",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20160089/958",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC-B_20160089_0001_p000.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "18/03/2016",
"publication_number": "20160055",
"announce_number": "1593",
"decription": "Modification du capital..",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20160055/1593",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC-B_20160055_0001_p000.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "01/10/2015",
"publication_number": "20150188",
"announce_number": "3233",
"decription": "Modification du capital.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20150188/3233",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC-B_20150188_0001_p000.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "23/06/2015",
"publication_number": "20150118",
"announce_number": "1538",
"decription": "Modification du capital.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20150118/1538",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC-B_20150118_0001_p000.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "13/11/2015",
"publication_number": "20150219",
"announce_number": "1376",
"decription": "Modification de représentant..",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20150219/1376",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC-B_20150219_0001_p000.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "03/03/2015",
"publication_number": "20150043",
"announce_number": "1824",
"decription": "Modification du capital.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20150043/1824",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC-B_20150043_0001_p000.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "30/08/2015",
"publication_number": "20150165",
"announce_number": "1864",
"decription": "Modification de représentant.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20150165/1864",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC-B_20150165_0001_p000.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "30/06/2014",
"publication_number": "20140124",
"announce_number": "1918",
"decription": "Modification de représentant.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20140124/1918",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC-B_20140124_0001_p000.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "31/07/2014",
"publication_number": "20140145",
"announce_number": "1818",
"decription": "Modification du capital.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20140145/1818",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC-B_20140145_0001_p000.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "04/08/2013",
"publication_number": "20130149",
"announce_number": "1825",
"decription": "Modification de représentant.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20130149/1825",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC-B_20130149_0001_p000.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "22/11/2013",
"publication_number": "20130225",
"announce_number": "1816",
"decription": "Modification de représentant.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20130225/1816",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC-B_20130225_0001_p000.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "03/08/2010",
"publication_number": "20100148",
"announce_number": "1713",
"activity_start_date": "14/12/2006",
"decription": "Modification du nom, nom d'usage, prénom ou de la dénomination. Modification du capital. Modification de l'activité. Modification de représentant. ",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20100148/1713",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC-B_20100148_0001_p000.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "23/06/2010",
"publication_number": "20100120",
"announce_number": "1998",
"decription": "Modification du nom commercial.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20100120/1998",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC-B_20100120_0001_p000.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "25/04/2010",
"publication_number": "20100080",
"announce_number": "1392",
"decription": "Modification de représentant.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20100080/1392",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC-B_20100080_0001_p000.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "30/04/2010",
"publication_number": "20100084",
"announce_number": "3908",
"decription": "Modification du nom, nom d'usage, prénom ou de la dénomination. Modification de la forme juridique. Modification du capital. Modification de représentant.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20100084/3908",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC-B_20100084_0001_p000.pdf",
"info_type": "BODACC RCS B"
},
{
"publication_date": "02/01/2022",
"publication_number": "20220001",
"announce_number": "3450",
"decription": "Modification survenue sur l'administration.",
"link_annoucement": "https://www.bodacc.fr/annonce/detail-annonce/B/20220001/3450",
"link_annoucement_download": "https://www.bodacc.fr/annonce/telecharger/BODACC_B%5C2022%5C20220001%5C1%5CBODACC_B_PDF_Unitaire_20220001_03450.pdf",
"info_type": "BODACC RCS B"
}
]
}
],
"isBase64Encoded": false
}
This endpoint retrieves legal information of the company matching the given national ID.
HTTP Request
POST https://api.tradeinsur.com/fast/api/v1/search/company/legal-information
JSON post data
Key | Required | Description |
---|---|---|
national_id | string | Identifier of company according to its national/jurisdiction register |
JSON response data
Key | Value type | Description |
---|---|---|
publication_date | string | Date of publication of the annoucement |
publication_number | string | Publication number of the annoucement |
announce_number | string | Annouce number of the annoucement |
decription | string | General description of the annoucement |
link_annoucement | string | Link of the annoucement |
link_annoucement_download | string | Link to download the annoucement |
info_type | string | Type of information and/or source |
Financial Detail
Get All Financial Detail
import requests
requests.post(
"https://api.tradeinsur.com/fast/api/v1/search/company/details/allfinancial",
json={"national_id": "NATIONAL_ID"},
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X POST
"https://api.tradeinsur.com/fast/api/v1/search/company/details/allfinancial" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json" \
-d '{"national_id": "NATIONAL_ID"}'
Replace NATIONAL_ID with the national identification number of the company you are interested in.
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "Ok",
"body": {
"general": {
"national_id": "493322978",
"is_active": true,
"company_name": "EDENRED",
"naf_code": "7010Z",
"legal_form": "Société européenne",
"street_address": "14 BOULEVARD GARIBALDI",
"city_address": "ISSY LES MOULINEAUX",
"zipcode": "92130",
"country": "France",
"has_published": true
},
"score": {
"last_update": "2022-03-19",
"recommended_outstanding": "1500000.0",
"risk_level": "Very low risk",
"risk_level_code": "1",
"default_probability": "0.00095",
"score_company_percent": "82",
"score_company_twenty": "16",
"score_sector_percent": "79",
"score_sector_twenty": "15"
},
"finances": [
{
"closing_date": "2020-12-31",
"time_n_months": "12",
"currency": "EUR",
"total_assets": "3.07E8",
"shared_capital": "4.93E8",
"net_revenue": "2.05E8",
"operating_debt": "0.0",
"accounts_payable": "2.6E7",
"turnover": "8.7E7",
"total_equity": "1.92E9",
"total_debts": "5.375E9",
"net_cashflow": "-1450000000.0",
"raw": {
"schema": "Formulaire 2050-LIASSE : LIASSE BIC/IS - REGIME RN (Tableaux n° 2050-SD à 2059-G-SD)",
"values": {
"02": "0.0",
"03": "0.0",
"3Z": "1000000.0",
"5P": "0.0",
"6N": "0.0",
"04": "0.0",
"0G": "6.294E9",
"05": "0.0",
"0H": "0.0",
"0P": "6000000.0",
"06": "0.0",
"1K": "0.0",
"07": "0.0",
"6B": "2000000.0",
"6H": "0.0",
"08": "0.0",
"0R": "4.3E7",
"5A": "1.1E7",
"09": "0.0",
"0J": "1.1E8",
"1A": "3.07E8",
"1E": "0.0",
"6A": "9000000.0",
"0K": "1.78E8",
"0L": "6.227E9",
"0N": "3.7E7",
"4W": "0.0",
"5Z": "4.7E7",
"0Q": "0.0",
"5S": "0.0",
"1B": "0.0",
"1C": "0.0",
"1J": "0.0",
"4D": "0.0",
"1D": "0.0",
"6C": "0.0",
"1G": "0.0",
"1H": "0.0",
"2E": "1.2E7",
"5R": "0.0",
"4H": "0.0",
"6F": "0.0",
"4M": "0.0",
"6E": "0.0",
"4S": "0.0",
"6D": "1.1E7",
"5E": "0.0",
"5U": "0.0",
"5K": "0.0",
"5Y": "0.0",
"5T": "0.0",
"6G": "0.0",
"6P": "0.0",
"6R": "0.0",
"6S": "0.0",
"6U": "7000000.0",
"6Y": "6000000.0",
"6Z": "0.0",
"7A": "8000000.0",
"7B": "1.89E8",
"7C": "2.37E8",
"7Y": "0.0",
"7Y3": "0.0",
"7Z": "2.974E9",
"7Z2": "1.17E8",
"8A": "2.312E9",
"8B": "2.6E7",
"8B3": "0.0",
"8C": "0.0",
"8D": "0.0",
"8D3": "0.0",
"6T": "0.0",
"6W": "7000000.0",
"6X": "2000000.0",
"8C3": "0.0",
"6V": "0.0",
"8A2": "2.312E9",
"8B2": "2.6E7",
"7Y2": "0.0",
"7Z3": "1.257E9",
"8C2": "0.0",
"8A3": "0.0",
"8D2": "0.0",
"8E2": "0.0",
"8J": "1000000.0",
"8J2": "1000000.0",
"8J3": "0.0",
"8K": "9000000.0",
"8K2": "9000000.0",
"8K3": "0.0",
"8L": "3.2E7",
"8L2": "9000000.0",
"8L3": "2.2E7",
"9X": "2.4E8",
"9Z": "0.0",
"A1": "0.0",
"A2": "0.0",
"A3": "0.0",
"A4": "0.0",
"AA": "0.0",
"AB": "0.0",
"AC": "0.0",
"AE": "0.0",
"AF": "2.0E7",
"AG": "1.9E7",
"AH": "0.0",
"AI": "0.0",
"AJ": "4.8E7",
"AK": "3.0E7",
"AL": "0.0",
"AM": "0.0",
"AN": "0.0",
"AO": "0.0",
"AP": "0.0",
"AQ": "0.0",
"AS": "0.0",
"AT": "9000000.0",
"AU": "5000000.0",
"AV": "0.0",
"AW": "0.0",
"AX": "0.0",
"AY": "0.0",
"B1": "0.0",
"BB": "1.289E9",
"BC": "0.0",
"BD": "2.7E7",
"BE": "0.0",
"8E": "0.0",
"8E3": "0.0",
"AD": "0.0",
"AR": "0.0",
"8J4": "0.0",
"BF": "0.0",
"BG": "0.0",
"BH": "3.5E7",
"BI": "0.0",
"BJ": "6.227E9",
"BK": "2.93E8",
"BL": "0.0",
"BM": "0.0",
"BN": "0.0",
"BO": "0.0",
"BP": "0.0",
"BQ": "0.0",
"BR": "0.0",
"BS": "0.0",
"BT": "0.0",
"BU": "0.0",
"BV": "0.0",
"BW": "0.0",
"BX": "3.1E7",
"BY": "7000000.0",
"CA": "8000000.0",
"CB": "0.0",
"CC": "0.0",
"CD": "7.06E8",
"CE": "0.0",
"CF": "1.56E8",
"CG": "0.0",
"CH": "7000000.0",
"CI": "0.0",
"CJ": "1.377E9",
"CK": "1.5E7",
"CL": "2.3E7",
"CM": "7000000.0",
"CN": "9000000.0",
"CO": "7.642E9",
"CP": "0.0",
"CR": "0.0",
"CS": "0.0",
"CT": "0.0",
"CU": "4.8E9",
"CV": "2.4E8",
"CY": "0.0",
"CZ": "0.0",
"D0": "0.0",
"D8": "0.0",
"DA": "4.93E8",
"DC": "0.0",
"DD": "4.9E7",
"DE": "0.0",
"DF": "0.0",
"DG": "0.0",
"DH": "2.25E8",
"DI": "2.05E8",
"DJ": "0.0",
"DK": "0.0",
"DL": "1.92E9",
"DM": "0.0",
"DN": "0.0",
"DO": "0.0",
"DP": "2000000.0",
"DQ": "3.0E7",
"DR": "3.2E7",
"DS": "0.0",
"DT": "2.974E9",
"DU": "1000000.0",
"DV": "2.312E9",
"DW": "0.0",
"DX": "2.6E7",
"DY": "2.0E7",
"DZ": "1000000.0",
"EA": "9000000.0",
"EB": "3.2E7",
"EC": "5.375E9",
"ED": "9000000.0",
"EE": "7.336E9",
"EF": "0.0",
"EG": "0.0",
"EH": "0.0",
"EI": "0.0",
"EJ": "0.0",
"EK": "0.0",
"EL": "0.0",
"EM": "0.0",
"FA": "0.0",
"FB": "0.0",
"FC": "0.0",
"FD": "0.0",
"FE": "0.0",
"FF": "0.0",
"FG": "1.8E7",
"FH": "6.9E7",
"FI": "8.7E7",
"FJ": "1.8E7",
"FK": "6.9E7",
"FL": "8.7E7",
"FM": "0.0",
"FN": "9000000.0",
"FO": "0.0",
"FP": "2.1E7",
"FQ": "4.4E7",
"FR": "1.61E8",
"FS": "0.0",
"FT": "0.0",
"FU": "0.0",
"FV": "0.0",
"FW": "9.4E7",
"FX": "4000000.0",
"FY": "3.1E7",
"FZ": "2.8E7",
"GA": "6000000.0",
"GB": "0.0",
"GC": "7000000.0",
"GD": "1.9E7",
"GE": "1000000.0",
"GF": "1.9E8",
"GG": "-2.9E7",
"GH": "0.0",
"GI": "0.0",
"GJ": "3.13E8",
"GK": "0.0",
"GL": "1.4E7",
"GM": "2000000.0",
"GN": "1.1E7",
"GO": "0.0",
"GP": "3.4E8",
"GQ": "7.0E7",
"GR": "3.8E7",
"GS": "8000000.0",
"GT": "0.0",
"GU": "1.16E8",
"GV": "2.24E8",
"GW": "1.95E8",
"HA": "1000000.0",
"HB": "4000000.0",
"HC": "2.1E7",
"HD": "2.6E7",
"HE": "1000000.0",
"HF": "1.6E7",
"HG": "2000000.0",
"HH": "2.0E7",
"HI": "6000000.0",
"HJ": "0.0",
"HK": "-4000000.0",
"HL": "5.27E8",
"HM": "3.23E8",
"HN": "2.04E8",
"HO": "0.0",
"HP": "0.0",
"HQ": "0.0",
"HX": "0.0",
"HY": "0.0",
"I4": "0.0",
"IN": "0.0",
"KC": "0.0",
"KD": "5.8E7",
"KE": "0.0",
"KF": "1.2E7",
"LN": "8000000.0",
"LO": "0.0",
"LP": "4000000.0",
"LQ": "6.228E9",
"LR": "0.0",
"LS": "9.4E7",
"LT": "0.0",
"LV": "2000000.0",
"LV1": "0.0",
"LW": "6.8E7",
"NC": "0.0",
"NG": "4000000.0",
"NG1": "0.0",
"NH": "8000000.0",
"NJ": "1.72E8",
"NJ1": "0.0",
"NK": "6.15E9",
"PD": "0.0",
"PE": "3.3E7",
"PF": "5000000.0",
"PG": "0.0",
"PH": "3.8E7",
"PZ": "0.0",
"QA": "0.0",
"QB": "0.0",
"QC": "0.0",
"QH": "0.0",
"QI": "0.0",
"QJ": "0.0",
"QK": "0.0",
"QL": "0.0",
"QN": "0.0",
"QO": "0.0",
"QU": "4000000.0",
"QW": "0.0",
"QX": "5000000.0",
"SB": "0.0",
"SC": "0.0",
"SD": "0.0",
"SE": "0.0",
"SF": "0.0",
"SM": "5000000.0",
"SP": "2000000.0",
"SP0": "9000000.0",
"BZ": "4.78E8",
"DB": "9.49E8",
"QV": "1000000.0",
"MY": "0.0",
"QM": "0.0",
"SP1": "0.0",
"SR": "7000000.0",
"SS": "0.0",
"ST": "0.0",
"SZ": "0.0",
"SZ2": "0.0",
"SZ3": "0.0",
"TO": "0.0",
"TS": "0.0",
"TT": "1000000.0",
"TU": "0.0",
"TV": "2.2E7",
"TW": "3.7E7",
"TX": "3.2E7",
"TY": "7.6E7",
"TZ": "0.0",
"UA": "2.65E8",
"UB": "9.8E7",
"UC": "3.8E7",
"UD": "2.96E8",
"UE": "2.7E7",
"UF": "2.8E7",
"UG": "7.0E7",
"UH": "2000000.0",
"UJ": "2000000.0",
"UK": "8000000.0",
"UL": "1.289E9",
"UM": "3.5E7",
"UP": "0.0",
"UR": "0.0",
"UT": "3.5E7",
"UU": "0.0",
"UU2": "0.0",
"UV": "3.5E7",
"UX": "3.1E7",
"UX2": "3.1E7",
"UY": "0.0",
"UY2": "0.0",
"UZ": "0.0",
"UZ2": "0.0",
"VA": "0.0",
"VA2": "0.0",
"VB": "0.0",
"VB2": "0.0",
"VC": "4.62E8",
"VC2": "4.62E8",
"VG": "0.0",
"VG2": "0.0",
"VG3": "0.0",
"VH": "1000000.0",
"VH2": "1000000.0",
"VH3": "0.0",
"VI": "0.0",
"VI2": "0.0",
"VI3": "0.0",
"VI4": "0.0",
"VJ": "0.0",
"VK": "0.0",
"VL": "0.0",
"VM": "0.0",
"VM2": "0.0",
"VN": "0.0",
"VN2": "0.0",
"VP": "1.3E7",
"VP2": "1.3E7",
"VQ": "2.0E7",
"VQ2": "2000000.0",
"VQ3": "1.8E7",
"VR": "2000000.0",
"VR2": "1000000.0",
"VS": "7000000.0",
"VS2": "7000000.0",
"VT": "1.84E9",
"VU": "5.85E8",
"VV": "1.255E9",
"VW": "0.0",
"VW2": "0.0",
"VW3": "0.0",
"VX": "0.0",
"VX2": "0.0",
"VX3": "0.0",
"VY": "5.375E9",
"VY3": "1.297E9",
"VY4": "1.601E9",
"VZ": "2.477E9",
"XQ": "0.0",
"YP": "243.0",
"YQ": "0.0",
"YR": "0.0",
"YS": "0.0",
"YT": "0.0",
"YU": "0.0",
"YV": "0.0",
"YW": "0.0",
"YX": "0.0",
"YY": "0.0",
"YZ": "0.0",
"Z10": "4000000.0",
"Z11": "2.5E7",
"Z8": "2.3E7",
"ZE": "0.0",
"ZJ": "0.0",
"ZR": "0.0"
}
}
},
{
"closing_date": "2019-12-31",
"time_n_months": "12",
"currency": "EUR",
"total_assets": "2.25E8",
"shared_capital": "4.86E8",
"net_revenue": "2.97E8",
"operating_debt": "0.0",
"accounts_payable": "1.7E7",
"turnover": "8.0E7",
"total_equity": "1.811E9",
"total_debts": "5.273E9",
"net_cashflow": "-2016000000.0",
"raw": {
"schema": "Formulaire 2050-LIASSE : LIASSE BIC/IS - REGIME RN (Tableaux n° 2050-SD à 2059-G-SD)",
"values": {
"02": "0.0",
"03": "0.0",
"06": "1.68E8",
"0J": "1.421E9",
"0K": "1.36E8",
"0R": "3.7E7",
"1C": "0.0",
"04": "0.0",
"07": "1.1E7",
"0N": "3.2E7",
"05": "0.0",
"0G": "5.009E9",
"08": "1000000.0",
"0H": "0.0",
"09": "1.78E8",
"1A": "2.25E8",
"0L": "6.294E9",
"1B": "0.0",
"0P": "5000000.0",
"0Q": "0.0",
"1D": "0.0",
"1E": "0.0",
"1G": "0.0",
"1H": "0.0",
"1J": "0.0",
"1K": "0.0",
"2E": "2.9E7",
"3Z": "2000000.0",
"4D": "0.0",
"4H": "0.0",
"4M": "0.0",
"4S": "0.0",
"4W": "0.0",
"5A": "1.5E7",
"5E": "0.0",
"5K": "0.0",
"5P": "0.0",
"5R": "0.0",
"5S": "0.0",
"5T": "0.0",
"5U": "0.0",
"5Y": "0.0",
"5Z": "4.1E7",
"6A": "9000000.0",
"6B": "0.0",
"6C": "0.0",
"6D": "9000000.0",
"6E": "0.0",
"6F": "0.0",
"6G": "0.0",
"6H": "0.0",
"6N": "0.0",
"6P": "0.0",
"6R": "0.0",
"6S": "0.0",
"6T": "0.0",
"6U": "0.0",
"6V": "0.0",
"6W": "0.0",
"6X": "1000000.0",
"7A": "1000000.0",
"7B": "1.78E8",
"7C": "2.21E8",
"7Y": "0.0",
"7Y2": "0.0",
"7Y3": "0.0",
"7Z": "2.623E9",
"7Z2": "3000000.0",
"7Z3": "6.2E8",
"8A": "2.525E9",
"8A2": "2.525E9",
"8A3": "0.0",
"8B": "1.7E7",
"8B3": "0.0",
"8C": "0.0",
"6Y": "1000000.0",
"6Z": "1000000.0",
"8B2": "1.7E7",
"8C2": "0.0",
"8C3": "0.0",
"8D": "0.0",
"8D2": "0.0",
"8D3": "0.0",
"8E": "0.0",
"8E2": "0.0",
"8E3": "0.0",
"8J": "3000000.0",
"8J2": "3000000.0",
"8J3": "0.0",
"8J4": "0.0",
"8K": "1000000.0",
"8K2": "1000000.0",
"8K3": "0.0",
"8L": "4.0E7",
"8L2": "8000000.0",
"8L3": "3.1E7",
"9X": "0.0",
"9Z": "0.0",
"A1": "0.0",
"A2": "0.0",
"A3": "0.0",
"A4": "0.0",
"AA": "0.0",
"AB": "0.0",
"AC": "0.0",
"AD": "0.0",
"AE": "0.0",
"AF": "2.0E7",
"AG": "1.8E7",
"AH": "0.0",
"AI": "0.0",
"AJ": "3.8E7",
"AK": "2.3E7",
"AL": "0.0",
"AM": "0.0",
"AN": "0.0",
"AO": "0.0",
"AP": "0.0",
"AQ": "0.0",
"AR": "0.0",
"AS": "0.0",
"AT": "4000000.0",
"AU": "4000000.0",
"AV": "2000000.0",
"AW": "0.0",
"AX": "2000000.0",
"AY": "0.0",
"B1": "0.0",
"BB": "1.366E9",
"BC": "2000000.0",
"BD": "2.5E7",
"BE": "0.0",
"BF": "0.0",
"BG": "0.0",
"BH": "4.7E7",
"BI": "4000000.0",
"BJ": "6.293E9",
"BK": "2.24E8",
"BL": "0.0",
"BM": "0.0",
"BN": "0.0",
"BO": "0.0",
"BP": "0.0",
"BQ": "0.0",
"BR": "0.0",
"BS": "0.0",
"BT": "0.0",
"BU": "0.0",
"BV": "0.0",
"BW": "0.0",
"BX": "3.9E7",
"BY": "2000000.0",
"BZ": "4.8E8",
"CA": "0.0",
"CB": "0.0",
"CC": "0.0",
"CD": "3.71E8",
"CE": "0.0",
"CF": "1.38E8",
"CG": "0.0",
"CH": "3000000.0",
"CI": "0.0",
"CJ": "1.031E9",
"CK": "2000000.0",
"CL": "2.1E7",
"CM": "9000000.0",
"CN": "5000000.0",
"CO": "7.359E9",
"CP": "0.0",
"CR": "0.0",
"CS": "0.0",
"CT": "0.0",
"CU": "4.79E9",
"CV": "1.73E8",
"CY": "0.0",
"CZ": "0.0",
"D0": "0.0",
"D8": "0.0",
"DA": "4.86E8",
"DB": "8.8E8",
"DC": "0.0",
"DD": "4.8E7",
"DE": "0.0",
"DF": "0.0",
"DG": "0.0",
"DH": "9.9E7",
"DI": "2.97E8",
"DJ": "0.0",
"DK": "1000000.0",
"DL": "1.811E9",
"DM": "0.0",
"DN": "0.0",
"DO": "0.0",
"DP": "9000000.0",
"DQ": "3.7E7",
"DR": "4.6E7",
"DS": "0.0",
"DT": "2.623E9",
"DU": "4.6E7",
"DV": "2.525E9",
"DW": "0.0",
"DX": "1.7E7",
"DY": "1.8E7",
"DZ": "3000000.0",
"EA": "1000000.0",
"EB": "4.0E7",
"EC": "5.273E9",
"ED": "5000000.0",
"EE": "7.135E9",
"EF": "0.0",
"EG": "0.0",
"EH": "0.0",
"EI": "0.0",
"EJ": "0.0",
"EK": "0.0",
"EL": "0.0",
"EM": "0.0",
"FA": "0.0",
"FB": "0.0",
"FC": "0.0",
"FD": "0.0",
"FE": "0.0",
"FF": "0.0",
"FG": "1.8E7",
"FH": "6.2E7",
"FI": "8.0E7",
"FJ": "1.8E7",
"FK": "6.2E7",
"FL": "8.0E7",
"FM": "0.0",
"FN": "6000000.0",
"FO": "0.0",
"FP": "3.4E7",
"FQ": "4.5E7",
"FR": "1.65E8",
"FS": "0.0",
"FT": "0.0",
"FU": "0.0",
"FV": "0.0",
"FW": "8.6E7",
"FX": "4000000.0",
"FY": "2.6E7",
"FZ": "3.2E7",
"GA": "5000000.0",
"GB": "0.0",
"GC": "5000000.0",
"GD": "2.8E7",
"GE": "1000000.0",
"GF": "1.87E8",
"GG": "-2.2E7",
"GH": "0.0",
"GI": "0.0",
"GJ": "3.38E8",
"GK": "0.0",
"GL": "8000000.0",
"GM": "4000000.0",
"GN": "1.2E7",
"GO": "0.0",
"GP": "3.62E8",
"GQ": "1.5E7",
"GR": "3.7E7",
"GS": "1.2E7",
"GT": "0.0",
"GU": "6.4E7",
"GV": "2.98E8",
"GW": "2.76E8",
"HA": "0.0",
"HB": "9000000.0",
"HC": "8000000.0",
"HD": "1.7E7",
"HE": "0.0",
"HF": "1.4E7",
"HG": "0.0",
"HH": "1.4E7",
"HJ": "0.0",
"HK": "-1.8E7",
"HL": "5.44E8",
"HM": "2.47E8",
"HP": "0.0",
"HQ": "0.0",
"HX": "0.0",
"HY": "0.0",
"I4": "0.0",
"HI": "3000000.0",
"HN": "2.97E8",
"HO": "0.0",
"IN": "0.0",
"KC": "0.0",
"KD": "5.2E7",
"KE": "0.0",
"KF": "6000000.0",
"LN": "5000000.0",
"LO": "0.0",
"LP": "5000000.0",
"LQ": "4.952E9",
"LR": "0.0",
"LS": "1.41E9",
"LT": "0.0",
"LV": "0.0",
"LV1": "0.0",
"LW": "5.8E7",
"MY": "0.0",
"NC": "0.0",
"NG": "2000000.0",
"NG1": "0.0",
"NH": "8000000.0",
"NJ": "1.34E8",
"NJ1": "0.0",
"NK": "6.228E9",
"PD": "0.0",
"PE": "2.8E7",
"PF": "5000000.0",
"PG": "0.0",
"PH": "3.3E7",
"PZ": "0.0",
"QA": "0.0",
"QB": "0.0",
"QC": "0.0",
"QH": "0.0",
"QI": "0.0",
"QJ": "0.0",
"QK": "0.0",
"QL": "0.0",
"QM": "0.0",
"QN": "0.0",
"QO": "0.0",
"QU": "4000000.0",
"QV": "1000000.0",
"QW": "0.0",
"QX": "5000000.0",
"SB": "0.0",
"SC": "0.0",
"SD": "0.0",
"SE": "0.0",
"SF": "0.0",
"SM": "0.0",
"SP": "0.0",
"SP0": "0.0",
"SP1": "0.0",
"SR": "0.0",
"SS": "0.0",
"ST": "0.0",
"SZ": "0.0",
"SZ2": "0.0",
"SZ3": "0.0",
"TO": "1000000.0",
"TS": "0.0",
"TT": "1000000.0",
"TU": "1000000.0",
"TV": "2.9E7",
"TW": "2.4E7",
"TX": "4.6E7",
"TY": "1.2E7",
"TZ": "1000000.0",
"UA": "1.89E8",
"UB": "4.1E7",
"UC": "2.6E7",
"UD": "2.37E8",
"UE": "2.8E7",
"UG": "1.3E7",
"UH": "4000000.0",
"UJ": "0.0",
"UK": "1000000.0",
"UL": "1.366E9",
"UM": "6.3E7",
"UP": "0.0",
"UR": "0.0",
"UT": "4.7E7",
"UU": "0.0",
"UU2": "0.0",
"UV": "4.7E7",
"UX2": "3.6E7",
"UY": "0.0",
"UY2": "0.0",
"UZ": "0.0",
"UZ2": "0.0",
"VA": "0.0",
"VA2": "0.0",
"VB2": "0.0",
"VC": "0.0",
"VC2": "0.0",
"VG": "0.0",
"VG2": "0.0",
"VG3": "0.0",
"VH": "4.6E7",
"VH2": "4.6E7",
"VH3": "0.0",
"VI": "0.0",
"VI2": "0.0",
"UF": "2.1E7",
"UX": "3.6E7",
"VB": "0.0",
"VI3": "0.0",
"VI4": "0.0",
"VJ": "0.0",
"VK": "0.0",
"VL": "0.0",
"VM": "0.0",
"VM2": "0.0",
"VN": "0.0",
"VN2": "0.0",
"VP": "0.0",
"VP2": "0.0",
"VQ": "1.8E7",
"VQ2": "1.6E7",
"VQ3": "2000000.0",
"VR": "4.81E8",
"VR2": "4.79E8",
"VS": "3000000.0",
"VS2": "3000000.0",
"VT": "1.933E9",
"VU": "6.28E8",
"VV": "1.305E9",
"VW": "0.0",
"VW2": "0.0",
"VW3": "0.0",
"VX": "0.0",
"VX2": "0.0",
"VX3": "0.0",
"VY": "5.273E9",
"VY3": "6.53E8",
"VY4": "2.001E9",
"VZ": "2.619E9",
"XQ": "0.0",
"YP": "222.0",
"YQ": "0.0",
"YR": "0.0",
"YS": "0.0",
"YT": "0.0",
"YU": "0.0",
"YV": "0.0",
"YW": "0.0",
"YX": "4000000.0",
"YY": "0.0",
"YZ": "0.0",
"Z10": "0.0",
"Z11": "0.0",
"Z8": "0.0",
"ZE": "0.0",
"ZJ": "8.6E7",
"ZR": "0.0"
}
}
},
{
"closing_date": "2018-12-31",
"time_n_months": "12",
"currency": "EUR",
"total_assets": "2.1E8",
"shared_capital": "4.78E8",
"net_revenue": "2.85E8",
"operating_debt": "0.0",
"accounts_payable": "1.6E7",
"turnover": "5.9E7",
"total_equity": "1.603E9",
"total_debts": "4.318E9",
"net_cashflow": "-1247000000.0",
"raw": {
"schema": "Formulaire 2050-LIASSE : LIASSE BIC/IS - REGIME RN (Tableaux n° 2050-SD à 2059-G-SD)",
"values": {
"02": "0.0",
"03": "0.0",
"04": "0.0",
"07": "0.0",
"09": "0.0",
"0G": "4.238E9",
"0H": "0.0",
"1B": "0.0",
"05": "0.0",
"0K": "5.22E8",
"0N": "2.7E7",
"0R": "3.2E7",
"06": "0.0",
"0L": "5.009E9",
"0P": "5000000.0",
"08": "0.0",
"0J": "1.293E9",
"0Q": "0.0",
"1A": "2.1E8",
"1C": "0.0",
"1D": "0.0",
"1E": "0.0",
"1G": "0.0",
"1H": "0.0",
"1J": "0.0",
"2E": "2.6E7",
"3Z": "2000000.0",
"4D": "0.0",
"4H": "0.0",
"4M": "0.0",
"4S": "0.0",
"4W": "0.0",
"5A": "1.8E7",
"5E": "0.0",
"5K": "0.0",
"5P": "0.0",
"5R": "0.0",
"5S": "0.0",
"5T": "0.0",
"5U": "0.0",
"5Y": "2.3E7",
"5Z": "5.6E7",
"6A": "9000000.0",
"6B": "0.0",
"6E": "0.0",
"6F": "0.0",
"6G": "0.0",
"1K": "0.0",
"6C": "0.0",
"6D": "9000000.0",
"6H": "0.0",
"6N": "0.0",
"6P": "0.0",
"6R": "0.0",
"6S": "0.0",
"6T": "0.0",
"6U": "0.0",
"6W": "0.0",
"6Y": "0.0",
"6Z": "0.0",
"7A": "1000000.0",
"7C": "2.35E8",
"7Y": "0.0",
"7Y2": "0.0",
"7Y3": "0.0",
"7Z": "2.228E9",
"7Z2": "3000000.0",
"6V": "0.0",
"6X": "1000000.0",
"7B": "1.77E8",
"7Z3": "7.25E8",
"8A": "1.979E9",
"8A2": "1.979E9",
"8A3": "0.0",
"8B": "1.6E7",
"8B2": "1.6E7",
"8B3": "0.0",
"8C": "0.0",
"8C2": "0.0",
"8C3": "0.0",
"8D": "0.0",
"8D2": "0.0",
"8D3": "0.0",
"8E": "0.0",
"8E2": "0.0",
"8E3": "0.0",
"8J": "0.0",
"8J2": "0.0",
"8J3": "0.0",
"8K": "1000000.0",
"8K2": "1000000.0",
"8K3": "0.0",
"8L2": "0.0",
"8L3": "0.0",
"9X": "1.68E8",
"9Z": "0.0",
"A2": "0.0",
"A3": "0.0",
"A4": "0.0",
"AA": "0.0",
"AB": "0.0",
"AC": "0.0",
"AD": "0.0",
"AE": "0.0",
"AF": "1.9E7",
"8J4": "0.0",
"8L": "0.0",
"A1": "0.0",
"AG": "1.8E7",
"AH": "3.3E7",
"AI": "1.9E7",
"AJ": "0.0",
"AK": "0.0",
"AL": "0.0",
"AM": "0.0",
"AN": "0.0",
"AO": "0.0",
"AP": "0.0",
"AQ": "0.0",
"AR": "0.0",
"AS": "0.0",
"AT": "5000000.0",
"AU": "4000000.0",
"AV": "0.0",
"AW": "0.0",
"AX": "0.0",
"AY": "0.0",
"B1": "0.0",
"BB": "1.406E9",
"BC": "0.0",
"BD": "2.3E7",
"BE": "0.0",
"BF": "0.0",
"BG": "0.0",
"BH": "4.2E7",
"BI": "0.0",
"BJ": "5.009E9",
"BK": "2.09E8",
"BL": "0.0",
"BM": "0.0",
"BN": "0.0",
"BO": "0.0",
"BP": "0.0",
"BQ": "0.0",
"BR": "0.0",
"BS": "0.0",
"BT": "0.0",
"BU": "0.0",
"BV": "0.0",
"BW": "0.0",
"BX": "1.9E7",
"BY": "0.0",
"BZ": "3.75E8",
"CA": "1000000.0",
"CB": "0.0",
"CC": "0.0",
"CD": "2.75E8",
"CE": "0.0",
"CF": "4.57E8",
"CG": "0.0",
"CH": "2000000.0",
"CI": "0.0",
"CJ": "1.128E9",
"CK": "1000000.0",
"CL": "2.5E7",
"CM": "1.0E7",
"CN": "3000000.0",
"CO": "6.175E9",
"CP": "0.0",
"CR": "0.0",
"CS": "0.0",
"CT": "0.0",
"CU": "3.481E9",
"CV": "1.68E8",
"CY": "0.0",
"CZ": "0.0",
"D0": "0.0",
"D8": "0.0",
"DA": "4.78E8",
"DB": "7.7E8",
"DC": "0.0",
"DD": "4.7E7",
"DE": "0.0",
"DF": "0.0",
"DG": "0.0",
"DH": "2.1E7",
"DI": "2.85E8",
"DJ": "0.0",
"DK": "2000000.0",
"DL": "1.603E9",
"DM": "0.0",
"DN": "0.0",
"DO": "0.0",
"DP": "1.1E7",
"DQ": "3.0E7",
"DR": "4.1E7",
"DS": "0.0",
"DT": "2.228E9",
"DU": "7.8E7",
"DV": "1.979E9",
"DW": "0.0",
"DX": "1.6E7",
"DY": "1.6E7",
"DZ": "0.0",
"EA": "1000000.0",
"EB": "0.0",
"EC": "4.318E9",
"ED": "3000000.0",
"EE": "5.965E9",
"EF": "0.0",
"EG": "0.0",
"EH": "0.0",
"EI": "0.0",
"EJ": "0.0",
"EK": "0.0",
"EL": "0.0",
"EM": "0.0",
"FA": "0.0",
"FB": "0.0",
"FC": "0.0",
"FD": "0.0",
"FE": "0.0",
"FF": "0.0",
"FG": "1.3E7",
"FH": "4.6E7",
"FI": "5.9E7",
"FJ": "1.3E7",
"FK": "4.6E7",
"FL": "5.9E7",
"FM": "0.0",
"FN": "3000000.0",
"FO": "0.0",
"FP": "1.5E7",
"FQ": "3.9E7",
"FR": "1.16E8",
"FS": "0.0",
"FT": "0.0",
"FU": "0.0",
"FV": "0.0",
"FW": "6.9E7",
"FX": "4000000.0",
"FY": "2.3E7",
"FZ": "2.1E7",
"GA": "4000000.0",
"GB": "0.0",
"GC": "5000000.0",
"GD": "1.6E7",
"GE": "1000000.0",
"GF": "1.43E8",
"GG": "-2.7E7",
"GH": "0.0",
"GI": "0.0",
"GJ": "2.78E8",
"GK": "0.0",
"GL": "4000000.0",
"GM": "3.8E7",
"GN": "1.6E7",
"GO": "0.0",
"GP": "3.36E8",
"GQ": "1.9E7",
"GR": "3.3E7",
"GS": "3.9E7",
"GT": "0.0",
"GU": "9.1E7",
"GV": "2.45E8",
"GW": "2.18E8",
"HA": "0.0",
"HB": "7.6E7",
"HC": "6000000.0",
"HD": "8.2E7",
"HE": "0.0",
"HF": "2.5E7",
"HG": "0.0",
"HH": "2.5E7",
"HI": "5.7E7",
"HJ": "0.0",
"HK": "-1.0E7",
"HL": "5.34E8",
"HM": "2.49E8",
"HN": "2.85E8",
"HO": "0.0",
"HP": "0.0",
"HQ": "0.0",
"HX": "0.0",
"HY": "0.0",
"I4": "0.0",
"IN": "0.0",
"KC": "0.0",
"KD": "4.7E7",
"KE": "0.0",
"KF": "6000000.0",
"LN": "4000000.0",
"LO": "0.0",
"LP": "1000000.0",
"LQ": "4.187E9",
"LR": "0.0",
"LS": "1.286E9",
"LT": "0.0",
"LV": "1000000.0",
"LV1": "0.0",
"LW": "5.2E7",
"MY": "0.0",
"NC": "0.0",
"NG": "0.0",
"NG1": "0.0",
"NH": "5000000.0",
"NJ": "5.21E8",
"NJ1": "0.0",
"NK": "4.952E9",
"PD": "0.0",
"PE": "2.4E7",
"PF": "4000000.0",
"PG": "0.0",
"PH": "2.8E7",
"PZ": "0.0",
"QA": "0.0",
"QB": "0.0",
"QC": "0.0",
"QH": "0.0",
"QI": "0.0",
"QJ": "0.0",
"QK": "0.0",
"QL": "0.0",
"QM": "0.0",
"QN": "0.0",
"QO": "0.0",
"QU": "3000000.0",
"QV": "1000000.0",
"QW": "0.0",
"QX": "4000000.0",
"SB": "0.0",
"SC": "0.0",
"SD": "0.0",
"SE": "0.0",
"SF": "0.0",
"SM": "0.0",
"SP": "0.0",
"SP0": "0.0",
"SP1": "0.0",
"SR": "0.0",
"SS": "0.0",
"ST": "0.0",
"SZ": "0.0",
"SZ2": "0.0",
"SZ3": "0.0",
"TO": "2000000.0",
"TS": "0.0",
"TT": "0.0",
"TU": "2000000.0",
"TV": "1.8E7",
"TW": "3.3E7",
"TX": "4.1E7",
"TY": "1.5E7",
"TZ": "1.4E7",
"UA": "1.78E8",
"UB": "3.3E7",
"UC": "4.7E7",
"UD": "2.21E8",
"UE": "1.6E7",
"UF": "9000000.0",
"UG": "1.7E7",
"UH": "3.8E7",
"UJ": "0.0",
"UK": "0.0",
"UL": "1.406E9",
"UM": "5000000.0",
"UP": "0.0",
"UR": "0.0",
"UT": "4.2E7",
"UU": "0.0",
"UU2": "0.0",
"UV": "4.2E7",
"UX": "1.9E7",
"UX2": "1.2E7",
"UY": "0.0",
"UY2": "0.0",
"UZ": "0.0",
"UZ2": "0.0",
"VA": "0.0",
"VA2": "0.0",
"VB": "0.0",
"VB2": "0.0",
"VC": "0.0",
"VC2": "0.0",
"VG": "7.8E7",
"VG2": "7.8E7",
"VG3": "0.0",
"VH": "0.0",
"VH2": "0.0",
"VH3": "0.0",
"VI": "0.0",
"VI2": "0.0",
"VI3": "0.0",
"VI4": "0.0",
"VJ": "0.0",
"VK": "0.0",
"VL": "0.0",
"VM": "0.0",
"VM2": "0.0",
"VN": "0.0",
"VN2": "0.0",
"VP": "0.0",
"VP2": "0.0",
"VQ": "1.6E7",
"VQ2": "1.6E7",
"VQ3": "0.0",
"VR": "3.75E8",
"VR2": "3.73E8",
"VS": "2000000.0",
"VS2": "2000000.0",
"VT": "1.844E9",
"VU": "4.34E8",
"VV": "1.41E9",
"VW": "0.0",
"VW2": "0.0",
"VW3": "0.0",
"VX": "0.0",
"VX2": "0.0",
"VX3": "0.0",
"VY": "4.318E9",
"VY3": "7.25E8",
"VY4": "1.5E9",
"VZ": "2.093E9",
"XQ": "0.0",
"YP": "199.0",
"YQ": "0.0",
"YR": "0.0",
"YS": "0.0",
"YT": "0.0",
"YU": "0.0",
"YV": "0.0",
"YW": "0.0",
"YX": "4000000.0",
"YY": "0.0",
"YZ": "0.0",
"Z10": "0.0",
"Z11": "0.0",
"Z8": "0.0",
"ZE": "0.0",
"ZJ": "6.9E7",
"ZR": "0.0"
}
}
}
],
"financial_indicators": [
[
{
"ratio_label": "Equity quote",
"ratio_calculation": "Equity / Total Assets",
"company_value": "6.25407",
"closing_date": "2020-12-31"
},
{
"ratio_label": "Operating Income to net revenue ratio",
"ratio_calculation": "Operating Income / Net Revenue",
"company_value": "-0.14146",
"closing_date": "2020-12-31"
},
{
"ratio_label": "Debts to equity ratio",
"ratio_calculation": "Debt / Equity",
"company_value": "2.79948",
"closing_date": "2020-12-31"
},
{
"ratio_label": "Return on debt",
"ratio_calculation": "Operating Income / Loan Amount",
"company_value": "-29.0",
"closing_date": "2020-12-31"
},
{
"ratio_label": "Net Profit Margin",
"ratio_calculation": "Net Income / Turnover",
"company_value": "11.38889",
"closing_date": "2020-12-31"
}
],
[
{
"ratio_label": "Equity quote",
"ratio_calculation": "Equity / Total Assets",
"company_value": "8.04889",
"closing_date": "2019-12-31"
},
{
"ratio_label": "Operating Income to net revenue ratio",
"ratio_calculation": "Operating Income / Net Revenue",
"company_value": "-0.07407",
"closing_date": "2019-12-31"
},
{
"ratio_label": "Debts to equity ratio",
"ratio_calculation": "Debt / Equity",
"company_value": "2.91165",
"closing_date": "2019-12-31"
},
{
"ratio_label": "Return on debt",
"ratio_calculation": "Operating Income / Loan Amount",
"company_value": "-0.47826",
"closing_date": "2019-12-31"
},
{
"ratio_label": "Net Profit Margin",
"ratio_calculation": "Net Income / Turnover",
"company_value": "16.5",
"closing_date": "2019-12-31"
}
],
[
{
"ratio_label": "Equity quote",
"ratio_calculation": "Equity / Total Assets",
"company_value": "7.63333",
"closing_date": "2018-12-31"
},
{
"ratio_label": "Operating Income to net revenue ratio",
"ratio_calculation": "Operating Income / Net Revenue",
"company_value": "-0.09474",
"closing_date": "2018-12-31"
},
{
"ratio_label": "Debts to equity ratio",
"ratio_calculation": "Debt / Equity",
"company_value": "2.6937",
"closing_date": "2018-12-31"
},
{
"ratio_label": "Return on debt",
"ratio_calculation": "Operating Income / Loan Amount",
"company_value": "-0.34615",
"closing_date": "2018-12-31"
},
{
"ratio_label": "Net Profit Margin",
"ratio_calculation": "Net Income / Turnover",
"company_value": "21.92308",
"closing_date": "2018-12-31"
}
]
],
"financial_trend": [
{
"label": "Yearly relative evolution",
"stating_date": "2019-12-31",
"end_date": "2020-12-31",
"time_n_months": "12",
"total_assets": "0.36444",
"shared_capital": "0.0144",
"net_revenue": "-0.30976",
"operating_debt": "nan",
"accounts_payable": "0.52941",
"turnover": "0.0875",
"total_equity": "0.06019",
"total_debts": "0.01934",
"net_cashflow": "-0.28075"
},
{
"label": "Yearly relative evolution",
"stating_date": "2018-12-31",
"end_date": "2019-12-31",
"time_n_months": "12",
"total_assets": "0.07143",
"shared_capital": "0.01674",
"net_revenue": "0.04211",
"operating_debt": "nan",
"accounts_payable": "0.0625",
"turnover": "0.35593",
"total_equity": "0.12976",
"total_debts": "0.22117",
"net_cashflow": "0.61668"
}
],
"profit_ratios": [
{
"ratio_label": "Overall Gross Profit Margin",
"ratio_calculation": "Overall Margin / (Sales of goods + Production Sold)",
"sector_value": "55.94429024497695",
"company_value": "100.0",
"closing_date": "2020-12-31",
"balance_id": "20476229",
"balance_format": "3841"
},
{
"ratio_label": "Added value ratio",
"ratio_calculation": "Value Added / (Production + Sales of goods)",
"sector_value": "11.880015075387478",
"company_value": "2.083333333333333",
"closing_date": "2020-12-31",
"balance_id": "20476229",
"balance_format": "3841"
},
{
"ratio_label": "Sales Margin",
"ratio_calculation": "Gross margin / Purchases consumed",
"sector_value": "0.9227813448637245",
"company_value": "0.0",
"closing_date": "2020-12-31",
"balance_id": "20476229",
"balance_format": "3841"
},
{
"ratio_label": "Financial Rentability",
"ratio_calculation": "gross profit / equity",
"sector_value": "-2.89140852414952",
"company_value": "10.671525247267049",
"closing_date": "2020-12-31",
"balance_id": "20476229",
"balance_format": "3841"
}
],
"payment_information": {
"n_days_delay": "19",
"n_providers": "14"
},
"decision_maker": [
{
"function_code": "0110",
"function": "Président du conseil d'administration",
"start_date": "2015-11-07",
"birthday": "1971-07-10",
"title": "M",
"firstname": "Bertrand",
"lastname": "DUMAZY",
"place_of_birth": "Tourcoing",
"corporate_name": null
},
{
"function_code": "0400",
"function": "Directeur général",
"start_date": "2015-11-07",
"birthday": "1971-07-10",
"title": "M",
"firstname": "Bertrand",
"lastname": "DUMAZY",
"place_of_birth": "Tourcoing",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2010-09-21",
"birthday": "1946-11-29",
"title": "M",
"firstname": "Jean Paul",
"lastname": "BAILLY",
"place_of_birth": "Hénin-Beaumont",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2010-09-21",
"birthday": "1947-01-11",
"title": "MME",
"firstname": "Gabriele",
"lastname": "GALATERI DI GENOLA E SUNIGLIA",
"place_of_birth": "Italie",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2010-09-21",
"birthday": "1957-12-21",
"title": "MME",
"firstname": "Françoise",
"lastname": "GRI",
"place_of_birth": "Agen",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2013-11-16",
"birthday": "1975-08-22",
"title": "M",
"firstname": "Jean-Romain",
"lastname": "LHOMME",
"place_of_birth": "Neuilly-sur-Seine",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2014-06-25",
"birthday": "1978-05-22",
"title": "MME",
"firstname": "Maëlle",
"lastname": "GAVET",
"place_of_birth": "Boulogne-Billancourt",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2015-11-07",
"birthday": "1971-07-10",
"title": "M",
"firstname": "Bertrand",
"lastname": "DUMAZY",
"place_of_birth": "Tourcoing",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2016-05-03",
"birthday": "1961-12-01",
"title": "MME",
"firstname": "Sylvia",
"lastname": "COUTINHO",
"place_of_birth": "Brésil",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2017-06-28",
"birthday": "1959-08-04",
"title": "M",
"firstname": "Dominique",
"lastname": "D'HINNIN",
"place_of_birth": "Canteleu",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2019-05-23",
"birthday": "1961-03-25",
"title": "M",
"firstname": "Jean-Bernard",
"lastname": "HAMEL",
"place_of_birth": "Vendôme",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2020-06-27",
"birthday": "1951-09-10",
"title": "MME",
"firstname": "Graziella Danila",
"lastname": "GAVEZOTTI",
"place_of_birth": "Italie",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2021-06-15",
"birthday": "1970-09-27",
"title": "MME",
"firstname": "Angeles",
"lastname": "GARCIA POVEDA MORERA",
"place_of_birth": "Espagne",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2021-06-15",
"birthday": "1960-09-26",
"title": "MME",
"firstname": "Monica",
"lastname": "MONDARDINI",
"place_of_birth": "Italie",
"corporate_name": null
},
{
"function_code": "0600",
"function": "Administrateur",
"start_date": "2021-06-15",
"birthday": "1964-08-28",
"title": "M",
"firstname": "Philippe",
"lastname": "VALLEE",
"place_of_birth": "Marseille",
"corporate_name": null
}
],
"establishments": [
{
"active": "true",
"zipcode": "92130",
"street_complement": "14 16",
"brand": "Edenred",
"legal_form": "Société européenne",
"legal_form_code": "5800",
"naf_label": "Activités des sièges sociaux",
"naf_code": "7010Z",
"non_diffusable": "false",
"company_name": "EDENRED",
"street": "14 BOULEVARD GARIBALDI",
"headquarters": "true",
"acronym": null,
"establishment_id": "49332297800039",
"status_eirl_code": "N",
"status_eirl_label": "Non",
"city": "ISSY LES MOULINEAUX",
"country": "France",
"national_id": "493322978"
}
]
},
"isBase64Encoded": false
}
This endpoint retrieves all the financial details of the company matching the given national identification number.
HTTP Request
POST https://api.tradeinsur.com/fast/api/v1/search/company/details/allfinancial
JSON post data
Key | Required | Description |
---|---|---|
national_id | true | Identifier of company |
JSON response data
General information : dictionary of the general information on the company
Key | Value type | Description |
---|---|---|
national_id | string | National identification number of the company |
is_active | boolean | Either or not the company is active |
company_name | string | Name of the company |
naf_code | string | Activity code of the company |
legal_form | string | Legal form of the company |
street_address | string | Street name of the address of the company (headquarters) |
city_address | string | City of the address of the company (headquarters) |
zipcode | string | Zip code of the address of the company (headquarters) |
country | string | Country of the company (headquarters) |
has_published | boolean | Indicate if the company has already published its results |
Scores : Dictionary of the financial scores associated to the company
Key | Value type | Description |
---|---|---|
last_update | string (%year-%month-%day) | Last update of the risks calculation |
recommended_outstanding | string | Recommended maximum outstanding to have with this company |
risk_level | string | Level of the risk (Label) |
risk_level_code | string | Level of the risk (rated on 4) |
default_probability | string | Probability for the company to fail within the next 12 months |
score_company_percent | string | Company solvability score (rated on 100) |
score_company_twenty | string | Company solvability score (rated on 20) |
score_sector_percent | string | Company's sector solvability score (rated on 100) |
score_sector_twenty | string | Company's sector solvability score (rated on 20) |
Finances : List of the last three financial statements published
Key | Value type | Description |
---|---|---|
closing_date | string (%year-%month-%day) | Closing date of the financial statement |
time_n_months | string | Number of months considered on the financial statement (generally 12, one accountable year) |
currency | string | Currency of the values provided on the financial statement |
total_assets | string | Total amount of the assets of the company |
shared_capital | string | Total amount of the company's shared capital |
net_revenue | string | Net revenue of the company |
operating_debt | string | Operating debt of the company |
accounts_payable | string | Payable accounts of the company |
turnover | string | Company's turnover |
total_equity | string | Total equity amount of the company |
total_debts | string | Total amount of debts of the company |
net_cashflow | string | Net cashflow of the company |
raw | list | composed of two elements:
|
Financial Indicators : List of financial indicators (each detailed in a dictionary) computed out the last three financial statements published
Key | Value type | Description |
---|---|---|
ratio_label | string | Name of the financial indicator |
ratio_calculation | string | Calculation used to Obtained the indicator |
company_value | string | Value computed for the company |
closing_date | string (%year-%month-%day) | closing date of the financial statement on which the indicator has been computed |
Financial Trend : List of financial trends computed among the last three financial statements published (then up to two)
Key | Value type | Description |
---|---|---|
label | string | Financial trend definition: Computed to obtain the trend on a yearly, so 12 months, basis |
stating_date | string (%year-%month-%day) | First date considered for the calculation of the trend |
end_date | string (%year-%month-%day) | End date considered for the calculation of the trend |
time_n_months | string | Number of months between the two publications considered |
total_assets | string | Yearly trend of the total assets |
shared_capital | string | Yearly trend of the total shared capital |
net_revenue | string | Yearly trend of the net revenue |
operating_debt | string | Yearly trend of the operating debt |
accounts_payable | string | Yearly trend of the payable accounts |
turnover | string | Yearly trend of the turnover |
total_equity | string | Yearly trend of the total equity |
total_debts | string | Yearly trend of the total debts |
net_cashflow | string | Yearly trend of the net cashflow |
Profit Ratios : List of financial indicators (each detailed in a Dictionary) computed out the last three financial statements published
Key | Value type | Description |
---|---|---|
ratio_label | string | Name of the financial ratio |
ratio_calculation | string | Definition of the financial ratio |
sector_value | string | Mean value of the ratio in the company's sector |
company_value | string | Value of the financial ratio for the company |
closing_date | string (%year-%month-%day) | Date on which the ratio has be evalauted |
balance_id | string | Financial statement identification number |
balance_format | string | Financial statement format |
Decision Maker : List of the different directors associated to the company
Key | Value type | Description |
---|---|---|
function_code | string | Function code of the decision maker |
function | string | Function name of the decision maker |
start_date | string | Date at which the decision maker took his position |
birthday | string | Birthday date of the decision maker |
title | string | Title of the decision maker |
firstname | string | First name of the decision maker |
lastname | string | Last name of the decision maker |
place_of_birth | string | Place of birth of the decision maker |
corporate_name | string | Name of the company associated to the decision maker |
Payment Information : Dictionary of the information on the company's payment behaviour
Key | Value type | Description |
---|---|---|
n_days_delay | string | Estimated numbers of days of late payment |
n_providers | string | Number of the company's providers used for the estimation of n_days_delay |
establishments : List of establishments associated to the company
Key | Value type | Description |
---|---|---|
active | string | State if this establishment is still active |
zipcode | string | Zipcode of the address of the establishment |
street_complement | string | Street Complement of the address of the establishment |
brand | string | Brand of the establishment |
legal_form | string | Legal form of the establishment |
legal_form_code | string | Code associated to the legal form of the establishment |
naf_label | string | Activity of the establishment |
naf_code | string | Activity code of the establishment |
non_diffusable | string | If the information should have remained confidential |
company_name | string | Name of the company |
street | string | Street of the address of the establishment |
headquarters | string | Is the headquarter of the company |
acronym | string | Acronym of the establishment |
national_id | string | National_id of the establishment |
status_eirl_code | string | Status of the EIRL code |
status_eirl_label | string | Status of the EIRL label |
city | string | City of the address of the establishment |
country | string | Country of the address of the establishment |
establishment_id | string | Identification number of the establishment |
Webhooks
A webhook is an endpoint on your server that receive requests from the TradeIn Server, notifying you about an event that happens on your account, such as score update, company dismiss, address change, etc.
Webhooks can be register thourgh the endpoint illustrated below. You are allowed to edit/update your webhook as many times as you desired.
Get webhook details
import requests
requests.get(
"https://api.tradeinsur.com/fast/api/v1/users/webhook/",
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X GET
"https://api.tradeinsur.com/fast/api/v1/users/webhook/" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json"
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": null,
"body": {
"webhook_url": "https://your-domain.com/webhook/endpoint/",
"tradein_signature": "040ea9c0728d4f2faacc7c6a3badeaab"
},
"isBase64Encoded": false
}
This endpoint gives detail of webhook and the signature to consider while receiving event payloads.
HTTP Request
GET https://api.tradeinsur.com/fast/api/v1/users/webhook/
JSON response data
Key | Value type | Description |
---|---|---|
webhook_url | string | The url that you have registered |
tradein_signature | string | TradeIn will pass this code as "TradeIn-Signature" in headers while passing event data. You are responsible to verify that the request is comming from TradeIn using this Signature. |
Register webhook URL
import requests
requests.post(
"https://api.tradeinsur.com/fast/api/v1/users/webhook/",
json={"webhook_url": "https://your-domain.com/webhook/endpoint"},
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X POST
"https://api.tradeinsur.com/fast/api/v1/users/webhook/" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json"\
-d '{"webhook_url": "https://your-domain.com/webhook/endpoint"}'
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "Successfully registered webhook",
"body": null,
"isBase64Encoded": false
}
This endpoint will register the webhook.
HTTP Request
POST https://api.tradeinsur.com/fast/api/v1/users/webhook/
JSON post data
Key | Required | Description |
---|---|---|
webhook_url | true | The endpoint to register as webhook to receive events data |
Delete webhook
import requests
requests.delete(
"https://api.tradeinsur.com/fast/api/v1/users/webhook/",
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X DELETE
"https://api.tradeinsur.com/fast/api/v1/users/webhook/" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json"
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "Successfully deleted webhook",
"body": null,
"isBase64Encoded": false
}
This endpoint deletes the webhook url you have registered.
HTTP Request
DELETE https://api.tradeinsur.com/fast/api/v1/users/webhook/
JSON response data
User
User Info
import requests
requests.get(
"https://api.tradeinsur.com/fast/api/v1/search/user-info",
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X GET
"https://api.tradeinsur.com/fast/api/v1/search/user-info" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json"
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "Ok",
"body": {
"total_unique_company_allowed": 500,
"access_end_date": "2022-12-31",
"env": "demo",
"user": {
"name": "TradeIn Support",
"email": "contact@tradeinsur.com",
"company": "TradeIn",
"address": ""
},
"allowed_national_ids": [
"830041273",
"493322978",
"83418183600026",
"888858073",
"381870963",
"007350200",
"054800958",
"378528863",
"404298721",
"448258798"
],
"request_quotas": {
"per_min": 3,
"per_hour": 10,
"per_day": 1000,
"per_month": 10000
},
"allowed_endpoints": {
"searchCompany": 1,
"companyGeneral": -1,
"companyScore": -1,
"companyFinances": -1,
"companyFinancialIndicator": -1,
"companyFinancialTrend": -1,
"companyProfitRatio": -1,
"companyPaymentInformation": -1,
"companyDecisionMakers": -1,
"companyFileReport": -1,
"companyEstablishment": -1,
"companyLegalInformation": -1,
"companyShareHolders": 0,
"companyDetailsAll": 0,
"companyDetailsAllFinancial": -1
},
"endpoints_hit_count": {
"searchCompany": 34,
"companyGeneral": 25,
"companyScore": 7,
"companyFinances": 6,
"companyFinancialIndicator": 10,
"companyFinancialTrend": 10,
"companyProfitRatio": 4,
"companyPaymentInformation": 4,
"companyDecisionMakers": 5,
"companyFileReport": 4,
"companyEstablishment": 6,
"companyLegalInformation": 4,
"companyShareHolders": 5,
"companyDetailsAll": 32,
"companyDetailsAllFinancial": 43
},
"searched_national_ids": [
"493322978",
"448258798",
"007350200",
"054800958",
"015450638",
"007080195",
"632012100",
"351315072"
]
},
"isBase64Encoded": false
}
This endpoint gives detail of user and the contract. Also privide all the unique companies requested so far.
HTTP Request
GET https://api.tradeinsur.com/fast/api/v1/search/user-info
JSON response data
Key | Value type | Description |
---|---|---|
access_end_date | string (%year-%month-%day) | Contract end date |
total_unique_company_allowed | int | Total number of unique companies allowed to get detail data |
env | string | prod or demo, Testing or actual production environment the key is associated |
user | dict | contains name, email, company and address |
allowed_national_ids | list / list of companies allowed to search | |
request_quotas | dict | limiting rate for making request in TradeIn API Server |
allowed_endpoints | dict | allowed apis to hit;
|
endpoints_hit_count | dict | how many request has been made on each endpoint |
searched_national_ids | list | List of unique companies searched so far |
Request/Response Log
import requests
requests.get(
"https://api.tradeinsur.com/fast/api/v1/search/user-info/logs?page=1&per_page=20",
headers={"x-api-key": "YOUR_API_KEY"}
)
curl -X POST
"https://api.tradeinsur.com/fast/api/v1/search/user-info/logs?page=1&per_page=20" \
-H "x-api-key: YOUR_API_KEY" \
-H 'accept: application/json' \
-H "Content-Type: application/json"
The above command returns JSON structured like this:
{
"statusCode": "200",
"headers": {
"content-type": "application/json"
},
"message": "Ok",
"body": [
{
"endpoint": "companyGeneral",
"request_body": {
"country_code": "FR",
"national_id": "493322978",
},
"response_body": {
"statusCode": 200,
"message": "OK",
"body": [
{
"national_id": "493322978",
"is_active": true,
"company_name": "EDENRED",
"naf_code": "7010Z",
"legal_form": "Société européenne",
"street_address": "14 BOULEVARD GARIBALDI",
"city_address": "ISSY LES MOULINEAUX",
"zipcode": "92130",
"country": "France",
"has_published": true
}
]
},
"requested_at": "2022-06-22 15:24:53"
}
],
"isBase64Encoded": false
}
This endpoint gives all the searches history made by user. It provides requested data, response send and the time when the request was made.
HTTP Request
GET https://api.tradeinsur.com/fast/api/v1/search/user-info/logs?page=<page_number>&per_page=<per_page_documents>
Request params
Key | Required | Description |
---|---|---|
page | number | Which page data you want |
per_page | number | Number of documents per page |
JSON response data
Key | Value type | Description |
---|---|---|
requested_at | string (%year-%month-%day HH:MM:SS) | The date at which request was made |
request_body | dict | The JSON request body used while making request |
response_body | dict | The response send back from the api server |
Risk Assessment
Company Search endpoint
This endpoint returns the company searched based on name, which will then returns the Tradein_id for user to search company and access their different financial risk and third party risk.
import requests
requests.post(
"https://api.tradeinsur.com/v2/conformity/risks/search",
json={
"country_code": "FR",
"name": "edenred"
}
)
curl -X 'POST'
'https://api.tradeinsur.com/v2/conformity/risks/search/' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"country_code": "FR",
"name": "edenred"
}'
User can ask any comapny by its name, and matching company list and its branches will be shown.
The above command returns JSON structure data like this:
{
"code": 200,
"message": "Details of company search",
"payload": [
{
"company_name": "EDENRED",
"acronym": null,
"brand": null,
"active": true,
"full_address": "14 BOULEVARD GARIBALDI, 92130, ISSY LES MOULINEAUX, France ",
"street": "14 BOULEVARD GARIBALDI",
"street_complement": null,
"zipcode": "92130",
"city": "ISSY LES MOULINEAUX",
"country_code": "FR",
"country_label": "France",
"headquarters": true,
"creation_date": null,
"company_size": null,
"effectif_range": null,
"establishment_id": "49332297800039",
"national_id": "493322978",
"legal_form_label": "Société européenne ",
"legal_form_code": "5800",
"naf_label": "Activités des sièges sociaux",
"naf_code": "7010Z",
"phone": null,
"email_or_website": null,
"tradein_id": "TI-FR-493322978"
},
{
"company_name": "EDENRED FRANCE",
"acronym": null,
"brand": null,
"active": true,
"full_address": "166 BOULEVARD GABRIEL PERI, 166 180, 92240, MALAKOFF, France ",
"street": "166 BOULEVARD GABRIEL PERI",
"street_complement": "166 180",
"zipcode": "92240",
"city": "MALAKOFF",
"country_code": "FR",
"country_label": "France",
"headquarters": true,
"creation_date": null,
"company_size": null,
"effectif_range": null,
"establishment_id": "39336513500358",
"national_id": "393365135",
"legal_form_label": "SAS, société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"phone": null,
"email_or_website": null,
"tradein_id": "TI-FR-393365135"
},
{
"company_name": "EDENRED FRANCE",
"acronym": null,
"brand": null,
"active": true,
"full_address": "1903 AVENUE JACQUES CARTIER, LA FREGATE, 44800, ST HERBLAIN, France ",
"street": "1903 AVENUE JACQUES CARTIER",
"street_complement": "LA FREGATE",
"zipcode": "44800",
"city": "ST HERBLAIN",
"country_code": "FR",
"country_label": "France",
"headquarters": false,
"creation_date": null,
"company_size": null,
"effectif_range": null,
"establishment_id": "39336513500465",
"national_id": "393365135",
"legal_form_label": "SAS, société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Edition de logiciels applicatifs",
"naf_code": "5829C",
"phone": null,
"email_or_website": null,
"tradein_id": "TI-FR-393365135"
},
{
"company_name": "EDENRED FRANCE",
"acronym": null,
"brand": "TICKET RESTAURANT - ACCENTIV'",
"active": true,
"full_address": "2 A RUE BARTISCH, 67100, STRASBOURG, France ",
"street": "2 A RUE BARTISCH",
"street_complement": null,
"zipcode": "67100",
"city": "STRASBOURG",
"country_code": "FR",
"country_label": "France",
"headquarters": false,
"creation_date": null,
"company_size": null,
"effectif_range": null,
"establishment_id": "39336513500333",
"national_id": "393365135",
"legal_form_label": "SAS, société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"phone": null,
"email_or_website": null,
"tradein_id": "TI-FR-393365135"
},
{
"company_name": "EDENRED FRANCE",
"acronym": null,
"brand": null,
"active": true,
"full_address": "47 RUE MAURICE FLANDIN, RESIDENCE PHENIX, 69003, LYON 03, France ",
"street": "47 RUE MAURICE FLANDIN",
"street_complement": "RESIDENCE PHENIX",
"zipcode": "69003",
"city": "LYON 03",
"country_code": "FR",
"country_label": "France",
"headquarters": false,
"creation_date": null,
"company_size": null,
"effectif_range": null,
"establishment_id": "39336513500408",
"national_id": "393365135",
"legal_form_label": "SAS, société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"phone": null,
"email_or_website": null,
"tradein_id": "TI-FR-393365135"
},
{
"company_name": "EDENRED FRANCE",
"acronym": null,
"brand": "TICKET RESTAURANT- ACCENTIV'",
"active": true,
"full_address": "14 RUE DU STADE, MONTGAILLARD, 97400, ST DENIS, France ",
"street": "14 RUE DU STADE",
"street_complement": "MONTGAILLARD",
"zipcode": "97400",
"city": "ST DENIS",
"country_code": "FR",
"country_label": "France",
"headquarters": false,
"creation_date": null,
"company_size": null,
"effectif_range": null,
"establishment_id": "39336513500283",
"national_id": "393365135",
"legal_form_label": "SAS, société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"phone": null,
"email_or_website": null,
"tradein_id": "TI-FR-393365135"
},
{
"company_name": "EDENRED FRANCE",
"acronym": null,
"brand": null,
"active": true,
"full_address": "7 B RUE DES AUGUSTINS, 59800, LILLE, France ",
"street": "7 B RUE DES AUGUSTINS",
"street_complement": null,
"zipcode": "59800",
"city": "LILLE",
"country_code": "FR",
"country_label": "France",
"headquarters": false,
"creation_date": null,
"company_size": null,
"effectif_range": null,
"establishment_id": "39336513500457",
"national_id": "393365135",
"legal_form_label": "SAS, société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Edition de logiciels applicatifs",
"naf_code": "5829C",
"phone": null,
"email_or_website": null,
"tradein_id": "TI-FR-393365135"
},
{
"company_name": "EDENRED FRANCE",
"acronym": null,
"brand": null,
"active": true,
"full_address": "135 BOULEVARD PAUL PAINLEVE, 59000, LILLE, France ",
"street": "135 BOULEVARD PAUL PAINLEVE",
"street_complement": null,
"zipcode": "59000",
"city": "LILLE",
"country_code": "FR",
"country_label": "France",
"headquarters": false,
"creation_date": null,
"company_size": null,
"effectif_range": null,
"establishment_id": "39336513500416",
"national_id": "393365135",
"legal_form_label": "SAS, société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"phone": null,
"email_or_website": null,
"tradein_id": "TI-FR-393365135"
},
{
"company_name": "EDENRED FRANCE",
"acronym": null,
"brand": null,
"active": true,
"full_address": "IMMEUBLE BRAVO, ZONE INDUSTRIELLE DE JARRY LIEU DIT VO, 97122, BAIE MAHAULT, France ",
"street": "IMMEUBLE BRAVO",
"street_complement": "ZONE INDUSTRIELLE DE JARRY LIEU DIT VO",
"zipcode": "97122",
"city": "BAIE MAHAULT",
"country_code": "FR",
"country_label": "France",
"headquarters": false,
"creation_date": null,
"company_size": null,
"effectif_range": null,
"establishment_id": "39336513500234",
"national_id": "393365135",
"legal_form_label": "SAS, société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités de soutien aux entreprises n.c.a.",
"naf_code": "8299Z",
"phone": null,
"email_or_website": null,
"tradein_id": "TI-FR-393365135"
},
{
"company_name": "EDENRED FRANCE",
"acronym": null,
"brand": null,
"active": true,
"full_address": "164 AVENUE JEAN JAURES, IMMEUBLE AMBRE, 69007, LYON 07, France ",
"street": "164 AVENUE JEAN JAURES",
"street_complement": "IMMEUBLE AMBRE",
"zipcode": "69007",
"city": "LYON 07",
"country_code": "FR",
"country_label": "France",
"headquarters": false,
"creation_date": null,
"company_size": null,
"effectif_range": null,
"establishment_id": "39336513500440",
"national_id": "393365135",
"legal_form_label": "SAS, société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Edition de logiciels applicatifs",
"naf_code": "5829C",
"phone": null,
"email_or_website": null,
"tradein_id": "TI-FR-393365135"
},
{
"company_name": "EDENRED FRANCE",
"acronym": null,
"brand": "TICKET RESTAURANT ACCENTIV",
"active": true,
"full_address": "4 RUE VASCO DE GAMA, PARC ATALNTIS BATIMENT H, 44800, ST HERBLAIN, France ",
"street": "4 RUE VASCO DE GAMA",
"street_complement": "PARC ATALNTIS BATIMENT H",
"zipcode": "44800",
"city": "ST HERBLAIN",
"country_code": "FR",
"country_label": "France",
"headquarters": false,
"creation_date": null,
"company_size": null,
"effectif_range": null,
"establishment_id": "39336513500366",
"national_id": "393365135",
"legal_form_label": "SAS, société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"phone": null,
"email_or_website": null,
"tradein_id": "TI-FR-393365135"
},
{
"company_name": "EDENRED FRANCE",
"acronym": null,
"brand": null,
"active": true,
"full_address": "230 RUE PIERRE DUHEM, IMMEUBLE CROSSROAD N 161 ZACLA ROBOLE, 13290, AIX EN PROVENCE, France ",
"street": "230 RUE PIERRE DUHEM",
"street_complement": "IMMEUBLE CROSSROAD N 161 ZACLA ROBOLE",
"zipcode": "13290",
"city": "AIX EN PROVENCE",
"country_code": "FR",
"country_label": "France",
"headquarters": false,
"creation_date": null,
"company_size": null,
"effectif_range": null,
"establishment_id": "39336513500432",
"national_id": "393365135",
"legal_form_label": "SAS, société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"phone": null,
"email_or_website": null,
"tradein_id": "TI-FR-393365135"
},
{
"company_name": "EDENRED FRANCE",
"acronym": null,
"brand": "TICKET RESTAURANT - ACCENTIV'",
"active": true,
"full_address": "6 RUE DE PERIOLE, 31500, TOULOUSE, France ",
"street": "6 RUE DE PERIOLE",
"street_complement": null,
"zipcode": "31500",
"city": "TOULOUSE",
"country_code": "FR",
"country_label": "France",
"headquarters": false,
"creation_date": null,
"company_size": null,
"effectif_range": null,
"establishment_id": "39336513500424",
"national_id": "393365135",
"legal_form_label": "SAS, société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"phone": null,
"email_or_website": null,
"tradein_id": "TI-FR-393365135"
},
{
"company_name": "EDENRED FRANCE",
"acronym": null,
"brand": "TICKET RESTAURANT - ACCENTIV'",
"active": true,
"full_address": "24 RUE DE MADRID, 13127, VITROLLES, France ",
"street": "24 RUE DE MADRID",
"street_complement": null,
"zipcode": "13127",
"city": "VITROLLES",
"country_code": "FR",
"country_label": "France",
"headquarters": false,
"creation_date": null,
"company_size": null,
"effectif_range": null,
"establishment_id": "39336513500325",
"national_id": "393365135",
"legal_form_label": "SAS, société par actions simplifiée",
"legal_form_code": "5710",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"phone": null,
"email_or_website": null,
"tradein_id": "TI-FR-393365135"
},
{
"company_name": "EDENRED PAIEMENT",
"acronym": null,
"brand": null,
"active": true,
"full_address": "166 BOULEVARD GABRIEL PERI, 92240, MALAKOFF, France ",
"street": "166 BOULEVARD GABRIEL PERI",
"street_complement": null,
"zipcode": "92240",
"city": "MALAKOFF",
"country_code": "FR",
"country_label": "France",
"headquarters": true,
"creation_date": null,
"company_size": null,
"effectif_range": null,
"establishment_id": "78996824500017",
"national_id": "789968245",
"legal_form_label": null,
"legal_form_code": "5720",
"naf_label": "Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.",
"naf_code": "6619B",
"phone": null,
"email_or_website": null,
"tradein_id": "TI-FR-789968245"
},
{
"company_name": "EDENRED CORPORATE PAYMENT",
"acronym": null,
"brand": null,
"active": true,
"full_address": "14 BOULEVARD GARIBALDI, 14 16, 92130, ISSY LES MOULINEAUX, France ",
"street": "14 BOULEVARD GARIBALDI",
"street_complement": "14 16",
"zipcode": "92130",
"city": "ISSY LES MOULINEAUX",
"country_code": "FR",
"country_label": "France",
"headquarters": true,
"creation_date": null,
"company_size": null,
"effectif_range": null,
"establishment_id": "75124767700022",
"national_id": "751247677",
"legal_form_label": null,
"legal_form_code": "5720",
"naf_label": "Activités des sièges sociaux",
"naf_code": "7010Z",
"phone": null,
"email_or_website": null,
"tradein_id": "TI-FR-751247677"
},
{
"company_name": "EDENRED FUEL CARD A",
"acronym": null,
"brand": null,
"active": true,
"full_address": "14 BOULEVARD GARIBALDI, 92130, ISSY LES MOULINEAUX, France ",
"street": "14 BOULEVARD GARIBALDI",
"street_complement": null,
"zipcode": "92130",
"city": "ISSY LES MOULINEAUX",
"country_code": "FR",
"country_label": "France",
"headquarters": true,
"creation_date": null,
"company_size": null,
"effectif_range": null,
"establishment_id": "83004127300020",
"national_id": "830041273",
"legal_form_label": null,
"legal_form_code": "5720",
"naf_label": "Autres intermédiaires du commerce en combustibles, métaux, minéraux et produits chimiques",
"naf_code": "4612B",
"phone": null,
"email_or_website": null,
"tradein_id": "TI-FR-830041273"
},
{
"company_name": "EDENRED FLEET AND MOBILITY SAS",
"acronym": null,
"brand": null,
"active": true,
"full_address": "14 BOULEVARD GARIBALDI, 92130, ISSY LES MOULINEAUX, France ",
"street": "14 BOULEVARD GARIBALDI",
"street_complement": null,
"zipcode": "92130",
"city": "ISSY LES MOULINEAUX",
"country_code": "FR",
"country_label": "France",
"headquarters": true,
"creation_date": null,
"company_size": null,
"effectif_range": null,
"establishment_id": "83418183600026",
"national_id": "834181836",
"legal_form_label": null,
"legal_form_code": "5720",
"naf_label": "Conseil pour les affaires et autres conseils de gestion",
"naf_code": "7022Z",
"phone": null,
"email_or_website": null,
"tradein_id": "TI-FR-834181836"
}
]
}
This endpoint returns a response as a list of matching company by its name.
JSON Post data
key | Required | Description |
---|---|---|
country_code | string | iso2 country code, eg. FR, DE, ... |
name | string | name of the company you are intrested in |
national_id | string | id of the company, siren, siret, bvdid |
address | string | address of the company of interest |
city | string | city - the company is located in |
post_code | string | postal code of the region of company location |
<!-- region | string | --> |
naf_code | string | operation code of the company |
logo_acronym | string | nickname of the company |
phone_or_fax | string | phone or fax number of the company |
e_mail_or_website | string | email or web address of the company |
is_headquarter | int | 1 or 0 |
creation_date_start | string | string representing the start date of the company creation |
creation_date_end | string | string representing the end date of the company creation |
effectif_min | int | minimum number of employees in the company |
effectif_max | int | max number of employees in the company |
company_size | int | A list of strings representing the size of the company (can be "TPE", "PME", "ETI", "GE") |
legal_form | string | ... (code of legal form - mostly works for france) |
is_active | string | true/false ; active or deactive company to search |
JSON response data
key | Value type | Description |
---|---|---|
company_name | string | Name of the company |
acronym | string | abbreviation or short form of company name |
brand | string | Company famous for any product/service |
active | boolean | status of company, operating or closed |
full_address | string | address of a company located |
street | string | street level address of a company |
street_complement | string | None |
zipcode | string | postal code of a city in which company located |
city | string | name of city company located |
country_code | string | alpha_iso2 country code |
country_label | string | name of a country where company located |
country | string | name of a country where company located |
headquarter | boolean | is the company searched is a headquarter or not |
creation_date | string (%year-%month-%day) | establishment date of a company |
company_size | string | size of company to state micro, small, medium or large enterprise |
effectif_range | string | None |
establishment_id | string | None |
national_id | string | None |
legal_form | string | to classify the business structure |
legal_form_label | string | to classify the business structure |
legal_form_code | string | id for legal form |
naf_label | string | to classify their main activity of business |
naf_code | string | code for naf_label |
phone | string | contact number for a company searched |
email_or_website | string | contact email address for a company searched |
non_diffusable | boolean | None |
tradein_id | string | an unique id for company assigned by Tradein, which is required for accessing overall risk and update-status |
Overall Risk Assessment endpoint
This endpoint returns the list of risk such as Financial, Conformity, ESG and Corruption risk of a Company.
import requests
requests.post(
"https://api.tradeinsur.com/v2/conformity/risks/overall",
json={"user_id": "USER_ID",
"tradein_id": "Tradein_ID",
"risk_list":["financial","conformity","ESG","corruption"]
},
)
curl -X 'POST'
'https://api.tradeinsur.com/v2/conformity/risks/overall' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"user_id": "J22122",
"tradein_id": "TI-FR-552032534",
"country": "FR",
"risk_list": ["financial","conformity","ESG","corruption"],
}'
Replace user_id with the actual USER_ID, tradein_id is taken from tradein search endpoint.
The above command returns JSON structure data like this:
{
"code": 200,
"message": "Companies Risk Assessment",
"payload": {
"tradein_id": "TI-FR-552032534",
"user_id": "J22122",
"national_id": "552032534",
"created_at": "2023-04-19T14:53:05.225397",
"updated_at": "2023-04-19T14:53:05.225406",
"general": {
"national_id": "552032534",
"is_active": true,
"company_name": "DANONE",
"naf_code": "7010Z",
"activity": "Activités des sièges sociaux",
"legal_form": "SA à conseil d'administration",
"street_address": "17 BOULEVARD HAUSSMANN",
"city_address": "PARIS 09",
"zipcode": "75009",
"country": "France",
"country_currency": "EUR",
"country_alpha2_iso": "FR"
},
"risks_list": [
"financial",
"conformity",
"ESG",
"corruption"
],
"aggregate": {
"company": {
"score_value": 2,
"score_label": "C",
"score_message": "",
"recommendaion_message": " Conformity check required, Warning on the corruption exposure",
"recommendation_list": [
"Conformity check required",
"Warning on the corruption exposure"
],
"action_label": "Attention point(s)"
},
"sector": {
"score_value": 3,
"score_label": "B",
"score_message": "",
"recommendaion_message": "",
"recommendation_list": [],
"action_label": "Ouverture de la relation"
}
},
"risk_scoring": {
"sector": [
{
"name": "Financial solvability",
"data": [
[
0.9,
3.4
]
]
},
{
"name": "Conformity",
"data": [
[
1.5,
2.4
]
]
},
{
"name": "ESG",
"data": [
[
1.4,
2.6
]
]
},
{
"name": "Corruption exposure",
"data": [
[
1.4,
2.1
]
]
}
],
"company": [
{
"name": "Financial solvability",
"data": [
[
0.8,
3.4
]
]
},
{
"name": "Conformity",
"data": [
[
2.9,
2.4
]
]
},
{
"name": "ESG",
"data": [
[
1.9,
2.6
]
]
},
{
"name": "Corruption exposure",
"data": [
[
3,
2.1
]
]
}
]
},
"info_risks": {
"financial_solvability": {
"risk_gravity_label": "D",
"risk_gravity_value": 3.4,
"risk_score_label": "A",
"risk_score_value": 0.8,
"risk_score_sector_label": "A",
"risk_score_sector_value": 0.9,
"risk_details": {
"Probabilité de défaillance sur un an": "0.12%",
"Probabilité de défaillance sur un an (N-1)": "0.14%",
"EBIT": "100 000 000.00€",
"Ratio EBIT/CA": "15.75%",
"Taux de marge": "100.00%",
"N jours de retard de paiement": "8 day(s)",
"DPO": " / ",
"DSO": "31 day(s)",
"Date d'actualisation du score": "21/03/2023",
"Encours Recommandé": "1 500 000.00€",
"Résultat net": "3 674 000 000.00€",
"Chiffre d'affaire": "635 000 000.00€",
"Taux de marge Commerciale": "0.00%",
"Ratio d'indépendance financière": "22.96%",
"taux de valeur ajoutée (VA)": "8.19%",
"Rentabilité financière": "22.96%",
"Dernier bilan publié": "31/12/2021"
},
"risk_sector_details": {
"Date d'actualisation du score": "21/03/2023",
"Probabilité de défaillance sur un an": "0.18%",
"Ratio d'indépendance financière": "17.75%",
"Taux de marge": "57.50%",
"Ratio EBIT/CA": "74.43%",
"DPO": "69 day(s)",
"DSO": "7 day(s)",
"Probabilité de défaillance sur un an (N-1)": "0.14%",
"Taux de marge Commerciale": "0.89%",
"taux de valeur ajoutée (VA)": "14.79%"
}
},
"conformity_risk": {
"risk_gravity_label": "C",
"risk_gravity_value": 2.4,
"risk_score_label": "C",
"risk_score_value": 2.9499999999999997,
"risk_score_sector_label": "B",
"risk_score_sector_value": 1.5,
"risk_details": {
"embargo_info": {
"type": [],
"source": null
},
"kyb_info": {
"Contrôle KYB": false,
"Contrôle d'embargo": true,
"Contrôle France": true,
"Contrôle Union Européenne": true,
"Contrôle ONU": true,
"Contrôle Royaume-Uni": true,
"Contrôle États-Unis": true,
"kyb_details": {
"decision_makers": [
{
"id": "3e6070e3-18c8-45b4-b812-6d2e61145869",
"function_code": "0110",
"function": "Président du conseil d'administration",
"start_date": "2021-03-26",
"birthday": "1958-10-16",
"title": "M",
"firstname": "Gilles",
"lastname": "SCHNEPP",
"place_of_birth": "Lyon",
"corporate_name": null,
"kyc_kyb": {
"id": 1274074401,
"ref": "1681908791-7LgCmq8Y",
"total_matches": 0,
"share_url": "https://app.complyadvantage.com/public/search/1681908791-7LgCmq8Y/6e5eb94758b6",
"offset": 0,
"limit": 100,
"data": []
}
},
{
"id": "55dc2fe1-e0f0-49c5-8555-4579366334bd",
"function_code": "0400",
"function": "Directeur général",
"start_date": "2021-09-21",
"birthday": "1964-12-26",
"title": "M",
"firstname": "Antoine",
"lastname": "BERNARD DE SAINT AFFRIQUE",
"place_of_birth": "Boulogne-Billancourt",
"corporate_name": null,
"kyc_kyb": {
"id": 1274074404,
"ref": "1681908791-bkSq8kGe",
"total_matches": 0,
"share_url": "https://app.complyadvantage.com/public/search/1681908791-bkSq8kGe/7e7731cf3693",
"offset": 0,
"limit": 100,
"data": []
}
},
{
"id": "f4571434-3065-4faa-acf7-118e08c52194",
"function_code": "0600",
"function": "Administrateur",
"start_date": "2014-11-04",
"birthday": "1962-07-02",
"title": "MME",
"firstname": "Bettina",
"lastname": "THEISSIG",
"place_of_birth": "Allemagne",
"corporate_name": null,
"kyc_kyb": {
"id": 1274074407,
"ref": "1681908791-uhNd6QFS",
"total_matches": 0,
"share_url": "https://app.complyadvantage.com/public/search/1681908791-uhNd6QFS/3f26fb8aad07",
"offset": 0,
"limit": 100,
"data": []
}
},
{
"id": "7d66e2a9-086b-4024-90eb-890bf0e42f95",
"function_code": "0600",
"function": "Administrateur",
"start_date": "2015-07-08",
"birthday": "1969-07-07",
"title": "MME",
"firstname": "Serpil",
"lastname": "TIMURAY",
"place_of_birth": "Turquie",
"corporate_name": null,
"kyc_kyb": {
"id": 1274074408,
"ref": "1681908791-KVOqd1xN",
"total_matches": 0,
"share_url": "https://app.complyadvantage.com/public/search/1681908791-KVOqd1xN/ab99fc60f52b",
"offset": 0,
"limit": 100,
"data": []
}
},
{
"id": "ab2462f3-9d86-4223-94da-dbd6a1f7c90f",
"function_code": "0600",
"function": "Administrateur",
"start_date": "2016-08-10",
"birthday": "1967-08-18",
"title": "M",
"firstname": "Frédéric",
"lastname": "BOUTEBBA",
"place_of_birth": "Périgueux",
"corporate_name": null,
"kyc_kyb": {
"id": 1274074410,
"ref": "1681908791-98CEZg_9",
"total_matches": 0,
"share_url": "https://app.complyadvantage.com/public/search/1681908791-98CEZg_9/c0e1d9b74f53",
"offset": 0,
"limit": 100,
"data": []
}
},
{
"id": "03f4eeb1-f16f-46e0-ab40-a8406f6e66d0",
"function_code": "0600",
"function": "Administrateur",
"start_date": "2018-05-10",
"birthday": "1951-11-07",
"title": null,
"firstname": "Michel Marie",
"lastname": "LANDEL",
"place_of_birth": "Maroc",
"corporate_name": null,
"kyc_kyb": {
"id": 1274074413,
"ref": "1681908792-cZ7xKNA0",
"total_matches": 0,
"share_url": "https://app.complyadvantage.com/public/search/1681908792-cZ7xKNA0/c2af8da87022",
"offset": 0,
"limit": 100,
"data": []
}
},
{
"id": "f1301400-b9ae-4c90-add1-d03dc35abf1c",
"function_code": "0600",
"function": "Administrateur",
"start_date": "2020-12-22",
"birthday": "1958-10-16",
"title": "M",
"firstname": "Gilles",
"lastname": "SCHNEPP",
"place_of_birth": "Lyon",
"corporate_name": null,
"kyc_kyb": {
"id": 1274074417,
"ref": "1681908792-oQOelP8L",
"total_matches": 0,
"share_url": "https://app.complyadvantage.com/public/search/1681908792-oQOelP8L/d10703cd9bf2",
"offset": 0,
"limit": 100,
"data": []
}
},
{
"id": "c1e5a1f0-7c8c-490b-8420-154f06ccff30",
"function_code": "0600",
"function": "Administrateur",
"start_date": "2022-04-06",
"birthday": "1962-11-09",
"title": "MME",
"firstname": "Valérie",
"lastname": "CHAPOULAUDFLOQUET",
"place_of_birth": "Neuilly-sur-Seine",
"corporate_name": null,
"kyc_kyb": {
"id": 1274074419,
"ref": "1681908792-eDm_0oky",
"total_matches": 0,
"share_url": "https://app.complyadvantage.com/public/search/1681908792-eDm_0oky/c4d16974e5b2",
"offset": 0,
"limit": 100,
"data": []
}
},
{
"id": "444f2073-042c-4d6e-81e5-bc1e42a0fc0c",
"function_code": "0600",
"function": "Administrateur",
"start_date": "2022-05-20",
"birthday": "1964-12-26",
"title": "M",
"firstname": "Antoine",
"lastname": "BERNARD DE SAINT AFFRIQUE",
"place_of_birth": "Boulogne-Billancourt",
"corporate_name": null,
"kyc_kyb": {
"id": 1274074424,
"ref": "1681908792-wioQ7CiR",
"total_matches": 0,
"share_url": "https://app.complyadvantage.com/public/search/1681908792-wioQ7CiR/80a6e37c52f8",
"offset": 0,
"limit": 100,
"data": []
}
},
{
"id": "1b6d05e4-ff09-432c-9ee7-cba17919b3a7",
"function_code": "0600",
"function": "Administrateur",
"start_date": "2022-05-20",
"birthday": "1970-02-26",
"title": "MME",
"firstname": "Géraldine",
"lastname": "PICAUD",
"place_of_birth":