# LinkedPanda Verified Work Email Lookup

> LinkedPanda Verified Work Email Lookup is a paid API for AI agents from api.linkedpanda.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Looks up the verified work email address associated with a LinkedIn profile by LinkedIn ID

## Facts

- Endpoint: GET https://api.linkedpanda.com/agent/v1/profiles/email
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-linkedpanda-com-203fe472
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3676W7iQr867jU8Hozz2B

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 api-linkedpanda-com-203fe472
```

Example prompt: Can you look up the verified work email for the LinkedIn profile with ID 'john-smith-b2b42' so I can reach out to him directly?

## When to prefer this

Use this endpoint when you have a specific LinkedIn profile ID and need to retrieve a verified work email address for B2B outreach, sales prospecting, or contact enrichment. Prefer this over bulk endpoints when enriching a single lead and over generic email-finding tools when you specifically have a LinkedIn profile as your starting point.

## Known failure modes

- LinkedIn ID not found — returns null or empty email with a not-found status
- Profile has no associated work email — returns empty email field
- Invalid or malformed LinkedIn ID — returns error or empty response
- Payment failure ($0.05 USDC via x402) — request not processed
- Rate limiting — too many requests in a short period
- Profile is private or email is hidden — no email returned

## How this service works

Verified work-email lookup for a LinkedIn profile

## Output

Returns the verified work email address associated with the given LinkedIn profile ID and a status field indicating the verification state of that email (e.g. verified, unverified, not found).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "linkedinId": {
       "type": "string"
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": true
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "email": {
       "type": "string"
      },
      "status": {
       "type": "string"
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": true
  }
 },
 "additionalProperties": true
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "email": "alex@example.co",
  "status": "valid"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-linkedpanda-com-203fe472/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.linkedpanda.com](https://www.zero.xyz/host/api.linkedpanda.com/llms.txt)
