Skip to main content
POST
/
search
cURL
curl --request POST \
  --url https://api.osint.ly/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "input": "<string>",
  "type": "Pseudonym"
}'
{
  "message": "The search was successfully started.",
  "search_id": "bac6b773-b46c-4d26-b902-3652d1710727"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
input
string
required
type
enum<string>
required
Available options:
Pseudonym,
Email Address,
IP Address,
Phone,
Domain,
Cryptocurrency

Response

Authentication successful

message
string
Example:

"The search was successfully started."

search_id
string
Example:

"bac6b773-b46c-4d26-b902-3652d1710727"