> ## Documentation Index
> Fetch the complete documentation index at: https://v3.captaindata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Extract Bodacc Profile

> Extract data from a public Bodacc ad.

To extract data from a public Bodacc advertisement, follow the steps below. This action allows you to retrieve detailed information from a Bodacc profile URL.

<Steps>
  <Step title="Navigate to Bodacc Profile">
    Go to a Bodacc ad profile on the Bodacc website.
  </Step>

  <Step title="Copy URL">Copy the URL from your browser's address bar.</Step>
  <Step title="Paste URL">Paste the URL into the provided input field.</Step>
</Steps>

A typical Bodacc profile URL looks like this: [https://www.bodacc.fr/annonce/detail-annonce/B/20200125/693](https://www.bodacc.fr/annonce/detail-annonce/B/20200125/693).

### Inputs

<ParamField path="bodacc_profile_url" type="string" required={true} placeholder="Bodacc Profile URL">
  The URL of the Bodacc profile to extract data from.
</ParamField>

### Parameters

<ParamField path="checkDuplicate" type="boolean" default={true}>
  Checks for duplicate data to fetch and save only new data.
</ParamField>

### Output Fields

The extracted data includes the following fields:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="ad_number" type="string">
      The advertisement number.
    </ResponseField>

    <ResponseField name="address" type="string">
      The address associated with the profile.
    </ResponseField>

    <ResponseField name="administration" type="string">
      Details of the administration.
    </ResponseField>

    <ResponseField name="announced_at" type="string">
      The date when the ad was announced.
    </ResponseField>

    <ResponseField name="bodacc_ad_url" type="string">
      The URL of the Bodacc ad.
    </ResponseField>

    <ResponseField name="capital" type="string">
      The capital information.
    </ResponseField>

    <ResponseField name="commercial_name" type="string">
      The commercial name.
    </ResponseField>

    <ResponseField name="date" type="string">
      The date associated with the profile.
    </ResponseField>

    <ResponseField name="denomination" type="string">
      The denomination of the entity.
    </ResponseField>

    <ResponseField name="establishment_activity" type="string">
      The activity of the establishment.
    </ResponseField>

    <ResponseField name="establishment_origin" type="string">
      The origin of the establishment.
    </ResponseField>

    <ResponseField name="establishment_type" type="string">
      The type of establishment.
    </ResponseField>

    <ResponseField name="external_link" type="string">
      An external link related to the profile.
    </ResponseField>

    <ResponseField name="first_name" type="string">
      The first name of the individual associated with the profile.
    </ResponseField>

    <ResponseField name="headquarters" type="string">
      The headquarters information.
    </ResponseField>

    <ResponseField name="infogreffe_url" type="string">
      The Infogreffe URL.
    </ResponseField>

    <ResponseField name="last_name" type="string">
      The last name of the individual associated with the profile.
    </ResponseField>

    <ResponseField name="pdf_link" type="string">
      The link to the PDF document.
    </ResponseField>

    <ResponseField name="published_date" type="string">
      The date when the ad was published.
    </ResponseField>

    <ResponseField name="rcs" type="string">
      The RCS information.
    </ResponseField>

    <ResponseField name="starting_activity_date" type="string">
      The starting date of the activity.
    </ResponseField>

    <ResponseField name="status" type="string">
      The status of the entity.
    </ResponseField>
  </Expandable>
</ResponseField>

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
    "ad_number": "string",
    "address": "string",
    "administration": "string",
    "announced_at": "string",
    "bodacc_ad_url": "string",
    "capital": "string",
    "commercial_name": "string",
    "date": "string",
    "denomination": "string",
    "establishment_activity": "string",
    "establishment_origin": "string",
    "establishment_type": "string",
    "external_link": "string",
    "first_name": "string",
    "headquarters": "string",
    "infogreffe_url": "string",
    "last_name": "string",
    "pdf_link": "string",
    "published_date": "string",
    "rcs": "string",
    "starting_activity_date": "string",
    "status": "string"
  }
  ```
</Accordion>
