Skip to main content
POST
/
enrichment-service
/
view-enrichment-results
curl -X POST https://search.lespagesrouges.com/enrichment-service/view-enrichment-results \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "data": {
      "record_id": "abc-123-def",
      "page": 1,
      "page_size": 10
    }
  }'
{
  "total_records": 156,
  "page": 1,
  "page_size": 10,
  "data": [
    {
      "full_name": "Jean Dupont",
      "company": "Example SARL",
      "siren": "123456789",
      "phone": "+33 1 23 45 67 89",
      "email": "jean.dupont@example.com"
    }
  ]
}

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.

Retrieve paginated results from a completed enrichment job. Returns the enriched CSV data as JSON with pagination support.

Request Body

data
object
curl -X POST https://search.lespagesrouges.com/enrichment-service/view-enrichment-results \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "data": {
      "record_id": "abc-123-def",
      "page": 1,
      "page_size": 10
    }
  }'
{
  "total_records": 156,
  "page": 1,
  "page_size": 10,
  "data": [
    {
      "full_name": "Jean Dupont",
      "company": "Example SARL",
      "siren": "123456789",
      "phone": "+33 1 23 45 67 89",
      "email": "jean.dupont@example.com"
    }
  ]
}