{
  "openapi": "3.0.1",
  "info": {
    "title": "Website Email & Phone Scraper — Contact Finder",
    "description": "Extract emails, phones, social links from any website. Deep scans contact pages. Detects tech stack and ad pixels. CSV export.",
    "version": "1.0",
    "x-build-id": "dj4GvJ27ZjdBTaUj0"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/intelscrape~contact-info-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-intelscrape-contact-info-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/intelscrape~contact-info-scraper/runs": {
      "post": {
        "operationId": "runs-sync-intelscrape-contact-info-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/intelscrape~contact-info-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-intelscrape-contact-info-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "urls": {
            "title": "🌐 Website URLs",
            "type": "array",
            "description": "Paste website URLs to scrape. We'll visit each one and extract every email, phone number, and social media link. You can paste full URLs (https://example.com) or just domains (example.com) — we'll handle both.",
            "items": {
              "type": "string"
            }
          },
          "searchQueries": {
            "title": "🔍 Google Maps Search Queries",
            "type": "array",
            "description": "Search Google Maps to discover businesses and their websites. Try: 'plumbers in Miami FL', 'dentists in Brooklyn NY', 'restaurants in Austin TX'. We'll find every matching business, grab their website URL, and scrape it for emails.",
            "items": {
              "type": "string"
            }
          },
          "maxResults": {
            "title": "🔢 Max Websites to Scrape",
            "minimum": 1,
            "maximum": 5000,
            "type": "integer",
            "description": "Maximum number of websites to process. Start with 10-20 to test, then scale up. Each website costs ~$0.005 base + $0.04 per email found.",
            "default": 50
          },
          "scrapeContactPages": {
            "title": "🔎 Deep Scan Contact Pages",
            "type": "boolean",
            "description": "Follow links to /contact, /about, /team, and /get-in-touch pages to find hidden email addresses. This finds 30-50% more emails but takes slightly longer. Recommended ON.",
            "default": true
          },
          "includePhones": {
            "title": "📞 Extract Phone Numbers",
            "type": "boolean",
            "description": "Extract US and international phone numbers from each website. Finds tel: links and phone patterns in the page text.",
            "default": true
          },
          "includeSocial": {
            "title": "📱 Extract Social Media Links",
            "type": "boolean",
            "description": "Find links to Facebook, Instagram, LinkedIn, Twitter/X, YouTube, TikTok, Pinterest, and Yelp profiles.",
            "default": true
          },
          "includeTechStack": {
            "title": "💻 Detect Tech Stack",
            "type": "boolean",
            "description": "Identify the website's CMS and framework: WordPress, Shopify, Wix, Squarespace, Webflow, Next.js, React, WooCommerce, BigCommerce, HubSpot, and more. Perfect for web design agencies prospecting outdated sites.",
            "default": true
          },
          "includePixels": {
            "title": "📊 Detect Ad Tracking Pixels",
            "type": "boolean",
            "description": "Find Facebook Pixel (with ID), Google Analytics (with GA/GTM ID), TikTok Pixel, LinkedIn Insight Tag, and Hotjar. Great for ad agencies to identify businesses already running paid ads.",
            "default": false
          },
          "maxContactPages": {
            "title": "Max Sub-Pages Per Website",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "How many internal pages to crawl per website (e.g. /contact, /about, /team). Higher = more emails found, but slower. 3 is the sweet spot.",
            "default": 3
          },
          "concurrency": {
            "title": "Parallel Scraping",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "How many websites to scrape at the same time. Higher = faster but uses more memory. 10 is a good default.",
            "default": 10
          },
          "webhookUrl": {
            "title": "🔗 Webhook URL",
            "type": "string",
            "description": "Automatically POST all results as JSON to this URL when the run finishes. Works with Zapier, Make.com, n8n, or your own API endpoint."
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}