Quick start
Create an API key and run your first SearchIn query.
Get from zero to a completed search in three steps.
Create an API key
Sign in, switch to the workspace that should pay (Personal or a team), then open Dashboard → API keys. Create a key and copy the secret immediately — it is shown only once.
Personal keys always bill your own wallet. Team keys always bill that team. Keys are prefixed with ov_ and hashed at rest.
Call the production API
Send JSON to https://apiv1.osintverse.com with the x-api-key header.
curl -X POST "https://apiv1.osintverse.com/v1/search" \
-H "Content-Type: application/json" \
-H "x-api-key: ov_your_api_key" \
-d '{"provider":"leakradar-lite","input_type":"email","query":"[email protected]"}'Confirm the provider pair
Call GET /v1/providers (no auth) for live input types and prices, then pick a combination from the pricing matrix.
Most providers return results in the POST response when status is completed. FaceCheck image searches may return running — poll until they finish.
Balance required
Insufficient credits fail the search with status failed and do not charge. Top up at Billing before you automate.
Next
- Authentication — header, rate limits, and key lifecycle.
- Code examples — cURL, Python, and JavaScript.
- Providers — what each source returns.