API Reference/Documentation
GitHubDashboard
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

ParameterTypeDescription
typereq
string
leadopportunitypartner
Document type
idreq
stringDocument ID
datareq
objectDocument data to index
Request
HTTP
http
POST https://api.leadron.io/v1/search/index
X-API-Key: ldr_live_sk_a1b2c3d4e5f6g7h8i9j0
Content-Type: application/json
Body
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"
  }
}

Search Leads

Search Opportunities

Search Partners

Duplicates

Autocomplete

Remove from Index