Platform
Search
Full-text search for leads, opportunities, and partners. Index documents, find duplicates with fuzzy matching, and autocomplete suggestions.
Full-text search
Search leads, opportunities, partners
Indexing
Index single or bulk documents
Autocomplete
Suggestions and duplicate detection
Indexing
Body Parameters
| Parameter | Type | Description |
|---|---|---|
typereq | stringleadopportunitypartner | Document type |
idreq | string | Document ID |
datareq | object | Document data to index |
Request
HTTP
http
POST https://api.leadron.io/v1/search/index
X-API-Key: ldr_live_sk_a1b2c3d4e5f6g7h8i9j0
Content-Type: application/jsonBody
json
1
2
3
4
5
6
7
8
9
{
"type": "lead",
"id": "6789abcdef012345",
"data": {
"email": "jane@example.com",
"firstName": "Jane",
"lastName": "Doe"
}
}Response200OK
200 Response
json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"success": true,
"status": 200,
"message": "Indexed",
"data": {
"type": "lead",
"id": "6789abcdef012345",
"indexedAt": "2026-02-08T14:30:00.000Z"
},
"meta": {
"timestamp": "2026-02-08T14:30:00.000Z",
"version": "v1"
}
}