{
  "openapi": "3.0.1",
  "info": {
    "title": "Jobs Data Feed API - Global Job Postings, Salaries & Skills",
    "description": "Search a global feed of aggregated job postings from thousands of boards and career sites. Export structured listings - title, company, location, salary, category, job type, skills and seniority - filtered by keyword, company, location and date. Pay per result. Bring your own API key.",
    "version": "0.1",
    "x-build-id": "DHe0myE1l00ZgL6KY"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/nabeelbaghoor~jobs-data-feed-api/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-nabeelbaghoor-jobs-data-feed-api",
        "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/nabeelbaghoor~jobs-data-feed-api/runs": {
      "post": {
        "operationId": "runs-sync-nabeelbaghoor-jobs-data-feed-api",
        "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/nabeelbaghoor~jobs-data-feed-api/run-sync": {
      "post": {
        "operationId": "run-sync-nabeelbaghoor-jobs-data-feed-api",
        "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": "string",
            "description": "Free-text search across job title and description. Supports boolean operators AND, OR, NOT and quoted exact phrases, e.g. `\"software engineer\" AND (python OR golang) NOT senior`."
          },
          "keywordField": {
            "title": "Match keywords in",
            "enum": [
              "job_title_and_description",
              "job_title",
              "job_description"
            ],
            "type": "string",
            "description": "Which field the keywords are matched against.",
            "default": "job_title_and_description"
          },
          "companyName": {
            "title": "Company name",
            "type": "string",
            "description": "Restrict results to a single hiring company (exact-ish match on `company_name`)."
          },
          "category": {
            "title": "Category",
            "type": "string",
            "description": "Job category / department, e.g. `Information Technology`, `Sales`, `Healthcare`. Matches the `category` field."
          },
          "city": {
            "title": "City",
            "type": "string",
            "description": "City name. Matches the normalized `inferred_city` field."
          },
          "state": {
            "title": "State / region",
            "type": "string",
            "description": "State or region. Matches the normalized `inferred_state` field."
          },
          "country": {
            "title": "Country",
            "type": "string",
            "description": "Country name, e.g. `United States`, `United Kingdom`, `India`. Matches the normalized `inferred_country` field."
          },
          "jobType": {
            "title": "Job type",
            "enum": [
              "",
              "full time",
              "part time",
              "contract",
              "internship",
              "temporary"
            ],
            "type": "string",
            "description": "Employment type filter (matches the `job_type` field).",
            "default": ""
          },
          "postedAfter": {
            "title": "Posted on or after",
            "type": "string",
            "description": "Only jobs with a post date on or after this date. Accepts `YYYY-MM-DD` or relative Elasticsearch dates like `now-7d/d` (last 7 days). Matches `post_date`."
          },
          "postedBefore": {
            "title": "Posted on or before",
            "type": "string",
            "description": "Only jobs with a post date on or before this date. Accepts `YYYY-MM-DD` or relative Elasticsearch dates. Matches `post_date`."
          },
          "advancedQuery": {
            "title": "Advanced query (Elasticsearch DSL)",
            "type": "object",
            "description": "Power users: provide a raw Elasticsearch query object that becomes `search_query_json`, e.g. `{\"query_string\":{\"default_field\":\"job_title\",\"query\":\"data engineer\"}}`. When set, it overrides all the simple filters above."
          },
          "environment": {
            "title": "Credentials environment",
            "enum": [
              "production",
              "sandbox"
            ],
            "type": "string",
            "description": "Use `Sandbox` to test without consuming job credits (returns sample data). Use `Production` for live data. Must match the credential pair you paste below.",
            "default": "production"
          },
          "maxResults": {
            "title": "Maximum results",
            "minimum": 1,
            "maximum": 5000,
            "type": "integer",
            "description": "Stop after this many job postings (1-5,000). Collected up to 100 per request via cursor pagination. You are charged per result returned."
          },
          "clientId": {
            "title": "Client ID",
            "type": "string",
            "description": "Your Client ID for the job data API. Required. Get it self-serve from your provider dashboard API keys page."
          },
          "apiKey": {
            "title": "Client Auth Key",
            "type": "string",
            "description": "Your Client Auth Key. Required. Stored securely and never logged."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}