Skip to main content
POST
/
enrichment-service
/
generate-download-url
curl -X POST https://search.lespagesrouges.com/enrichment-service/generate-download-url \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "data": {
      "record_id": "abc-123-def"
    }
  }'
{
  "download_url": "https://search.lespagesrouges.com/enrichment-service/download/abc123token"
}

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.

Generate a temporary download URL for the enriched CSV file from a completed enrichment job. The URL contains a one-time token and expires after a set period.

Request Body

data
object
curl -X POST https://search.lespagesrouges.com/enrichment-service/generate-download-url \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "data": {
      "record_id": "abc-123-def"
    }
  }'
{
  "download_url": "https://search.lespagesrouges.com/enrichment-service/download/abc123token"
}