# Check suppliers: finances, insolvency and risk

**Use case:** 

Due diligence on a list of French companies: revenue, profit, insolvency proceedings, public contracts and a risk flag.

## Input

```json
{
  "companies": [
    "652014051",
    "380129866",
    "554501171"
  ],
  "includeAnnouncements": true,
  "includePublicContracts": true,
  "maxItemsPerSection": 3,
  "maxCompanies": 50
}
```

## Output

```json
{
  "name": {
    "label": "Company",
    "format": "text"
  },
  "siren": {
    "label": "SIREN",
    "format": "text"
  },
  "vatNumber": {
    "label": "VAT number",
    "format": "text"
  },
  "riskLevel": {
    "label": "Risk",
    "format": "text"
  },
  "riskFlags": {
    "label": "Risk reasons",
    "format": "array"
  },
  "active": {
    "label": "Active",
    "format": "boolean"
  },
  "nafCode": {
    "label": "NAF",
    "format": "text"
  },
  "headcountBand": {
    "label": "Employees",
    "format": "text"
  },
  "ageYears": {
    "label": "Age (years)",
    "format": "number"
  },
  "headOffice.city": {
    "label": "City",
    "format": "text"
  },
  "financials.latestYear": {
    "label": "Accounts year",
    "format": "number"
  },
  "financials.revenue": {
    "label": "Revenue (EUR)",
    "format": "number"
  },
  "financials.netIncome": {
    "label": "Net income (EUR)",
    "format": "number"
  },
  "financials.revenueGrowthPct": {
    "label": "Revenue growth %",
    "format": "number"
  },
  "insolvency.status": {
    "label": "Insolvency",
    "format": "text"
  },
  "insolvency.latestNature": {
    "label": "Latest judgement",
    "format": "text"
  },
  "insolvency.latestDate": {
    "label": "Judgement date",
    "format": "date"
  },
  "legalAnnouncements.total": {
    "label": "Legal notices",
    "format": "number"
  },
  "publicContracts.count": {
    "label": "Public contracts",
    "format": "number"
  },
  "publicContracts.totalNotifiedAmount": {
    "label": "Contracts notified (EUR, max)",
    "format": "number"
  },
  "publicContracts.lastAwardedAt": {
    "label": "Last contract",
    "format": "date"
  },
  "companyPageUrl": {
    "label": "Official page",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [France Company Check – Finances, Insolvency, Public Contracts](https://apify.com/bstandco/france-company-check.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/bstandco/france-company-check.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/bstandco/france-company-check.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
