# Extract public contact details from Apify

**Use case:** 

Extract public emails, phone numbers, and social links from the Apify website while respecting robots rules.

## Input

```json
{
  "domains": [
    "apify.com"
  ],
  "checkPages": [
    "",
    "/contact",
    "/about"
  ],
  "maxPagesPerDomain": 3,
  "maxConcurrency": 1
}
```

## Output

```json
{
  "input": {
    "label": "Input",
    "format": "text"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "found": {
    "label": "Found",
    "format": "boolean"
  },
  "bestContact": {
    "label": "Best contact",
    "format": "object"
  },
  "contactabilityScore": {
    "label": "Contactability",
    "format": "number"
  },
  "contactabilityBand": {
    "label": "Contactability band",
    "format": "text"
  },
  "confidenceBand": {
    "label": "Evidence confidence",
    "format": "text"
  },
  "recommendedAction": {
    "label": "Recommended action",
    "format": "text"
  },
  "actionPriority": {
    "label": "Action priority",
    "format": "text"
  },
  "safeToAutomate": {
    "label": "Safe to automate",
    "format": "boolean"
  },
  "observedAt": {
    "label": "Observed at",
    "format": "date"
  },
  "freshness": {
    "label": "Evidence freshness",
    "format": "object"
  },
  "dataGaps": {
    "label": "Data gaps",
    "format": "array"
  },
  "failureType": {
    "label": "Failure type",
    "format": "text"
  },
  "retryable": {
    "label": "Retryable",
    "format": "boolean"
  },
  "emails": {
    "label": "Emails (own)",
    "format": "array"
  },
  "personalEmails": {
    "label": "Personal-style emails (heuristic)",
    "format": "array"
  },
  "genericEmails": {
    "label": "Role-based emails",
    "format": "array"
  },
  "emailSources": {
    "label": "Email evidence",
    "format": "array"
  },
  "thirdPartyEmails": {
    "label": "Third-party emails",
    "format": "array"
  },
  "phones": {
    "label": "Phones",
    "format": "array"
  },
  "socials": {
    "label": "Socials",
    "format": "object"
  },
  "sourcePages": {
    "label": "Source pages",
    "format": "array"
  },
  "robotsDisallowed": {
    "label": "Blocked by robots.txt",
    "format": "array"
  },
  "partial": {
    "label": "Partial (page unavailable/cut off)",
    "format": "boolean"
  },
  "structuredDataFound": {
    "label": "Org markup found",
    "format": "boolean"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Website Public Contact Finder & Enrichment](https://apify.com/zinin/website-contact-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zinin/website-contact-extractor) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/zinin/website-contact-extractor.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
