# Example: Website Contact & Outreach Readiness Audit

**Use case:** 

Analyze public websites for contact details, outreach readiness, contact score, recommended contact channel, and missing contact signals.

## Input

```json
{
  "urls": [
    "https://www.apify.com",
    "https://www.python.org"
  ],
  "maxPagesPerSite": 8,
  "followContactPages": true,
  "includeSocialProfiles": true,
  "includePhones": true,
  "requestTimeoutSecs": 15,
  "riskOnly": false,
  "maxItems": 50,
  "outputMode": "summary"
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "link"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "outreach_readiness": {
    "label": "Readiness",
    "format": "text"
  },
  "risk_level": {
    "label": "Risk",
    "format": "text"
  },
  "contact_score": {
    "label": "Score",
    "format": "number"
  },
  "recommended_contact_channel": {
    "label": "Best channel",
    "format": "text"
  },
  "email_count": {
    "label": "Emails",
    "format": "number"
  },
  "phone_count": {
    "label": "Phones",
    "format": "number"
  },
  "social_profile_count": {
    "label": "Socials",
    "format": "number"
  },
  "has_contact_page": {
    "label": "Contact page",
    "format": "boolean"
  },
  "has_imprint_page": {
    "label": "Imprint/legal",
    "format": "boolean"
  },
  "has_privacy_page": {
    "label": "Privacy",
    "format": "boolean"
  },
  "recommendation": {
    "label": "Recommendation",
    "format": "text"
  },
  "issues": {
    "label": "Issues",
    "format": "array"
  }
}
```

## About this Actor

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