Reference
API Documentation
Endpoint
POST/api/searchUnified endpoint for all query types. Returns structured intelligence data.
Parameters
type*query*fullNameadditionalInfoQuery Types
"phone"Carrier, location, linked accounts
"email"Domain, platforms, activity
"alias"Cross-platform, history
"social"Profiles, networks, metadata
"background"Identity, records, history
Examples
Request
POST /api/search
Content-Type: application/json
{
"type": "phone",
"query": "+1 555 123 4567"
}Response
{
"results": [
{
"id": "rec_01",
"confidence": "high",
"data": {
"name": "J. Doe",
"identifiers": ["+1 555 123 4567"],
"location": "New York, NY"
}
}
],
"meta": {
"timestamp": "2024-01-15T10:30:00Z",
"sources": 3
}
}Note — This interface connects to your configured backend at /api/search. Implement the endpoint to return results in the documented schema.