# Find Pricing, Careers, About and Contact Pages in One Pass

**Use case:** 

Get the pricing, careers, about and contact page for each company in a single pass. One Clay-ready row per domain with a URL and a score per page type.

## Input

```json
{
  "domain": "stripe.com",
  "domains": [
    "hubspot.com",
    "zendesk.com",
    "twilio.com",
    "segment.com",
    "asana.com"
  ],
  "companies": [
    {
      "name": "Wartsila",
      "country": "FI"
    }
  ],
  "pageTypes": [
    "pricing",
    "careers",
    "about",
    "contact"
  ],
  "mode": "locate",
  "extractionFields": [
    "copyright",
    "legal_entity",
    "emails",
    "phones",
    "addresses",
    "social_links",
    "meta",
    "last_modified",
    "canonical",
    "schema_org",
    "forms",
    "ctas",
    "tech_markers"
  ],
  "extractPageTypeFields": "true",
  "knownUrls": {
    "pricing": "https://stripe.com/pricing"
  },
  "maxPagesPerType": "4",
  "maxRequestsPerInput": "60",
  "concurrency": "10",
  "allowRender": "true",
  "languageHints": [
    "de",
    "fr"
  ],
  "skipCache": "false",
  "source_tag": "page-finder-extractor:page-finder-find-gtm-page-set"
}
```

## Output

```json
{
  "input_key": {
    "label": "Input Key",
    "format": "string"
  },
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "company_name": {
    "label": "Company Name",
    "format": "string"
  },
  "mode": {
    "label": "Mode",
    "format": "string"
  },
  "page_types_requested": {
    "label": "Page Types Requested",
    "format": "string"
  },
  "page_types_found": {
    "label": "Page Types Found",
    "format": "integer"
  },
  "page_types_not_found": {
    "label": "Page Types Not Found",
    "format": "integer"
  },
  "page_types_undetermined": {
    "label": "Page Types Undetermined",
    "format": "integer"
  },
  "best_confidence": {
    "label": "Best Confidence",
    "format": "number"
  },
  "findings_count": {
    "label": "Findings Count",
    "format": "integer"
  },
  "findings_rejected_count": {
    "label": "Findings Rejected Count",
    "format": "integer"
  },
  "coverage": {
    "label": "Coverage",
    "format": "string"
  },
  "fetch_status": {
    "label": "Fetch Status",
    "format": "string"
  },
  "render_mode": {
    "label": "Render Mode",
    "format": "string"
  },
  "pages_reached": {
    "label": "Pages Reached",
    "format": "integer"
  },
  "requests_made": {
    "label": "Requests Made",
    "format": "integer"
  },
  "blocked_pages": {
    "label": "Blocked Pages",
    "format": "integer"
  },
  "javascript_only_pages": {
    "label": "Javascript Only Pages",
    "format": "integer"
  },
  "robots_disallowed_paths": {
    "label": "Robots Disallowed Paths",
    "format": "integer"
  },
  "homepage_links_seen": {
    "label": "Homepage Links Seen",
    "format": "integer"
  },
  "sitemap_urls_seen": {
    "label": "Sitemap Urls Seen",
    "format": "integer"
  },
  "cache_hit": {
    "label": "Cache Hit",
    "format": "boolean"
  },
  "run_date": {
    "label": "Run Date",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Page Finder and Extractor Company Website Pages for Clay](https://apify.com/mambalabs/page-finder-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/mambalabs/page-finder-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/mambalabs/page-finder-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).
