Get a person's emails straight from their LinkedIn profile URL via ContactOut (r
Get a person's emails straight from their LinkedIn profile URL via ContactOut (recruiter-grade data; returns WORK and PERSONAL emails — no name+domain guessing). Pass `profile` (a linkedin.com/in/... URL); set `include_phone: true` to also get phone numbers (priced higher — phone credits are scarcer). The premium rung above tomba/icypeas email finders: use it when you have the LinkedIn URL, or when the cheaper finders miss. Response nests under `profile`: `{ email: [...], work_email: [...], per…
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://vaaya.ai/api/run/contactout/linkedin-contacts
| Category | Everything else |
|---|---|
| Provider host | vaaya.ai |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 12 from 6 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.1 | 318 ms |
Example input (from the provider)
{
"body": {
"include_phone": false,
"profile": "https://www.linkedin.com/in/satyanadella"
},
"bodyType": "json",
"method": "POST",
"pathParams": {},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"include_phone": {
"type": "boolean"
},
"profile": {
"format": "uri",
"type": "string"
}
},
"required": [
"profile"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"pathParams": {
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}