{
  "openapi": "3.0.1",
  "info": {
    "title": "GitHub Startup & Emerging Company Finder",
    "description": "Discover emerging technology companies through real public GitHub development activity.",
    "version": "0.1",
    "x-build-id": "xQttLwBLv4E9h6GjW"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/coolinbex~github-startup-emerging-company-finder/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-coolinbex-github-startup-emerging-company-finder",
        "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/coolinbex~github-startup-emerging-company-finder/runs": {
      "post": {
        "operationId": "runs-sync-coolinbex-github-startup-emerging-company-finder",
        "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/coolinbex~github-startup-emerging-company-finder/run-sync": {
      "post": {
        "operationId": "run-sync-coolinbex-github-startup-emerging-company-finder",
        "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": {
          "keywords": {
            "title": "Keywords",
            "type": "array",
            "description": "Product, market, or repository keywords to search for.",
            "items": {
              "type": "string"
            },
            "default": [
              "AI"
            ]
          },
          "technologies": {
            "title": "Technologies",
            "type": "array",
            "description": "Technology terms to search for in repository text, topics, and descriptions.",
            "items": {
              "type": "string"
            }
          },
          "languages": {
            "title": "Languages",
            "type": "array",
            "description": "GitHub repository languages such as Python, TypeScript, Rust, or Go.",
            "items": {
              "type": "string"
            },
            "default": [
              "Python"
            ]
          },
          "createdAfter": {
            "title": "Repository Created After",
            "type": "string",
            "description": "ISO date used for repository discovery, not company age."
          },
          "createdBefore": {
            "title": "Repository Created Before",
            "type": "string",
            "description": "ISO date used for repository discovery, not company age."
          },
          "minimumStars": {
            "title": "Minimum Repository Stars",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum star count for repositories used during discovery. Stars are not treated as the primary startup signal.",
            "default": 0
          },
          "minimumContributors": {
            "title": "Minimum Recent Contributors",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum active contributors in the recent analysis window.",
            "default": 0
          },
          "minimumRecentActivity": {
            "title": "Minimum Recent Commits Or Releases",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum combined recent activity required after organization analysis.",
            "default": 0
          },
          "minimumRepositories": {
            "title": "Minimum Public Repositories",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum public repository count required for returned organizations.",
            "default": 1
          },
          "maximumRepositories": {
            "title": "Maximum Public Repositories",
            "minimum": 1,
            "type": "integer",
            "description": "Optional maximum public repository count to avoid very large organizations."
          },
          "maximumOrganizations": {
            "title": "Maximum Organizations",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "Maximum unique organizations to return in the Dataset.",
            "default": 10
          },
          "countries": {
            "title": "Countries Or Locations",
            "type": "array",
            "description": "Case-insensitive location terms to match against GitHub organization location.",
            "items": {
              "type": "string"
            }
          },
          "includeEstablishedCompanies": {
            "title": "Include Established Companies",
            "type": "boolean",
            "description": "Include organizations classified as established companies in the Dataset.",
            "default": false
          },
          "minimumEmergingScore": {
            "title": "Minimum Emerging Company Score",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Minimum emerging company score from 0 to 100 required for returned organizations.",
            "default": 0
          },
          "includeWebsiteEnrichment": {
            "title": "Include Website Enrichment",
            "type": "boolean",
            "description": "Fetch linked organization homepages for shallow public company and product evidence.",
            "default": false
          },
          "githubToken": {
            "title": "GitHub Token",
            "type": "string",
            "description": "Optional GitHub token. Prefer Apify secrets or environment variables."
          },
          "repositoryAnalysisLimit": {
            "title": "Repository Analysis Limit",
            "minimum": 5,
            "maximum": 200,
            "type": "integer",
            "description": "Maximum repositories sampled per organization.",
            "default": 10
          },
          "requestTimeoutSecs": {
            "title": "Request Timeout Seconds",
            "minimum": 5,
            "maximum": 60,
            "type": "integer",
            "description": "Timeout for GitHub and website operations where applicable.",
            "default": 20
          },
          "concurrency": {
            "title": "Concurrency",
            "minimum": 1,
            "maximum": 8,
            "type": "integer",
            "description": "Maximum concurrent organization analyses.",
            "default": 1
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}