{
  "openapi": "3.0.1",
  "info": {
    "title": "AI Research Labs Career Tracker",
    "description": "Track open roles across 34 AI labs and AI companies: OpenAI, Anthropic, xAI, Cohere, Perplexity, Databricks, Stripe, Harvey, ElevenLabs, Sierra, Notion, Figma, Ramp, Vercel and more. Normalised across Greenhouse, Ashby and Lever with parsed pay ranges plus research, visa and compute signals.",
    "version": "1.0",
    "x-build-id": "0FdU0p1UVAinIVAGK"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/primesieve~ai-research-labs-tracker/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-primesieve-ai-research-labs-tracker",
        "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/primesieve~ai-research-labs-tracker/runs": {
      "post": {
        "operationId": "runs-sync-primesieve-ai-research-labs-tracker",
        "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/primesieve~ai-research-labs-tracker/run-sync": {
      "post": {
        "operationId": "run-sync-primesieve-ai-research-labs-tracker",
        "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": {
          "labs": {
            "title": "AI Labs to Track",
            "type": "array",
            "description": "Which labs to scrape. Leave empty to track all 34 pre-configured boards. Available keys: openai, anthropic, xai, cohere, perplexity, cerebras, suno, poolside, character, sierra, harvey, elevenlabs, notion, langchain, ramp, figma, vercel, deepgram, assemblyai, midjourney, pika, runway, databricks, snowflake, scaleai, supabase, stripe, plaid, brex, mercury, airtable, vanta, linear, verkada",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "customBoards": {
            "title": "Custom ATS Boards",
            "type": "array",
            "description": "Add boards outside the pre-configured list. Format 'ats:board-slug'. Supported ATS values: greenhouse, lever, ashby. Example: 'greenhouse:somecompany'.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "keywords": {
            "title": "Keyword Filters (job title)",
            "type": "array",
            "description": "Case-insensitive substring match against job titles. Example: ['research', 'scientist', 'alignment'].",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "departments": {
            "title": "Department / Team Filters",
            "type": "array",
            "description": "Case-insensitive substring match against department, team, or office name.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "locations": {
            "title": "Location Filters",
            "type": "array",
            "description": "Case-insensitive substring match against any of the posting's locations.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "remoteOnly": {
            "title": "Remote Only",
            "type": "boolean",
            "description": "Return only postings the employer marks as remote.",
            "default": false
          },
          "employmentTypes": {
            "title": "Employment Types",
            "type": "array",
            "description": "Exact match on employment type. Typical values: Full-time, Part-time, Contract, Internship, Unknown.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "postedWithinDays": {
            "title": "Posted Within (days)",
            "minimum": 0,
            "maximum": 365,
            "type": "integer",
            "description": "Only postings first published within the last N days. Set 0 for no limit.",
            "default": 30
          },
          "maxJobsPerLab": {
            "title": "Max Jobs Per Lab",
            "minimum": 0,
            "maximum": 2000,
            "type": "integer",
            "description": "Cap the number of postings returned per lab. Set 0 for no limit.",
            "default": 200
          },
          "minSalaryUsd": {
            "title": "Minimum Posted Salary (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Drop postings whose employer-listed pay range tops out below this figure. Only applies to postings that publish a range; postings without a published range are excluded when this is set.",
            "default": 0
          },
          "includeDescription": {
            "title": "Include Full Job Descriptions",
            "type": "boolean",
            "description": "Include the full plain-text job description in each row. Description text is always read to compute the research-area, visa and compute signals; enabling this only adds it to the output (larger dataset).",
            "default": false
          },
          "enrichWithResearchAreas": {
            "title": "Tag Research Areas",
            "type": "boolean",
            "description": "Add a researchAreas array to each row, tagged from the title, department and description (LLM, RL, Computer Vision, Alignment, Safety, Multimodal, Robotics, and more).",
            "default": true
          },
          "enrichWithVisaSignals": {
            "title": "Detect Visa Sponsorship Signals",
            "type": "boolean",
            "description": "Add a visaSignals object flagging H1B / visa-sponsorship / work-authorisation / global-remote language found in the posting.",
            "default": true
          },
          "computeAccessHints": {
            "title": "Detect Compute Access Hints",
            "type": "boolean",
            "description": "Add a computeHints object flagging mentions of GPU clusters, TPUs, cluster scale and compute budgets in the posting.",
            "default": true
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}