# Enrich Layer — Pipedream Connect

> Pull rich data about people and companies

- API slug: `enrich_layer` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Data Analytics
- Website: https://enrichlayer.com/
- This page (HTML): https://pipedream.com/apps/enrich-layer
- Tools: 25 actions · 0 triggers

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: enrich_layer`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "enrich_layer",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Check Disposable Email:
const result = await mcp.callTool({
  name: "enrich_layer-check-disposable-email",
  arguments: {
    email: "Email Address",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## API proxy

For a Enrich Layer endpoint with no pre-built tool, the proxy forwards your request with the connected user's credentials attached.

```bash
# The path segment is the target URL, URL-safe base64 encoded:
# https://enrichlayer.com/api/v2/credit-balance

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9lbnJpY2hsYXllci5jb20vYXBpL3YyL2NyZWRpdC1iYWxhbmNl?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
  -H "Authorization: Bearer {access_token}" \
  -H "x-pd-environment: production"
```

Docs: [API proxy guide](https://pipedream.com/docs/connect/api-proxy.md)

## SDK

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "enrich_layer-check-disposable-email",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    enrich_layer: { authProvisionId: "apn_xxxxxxx" },
    email: "Email Address",
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (25)

### `enrich_layer-check-disposable-email` — Check Disposable Email (Read-only)

Check if an email address belongs to a disposable email service. Cost: 0 credits. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/check-disposable-email.md

### `enrich_layer-get-company-id-lookup` — Get Company ID Lookup (Read-only)

Look up the vanity ID of a company by its numeric ID. Cost: 0 credits. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-company-id-lookup.md

### `enrich_layer-get-company-lookup` — Get Company Lookup (Read-only)

Resolve a company profile from company name, domain name, and/or location. Cost: 2 credits per successful request. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-company-lookup.md

### `enrich_layer-get-company-profile` — Get Company Profile (Read-only)

Get structured data of a Company Profile from a professional network URL. Cost: 1 credit per successful request. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-company-profile.md

### `enrich_layer-get-company-profile-picture` — Get Company Profile Picture (Read-only)

Get the profile picture of a company from cached profiles. Cost: 0 credits. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-company-profile-picture.md

### `enrich_layer-get-credit-balance` — Get Credit Balance (Read-only)

View your Enrich Layer API credit balance. Cost: 0 credits. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-credit-balance.md

### `enrich_layer-get-employee-count` — Get Employee Count (Read-only)

Get the total number of employees of a company from various sources. Cost: 1 credit per successful request. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-employee-count.md

### `enrich_layer-get-employee-listing` — Get Employee Listing (Read-only)

Get a list of employees of a company. Cost: 3 credits per employee returned. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-employee-listing.md

### `enrich_layer-get-employee-search` — Get Employee Search (Read-only)

Search employees of a target company by their job title. Cost: 10 credits per successful request + 3 credits per employee returned. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-employee-search.md

### `enrich_layer-get-job-listing-count` — Get Job Listing Count (Read-only)

Count the number of jobs posted by a company on professional networks. Cost: 2 credits per successful request. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-job-listing-count.md

### `enrich_layer-get-job-profile` — Get Job Profile (Read-only)

Get structured data of a Job Profile from a professional network job URL. Cost: 2 credits per successful request. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-job-profile.md

### `enrich_layer-get-job-search` — Get Job Search (Read-only)

List jobs posted by a company on professional networks. Cost: 2 credits per successful request. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-job-search.md

### `enrich_layer-get-person-lookup` — Get Person Lookup (Read-only)

Look up a person with a name and company information to find their professional network profile. Cost: 2 credits per successful request. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-person-lookup.md

### `enrich_layer-get-person-profile` — Get Person Profile (Read-only)

Get structured data of a Person Profile from a professional network URL. Cost: 1 credit per successful request. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-person-profile.md

### `enrich_layer-get-person-profile-picture` — Get Person Profile Picture (Read-only)

Get the profile picture of a person from cached profiles. Cost: 0 credits. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-person-profile-picture.md

### `enrich_layer-get-personal-contact-number` — Get Personal Contact Number (Read-only)

Find personal phone numbers associated with a given social media profile. Cost: 1 credit per contact number returned. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-personal-contact-number.md

### `enrich_layer-get-personal-email` — Get Personal Email (Read-only)

Find personal email addresses associated with a given social media profile. Cost: 1 credit per email returned. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-personal-email.md

### `enrich_layer-get-reverse-contact-number-lookup` — Get Reverse Contact Number Lookup (Read-only)

Find social media profiles from a contact phone number. Cost: 3 credits per successful request. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-reverse-contact-number-lookup.md

### `enrich_layer-get-reverse-email-lookup` — Get Reverse Email Lookup (Read-only)

Resolve social media profiles correlated from an email address. Works with both personal and work emails. Cost: 3 credits per successful request. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-reverse-email-lookup.md

### `enrich_layer-get-role-lookup` — Get Role Lookup (Read-only)

Find the person who most closely matches a specified role in a company (e.g., the CTO of Apple). Cost: 3 credits per successful request. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-role-lookup.md

### `enrich_layer-get-school-profile` — Get School Profile (Read-only)

Get structured data of a School Profile from a professional network URL. Cost: 1 credit per successful request. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-school-profile.md

### `enrich_layer-get-student-listing` — Get Student Listing (Read-only)

Get a list of students of a school. Cost: 3 credits per student returned. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-student-listing.md

### `enrich_layer-get-work-email-lookup` — Get Work Email Lookup (Read-only)

Look up the work email address of a person from their professional network profile URL. Emails are verified with 95%+ deliverability guarantee. Cost: 3 credits per successful request. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/get-work-email-lookup.md

### `enrich_layer-search-companies` — Search Companies (Read-only)

Search for companies that meet a set of criteria. Returns up to 10,000,000 results. Cost: 3 credits per company URL returned. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/search-companies.md

### `enrich_layer-search-people` — Search People (Read-only)

Search for people who meet a set of criteria. Returns a single page of results per call — use the next_page URL from the response to retrieve subsequent pages. Cost: 3 credits per profile URL returned. See the documentation.

Full schema: https://pipedream.com/apps/enrich-layer/actions/search-people.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
