---
title: "Employee Finder"
method: POST
path: "/v1/people/employee-finder"
tags: ["People Enrichment"]
---

# Employee Finder

`POST /v1/people/employee-finder`

Find employees at a company. Returns a list of employees with their profiles, titles, and locations. Costs 0.05 credits per employee returned — free when no employees are found.

## Request body

- object
  - `company_domain` string — Company website domain (preferred — more accurate than company_name)
  - `company_name` string — Company name. Use if domain is not available.
  - `limit` integer — Maximum number of employees to return

## Response `200`

Successful response with employee list

- object
  - `employees` object[]
    - `first_name` string
    - `last_name` string
    - `full_name` string
    - `profile_url` string
    - `job_title` string
    - `location` string
  - `total_count` integer — Total employees found (may exceed returned count when limit is set)
  - `credits_consumed` number — Credits used (0.05 per employee returned)
  - `message` 'Employees found.' | 'No employees found for this company.' — Possible success messages for employee finder

## Other responses

- `400` — Bad Request - The request was malformed or contains invalid parameters. **Common causes:** - Missing required fields - Invalid field format (e.g., malformed email) - Invalid JSON syntax - Invalid parameter values
- `401` — Unauthorized - Authentication failed. **Common causes:** - Missing X-API-Key header - Invalid or expired API key - Malformed API key
- `402` — Payment Required - Insufficient credits for this request. **Action required:** Add credits to your account at https://app.leadmagic.io/settings/billing
- `404` — Not Found - The requested resource could not be found. **Common causes:** - Profile doesn't exist or is not accessible - Company not found in our database - Invalid URL or identifier
- `429` — Too Many Requests - Rate limit exceeded. **Action required:** Check the `Retry-After` header for when to retry. **Headers returned:** - `Retry-After`: Seconds until you can retry - `RateLimit-Limit`: Your limit per minute - `RateLimit-Remaining`: Remaining requests this minute - `RateLimit-Reset`: Seconds until limit resets
- `500` — Internal Server Error - Something went wrong on our end. **Action required:** Wait 30 seconds and retry. If the problem persists, contact support@leadmagic.io

---

[API](https://skmtc.net/leadmagic/apis/leadmagic-api.md) · [All operations](https://skmtc.net/leadmagic/apis/leadmagic-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/leadmagic/leadmagic-api/revisions/aa19cf9bc46a/schema)
