Skip to main content
POST
/
enrichment-service
/
enrich-single
curl -X POST https://search.lespagesrouges.com/enrichment-service/enrich-single \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "data": {
      "siren": "123456789"
    }
  }'
{
  "siren": "123456789",
  "total_records": 5,
  "data": [
    {
      "full_name": "Jean Dupont",
      "phone": "+33 1 23 45 67 89",
      "email": "jean.dupont@example.com",
      "address": "12 Rue de Rivoli",
      "city": "Paris"
    }
  ],
  "credits_used": {
    "lookup": 5,
    "enrichment": 3,
    "total": 8
  }
}

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.

Synchronously enrich data for a single company identified by its SIREN number. Unlike the background /enrich endpoint, this returns the enriched data directly in the response.

Request Body

data
object

Credit Cost

Dynamic — based on the number of records enriched for the given SIREN.
curl -X POST https://search.lespagesrouges.com/enrichment-service/enrich-single \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "data": {
      "siren": "123456789"
    }
  }'
{
  "siren": "123456789",
  "total_records": 5,
  "data": [
    {
      "full_name": "Jean Dupont",
      "phone": "+33 1 23 45 67 89",
      "email": "jean.dupont@example.com",
      "address": "12 Rue de Rivoli",
      "city": "Paris"
    }
  ],
  "credits_used": {
    "lookup": 5,
    "enrichment": 3,
    "total": 8
  }
}