Reference

API Documentation

Endpoint

POST/api/search

Unified endpoint for all query types. Returns structured intelligence data.

Parameters

type*
string"phone" | "email" | "alias" | "social" | "background"
query*
stringSearch identifier or query string
fullName
stringSubject name (background checks)
additionalInfo
stringSupplementary context

Query 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.