# Bytemine LinkedIn Profile Enrichment

> Bytemine LinkedIn Profile Enrichment is a paid API for AI agents from agents.bytemine.ai, paid per call via MPP or x402, $0.01/call, status unknown (last checked 2026-09-15).

Enriches a LinkedIn profile URL into full professional identity, work history, education, seniority, function, and auto-resolved work email.

## Facts

- Endpoint: POST https://agents.bytemine.ai/functions/v1/api-gateway/v1/enrich/linkedin-profile
- Price: $0.01/call
- Payment: MPP, x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Provider: agents.bytemine.ai
- Website: https://agents.bytemine.ai
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agents-bytemine-ai-bytemine-linkedin-profile-enrichment-ca511671
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_k4Vq-L5wKB19fdnfYTtHj

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 agents-bytemine-ai-bytemine-linkedin-profile-enrichment-ca511671 -d '<json body>'
```

Example prompt: Can you enrich this LinkedIn profile for me — https://www.linkedin.com/in/janedoe — and get her current job title, seniority, department, company, and work email if available?

## When to prefer this

Use this endpoint when you have a LinkedIn profile URL and need comprehensive professional identity data including work email, seniority, department, and full work history in a single call. Prefer over contact search endpoints when the LinkedIn URL is already known and you want a guaranteed per-profile enrichment with freshness metadata. No cost when the profile is not found.

## Known failure modes

- Profile not found — found returns false and no charge is applied
- LinkedIn URL malformed or not a valid profile URL — validation error returned
- Profile exists but work email is not discoverable — work_email field absent or null
- Profile is flagged as deleted via profile_status field
- Stale data — data_last_updated may indicate the record hasn't been refreshed recently

## How this service works

Bytemine is a B2B data platform for sales and go to market teams. It covers contact and company search across 135M professionals and 10M companies, contact and company enrichment, LinkedIn profile search and enrichment, live company intelligence read from a company's own web presence, technographics, buying intent scoring, and hiring, funding, job posting, and job change signals. Search results bill per record returned, enrichment bills only on a successful match, and count queries are free. This server is a pay-per-use, transparent proxy in front of Bytemine's own API: it handles identity, payment, and proxying. Agents can purchase autonomously or with their human's approval. This document is the source of truth for agents: it lists the complete verified paid surface with each operation's live price in its x-payment-info. Endpoints not listed here are not part of the supported catalog. The live catalog at /manifest.json is authoritative for prices and any free included units (prices[].includedUnits) - some meters include free usage per account before any charge, reserved for agents claimed by a human with a verified email.

## Output

Returns a found boolean (false means no charge), and when found, a contact object with full_name, job_title, seniority, department, work_email, company_name, company_domain, linkedin_headline, work_experience array, education array, profile_status (active or deleted), data_last_updated, and data_first_seen timestamps. Also returns credits_used.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "linkedin_url": {
   "type": "string",
   "description": "Full LinkedIn profile URL."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "found": {
   "type": "boolean"
  },
  "contact": {
   "type": "object",
   "properties": {
    "education": {
     "type": "array",
     "items": {
      "type": "object"
     }
    },
    "full_name": {
     "type": "string"
    },
    "job_title": {
     "type": "string"
    },
    "seniority": {
     "type": "string"
    },
    "department": {
     "type": "string"
    },
    "work_email": {
     "type": "string"
    },
    "company_name": {
     "type": "string"
    },
    "direct_dials": {
     "type": "array",
     "items": {
      "type": "string"
     }
    },
    "email_source": {
     "type": "string"
    },
    "company_domain": {
     "type": "string"
    },
    "profile_status": {
     "enum": [
      "active",
      "deleted"
     ],
     "type": "string"
    },
    "data_first_seen": {
     "type": "string"
    },
    "work_experience": {
     "type": "array",
     "items": {
      "type": "object"
     }
    },
    "data_last_updated": {
     "type": "string"
    },
    "linkedin_headline": {
     "type": "string"
    }
   }
  },
  "credits_used": {
   "type": "integer"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-bytemine-ai-bytemine-linkedin-profile-enrichment-ca511671/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.bytemine.ai](https://www.zero.xyz/host/agents.bytemine.ai/llms.txt)
