{
  "openapi": "3.0.1",
  "info": {
    "title": "GitHub Email Scraper - Contributors & Developer Lead Finder",
    "description": "GitHub email scraper and developer lead finder for recruiting and sales. Scrape repo contributors, org members or a GitHub user search into rich leads: email (profile + commit-mined), LinkedIn, X, company, location, followers, languages. No token needed. Export CSV, JSON or Excel.",
    "version": "0.1",
    "x-build-id": "KVxZ0SUjr1jZpfJFY"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/scrapers_lat~github-contributor-contacts-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-scrapers_lat-github-contributor-contacts-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/scrapers_lat~github-contributor-contacts-scraper/runs": {
      "post": {
        "operationId": "runs-sync-scrapers_lat-github-contributor-contacts-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/scrapers_lat~github-contributor-contacts-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-scrapers_lat-github-contributor-contacts-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": {
          "repos": {
            "title": "Repositories or organisations",
            "type": "array",
            "description": "Repositories as 'owner/repo' or full GitHub URLs (e.g. 'facebook/react'), and/or organisation names to scan their top repositories. One run can process many.",
            "items": {
              "type": "string"
            }
          },
          "usernames": {
            "title": "GitHub usernames",
            "type": "array",
            "description": "Specific GitHub usernames to enrich directly into developer-lead records.",
            "items": {
              "type": "string"
            }
          },
          "orgs": {
            "title": "Organisations (public members)",
            "type": "array",
            "description": "Organisation names whose public members you want to enrich as developer leads (e.g. 'apify').",
            "items": {
              "type": "string"
            }
          },
          "userSearchQuery": {
            "title": "GitHub user search query",
            "type": "string",
            "description": "Raw GitHub user-search query (e.g. 'language:rust location:berlin followers:>500'). Combined with the filter fields below."
          },
          "userLanguage": {
            "title": "Search: main language",
            "type": "string",
            "description": "Find developers whose primary language is this (e.g. 'python', 'go', 'rust')."
          },
          "userLocation": {
            "title": "Search: location",
            "type": "string",
            "description": "Find developers whose public profile location matches this (e.g. 'London', 'Germany')."
          },
          "minFollowers": {
            "title": "Minimum followers",
            "minimum": 0,
            "type": "integer",
            "description": "Only keep developers with at least this many followers (applies to user search and to enriched records)."
          },
          "minContributions": {
            "title": "Minimum contributions",
            "minimum": 0,
            "type": "integer",
            "description": "For repository contributors, only keep those with at least this many contributions to the repo."
          },
          "maxContributors": {
            "title": "Max developers",
            "minimum": 1,
            "maximum": 1000000,
            "type": "integer",
            "description": "Maximum number of developers to collect and enrich with contact details."
          },
          "includeEmail": {
            "title": "Include email (profile + commit-derived)",
            "type": "boolean",
            "description": "Capture the public profile email and mine public commit metadata for the developer's email. On by default.",
            "default": true
          },
          "includeSocial": {
            "title": "Include social accounts",
            "type": "boolean",
            "description": "Capture verified social accounts linked on the profile (LinkedIn, X, Mastodon, Bluesky, YouTube, personal site). On by default.",
            "default": true
          },
          "includeRepos": {
            "title": "Include repo signals (languages, stars, pinned)",
            "type": "boolean",
            "description": "Add top languages, total stars across owned repos, top repositories and pinned repositories. Adds extra requests, so off by default.",
            "default": false
          },
          "deepEmailSearch": {
            "title": "Deep email search",
            "type": "boolean",
            "description": "Recover a work email for developers who hide it on their profile, by reading their own repositories' public commit authorship. Big lift in email coverage; costs one extra API call per developer.",
            "default": true
          },
          "onlyWithEmail": {
            "title": "Only developers with an email",
            "type": "boolean",
            "description": "Return only developers for whom a public email was recovered.",
            "default": false
          },
          "onlyHireable": {
            "title": "Only hireable developers",
            "type": "boolean",
            "description": "Return only developers who set the 'available for hire' flag on their profile.",
            "default": false
          },
          "onlyCorporateEmail": {
            "title": "Only corporate emails",
            "type": "boolean",
            "description": "Keep only developers whose email is on a company domain (drops Gmail, Outlook, iCloud, Proton and other free mailboxes).",
            "default": false
          },
          "excludeOrganizations": {
            "title": "Exclude organisation accounts",
            "type": "boolean",
            "description": "Drop GitHub organisation accounts and keep only individual developers.",
            "default": false
          },
          "minTotalStars": {
            "title": "Minimum total stars",
            "minimum": 0,
            "type": "integer",
            "description": "Keep only developers whose own public repositories have at least this many stars in total."
          },
          "minPublicRepos": {
            "title": "Minimum public repositories",
            "minimum": 0,
            "type": "integer",
            "description": "Keep only developers with at least this many public repositories."
          },
          "companyContains": {
            "title": "Company contains",
            "type": "string",
            "description": "Keep only developers whose company field contains this text (case-insensitive), e.g. \"stripe\"."
          },
          "locationContains": {
            "title": "Location contains",
            "type": "string",
            "description": "Keep only developers whose location contains this text (case-insensitive), e.g. \"berlin\"."
          },
          "activeSince": {
            "title": "Active since (ISO date)",
            "type": "string",
            "description": "Keep only developers who pushed public code on or after this date, e.g. 2026-01-01. Filters out dormant accounts."
          },
          "excludeBots": {
            "title": "Exclude bot accounts",
            "type": "boolean",
            "description": "Skip bot accounts such as dependabot, github-actions and other [bot] logins. On by default.",
            "default": true
          },
          "since": {
            "title": "Commits since (ISO date)",
            "type": "string",
            "description": "Only mine commit emails from commits after this ISO date (e.g. '2025-01-01T00:00:00Z')."
          },
          "until": {
            "title": "Commits until (ISO date)",
            "type": "string",
            "description": "Only mine commit emails from commits before this ISO date."
          },
          "githubToken": {
            "title": "GitHub token (optional)",
            "type": "string",
            "description": "Optional personal access token to raise the request rate limit for large repositories and searches."
          },
          "withLeadScore": {
            "title": "AI lead score (paid add-on)",
            "type": "boolean",
            "description": "Use AI to qualify each developer as a B2B outreach lead (0-100 score, hot/warm/cold tier, rationale). Charged per developer scored. Paid plans only.",
            "default": false
          },
          "withProfileSummary": {
            "title": "AI profile summary (paid add-on)",
            "type": "boolean",
            "description": "Use AI to write a concise professional summary of each developer. Charged per developer summarised. Paid plans only.",
            "default": false
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}