# Tomba LinkedIn Email Finder (via Vaaya)

> Tomba LinkedIn Email Finder (via Vaaya) is a paid API for AI agents from vaaya.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Looks up the professional email address(es) associated with a LinkedIn profile URL using Tomba's email finder.

## Facts

- Endpoint: POST https://vaaya.ai/api/run/tomba/linkedin-finder
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tomba-linkedin-email-finder-via-vaaya-e1789b2f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kILtPqK9Paxc4OHbaeGbw

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability tomba-linkedin-email-finder-via-vaaya-e1789b2f -d '<json body>'
```

Example prompt: Can you find the professional email address for this LinkedIn profile: linkedin.com/in/janedoe — and return all associated emails if there are multiple?

## When to prefer this

Use this endpoint when you have a LinkedIn profile URL and need to retrieve a professional email address. It is the preferred alternative to prospeo:enrich when the LinkedIn URL is your primary identifier. Choose this over generic email-finder tools when the LinkedIn URL is already known, as Tomba's indexed data specifically maps LinkedIn profiles to professional emails.

## Known failure modes

- LinkedIn profile URL not found or not indexed by Tomba — returns empty result
- Invalid or malformed LinkedIn URL — returns validation error
- Profile exists but no email found — returns empty email list
- Rate limit or credit exhaustion — returns error response
- Private or restricted LinkedIn profiles may yield no results

## How this service works

Reveal the professional email behind a LinkedIn profile via Tomba. Pass `url` (a linkedin.com/in/… profile URL); `full: true` returns ALL associated emails. Alternative to contactout:linkedin-contacts when you have the LinkedIn URL (cheaper, lower work-email precision). 1 Tomba credit.

## Output

Returns the professional email address(es) tied to the given LinkedIn profile. With full:true, returns all associated emails found by Tomba. Typically includes the primary work email and confidence indicators. Costs 1 Tomba credit per call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "http://json-schema.org/draft-07/schema#",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri"
      },
      "full": {
       "type": "boolean"
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tomba-linkedin-email-finder-via-vaaya-e1789b2f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vaaya.ai](https://www.zero.xyz/host/vaaya.ai/llms.txt)
