Getting Started

The Untrust Labs API is a code-first REST/JSON API for OSINT investigations: run account-intelligence modules and searches across selectors (email, phone, username, name).

Base URL

https://api.untru.st

Authentication

Every /v1/* endpoint requires a Bearer API key. Create a key from your dashboard at app.untru.st, then send it in the Authorization header:

curl "https://api.untru.st/v1/search?selector=username&value=example" \
  -H "Authorization: Bearer YOUR_API_KEY"

Each successful /v1/search call debits one credit from your account.

Endpoints

MethodPathDescription
GET/v1/catalogList the available OSINT modules.
GET/v1/searchRun a search for a selector/value across modules.
GET/versionBuild and version info.

See the full API Reference for parameters, response schemas, and try-it examples.


Did this page help you?