Skip to main content
POST
/
enrichment-service
/
enrich
curl -X POST https://search.lespagesrouges.com/enrichment-service/enrich \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "data": {
      "record_id": "abc-123-def",
      "filters": {
        "departement": ["75"],
        "activite_principale": ["62.01Z"],
        "etat_administratif": "A"
      },
      "limit": 50
    }
  }'
{
  "status": "success",
  "message": "Enrichment task started",
  "record_id": "abc-123-def"
}

Documentation Index

Fetch the complete documentation index at: https://docs.leads-siren.com/llms.txt

Use this file to discover all available pages before exploring further.

Start a background enrichment task that combines company and executive data into an enriched CSV file. The task runs asynchronously — the endpoint returns immediately with a record_id that you use to check results and download the file.

Request Body

data
object

Credit Cost

Dynamic — credits are calculated based on the number of records actually enriched. The cost is deducted after the background task completes.
  • Per SIREN lookup: 1 credit per company/SIREN
  • Per email found: 5 credits (skipped when skip_contact_search is true)
  • Per phone found: 90 credits (skipped when skip_contact_search is true)
curl -X POST https://search.lespagesrouges.com/enrichment-service/enrich \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "data": {
      "record_id": "abc-123-def",
      "filters": {
        "departement": ["75"],
        "activite_principale": ["62.01Z"],
        "etat_administratif": "A"
      },
      "limit": 50
    }
  }'
{
  "status": "success",
  "message": "Enrichment task started",
  "record_id": "abc-123-def"
}