Authentication
Every request must include a project-scoped API key.
X-Api-Key: lp_your_project_key
Send records from your product to LeadPanel with a single project API key. The API is designed for backend jobs, product events, partner integrations, and lightweight form ingestion.
X-Api-Key header.Every request must include a project-scoped API key.
X-Api-Key: lp_your_project_key
POST /api/v1/ingest/{dataSourceId}POST /api/v1/ingest/{dataSourceId}/batchPOST /api/v1/ingest/by-slug/{slug}String, Number, BooleanDate in ISO-8601StringList for tag-like arrayscurl -X POST "https://your-domain/api/v1/ingest/11111111-2222-3333-4444-555555555555" \
-H "Content-Type: application/json" \
-H "X-Api-Key: lp_your_project_key" \
-d '{
"values": {
"email": "user@example.com",
"plan": "pro",
"score": 42
},
"externalId": "user-123"
}'