{
  "openapi": "3.0.1",
  "info": {
    "title": "IrishJobs.ie Scraper",
    "description": "Scrape job listings from IrishJobs.ie by keyword, location, and county. Get titles, employers, salaries, full descriptions, company profiles, and incremental change tracking. Export as JSON, CSV, or Excel.",
    "version": "1.3",
    "x-build-id": "ykQsW7mOLm0EcOI9l"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/parsebird~irishjobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-parsebird-irishjobs-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/parsebird~irishjobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-parsebird-irishjobs-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/parsebird~irishjobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-parsebird-irishjobs-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": {
          "mode": {
            "title": "🚦 Mode",
            "enum": [
              "auto",
              "lightweight",
              "full"
            ],
            "type": "string",
            "description": "Strategy for the run. `auto` picks the best option for the requested size. `lightweight` has lower per-run overhead (best for small runs, under ~20 results). `full` has lower per-result cost (best for 20+ results).",
            "default": "auto"
          },
          "query": {
            "title": "🔍 Search term(s)",
            "type": "string",
            "description": "Job search keywords, e.g. `software engineer`. Use a JSON array `[\"query1\", \"query2\"]` to run multiple searches."
          },
          "location": {
            "title": "📍 Location",
            "type": "string",
            "description": "City or region, e.g. `Dublin` or `Cork`. Use a JSON array for multiple locations."
          },
          "startUrls": {
            "title": "🔗 Start URLs",
            "type": "array",
            "description": "Direct IrishJobs.ie search URLs (e.g. `https://www.irishjobs.ie/jobs/developer/in-dublin`) or job-detail URLs (`https://www.irishjobs.ie/job/.../...job1234567`). Overrides query/location when provided.",
            "items": {
              "type": "string"
            }
          },
          "county": {
            "title": "📍 County",
            "enum": [
              "",
              "dublin",
              "cork",
              "galway",
              "limerick",
              "waterford",
              "kilkenny",
              "wexford",
              "wicklow",
              "kildare",
              "meath",
              "louth",
              "kerry",
              "clare",
              "tipperary",
              "mayo",
              "sligo",
              "donegal",
              "cavan",
              "monaghan",
              "roscommon",
              "leitrim",
              "longford",
              "westmeath",
              "offaly",
              "laois",
              "carlow"
            ],
            "type": "string",
            "description": "Filter by Irish county. Overrides Location when set."
          },
          "sort": {
            "title": "🔀 Sort by",
            "enum": [
              "relevance",
              "date",
              "salary_low",
              "salary_high"
            ],
            "type": "string",
            "description": "Order results are returned in.",
            "default": "relevance"
          },
          "age": {
            "title": "Posted within (days)",
            "minimum": 1,
            "type": "integer",
            "description": "Only show jobs posted within this many days. Supported buckets: 1, 3, 7, 14 (other values snap to the nearest)."
          },
          "remote": {
            "title": "🏠 Remote only",
            "type": "boolean",
            "description": "Only show remote / work-from-home positions.",
            "default": false
          },
          "radius": {
            "title": "📡 Radius (km)",
            "enum": [
              "",
              "5",
              "10",
              "20",
              "30",
              "40",
              "50",
              "75",
              "100",
              "150",
              "200"
            ],
            "type": "string",
            "description": "Search radius around the location in km. Requires a location or county."
          },
          "minSalary": {
            "title": "Minimum salary (EUR/year)",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum annual salary filter, in euro."
          },
          "contractType": {
            "title": "📝 Contract type",
            "enum": [
              "",
              "FULL_TIME",
              "PART_TIME",
              "CONTRACT",
              "TEMPORARY",
              "INTERNSHIP",
              "APPRENTICESHIP",
              "FREELANCE",
              "MINI_JOB",
              "WORKING_STUDENT",
              "VOLUNTEER",
              "THESIS",
              "DUAL_STUDY"
            ],
            "type": "string",
            "description": "Filter by contract / employment type."
          },
          "experience": {
            "title": "Experience level",
            "enum": [
              "",
              "no",
              "required",
              "executive"
            ],
            "type": "string",
            "description": "Filter by experience level (best-effort, applied to the parsed job)."
          },
          "workType": {
            "title": "Work type",
            "enum": [
              "",
              "FULL_TIME",
              "PART_TIME"
            ],
            "type": "string",
            "description": "Filter by work schedule."
          },
          "companyId": {
            "title": "Company ID",
            "minimum": 1,
            "type": "integer",
            "description": "Filter to a single company by its numeric IrishJobs.ie company ID (see the `companyId` output field)."
          },
          "language": {
            "title": "🌐 Language",
            "type": "string",
            "description": "Filter by job-posting language, e.g. `en` or `de`."
          },
          "applicationMethod": {
            "title": "Application method",
            "enum": [
              "",
              "INTERNAL",
              "EXTERNAL"
            ],
            "type": "string",
            "description": "Filter by how to apply. `INTERNAL` = apply on IrishJobs.ie, `EXTERNAL` = apply on the employer's site."
          },
          "excludeSponsored": {
            "title": "Exclude sponsored",
            "type": "boolean",
            "description": "Skip sponsored / promoted listings (`isSponsored = true`).",
            "default": false
          },
          "includeKeywords": {
            "title": "📝 Include keywords",
            "type": "object",
            "description": "Require at least one of these keywords in the title / description / skills. Example: {\"keywords\":[\"React\",\"Node.js\"],\"matchTitle\":true,\"matchDescription\":true,\"matchSkills\":true}."
          },
          "excludeKeywords": {
            "title": "🚫 Exclude keywords",
            "type": "object",
            "description": "Exclude jobs containing any of these keywords. Same config shape as includeKeywords."
          },
          "fromDate": {
            "title": "📅 From date",
            "type": "string",
            "description": "Only include jobs posted on or after this date. Accepts `YYYY-MM-DD` or ISO-8601."
          },
          "toDate": {
            "title": "📅 To date",
            "type": "string",
            "description": "Only include jobs posted on or before this date."
          },
          "maxAgeMinutes": {
            "title": "⏰ Max age (minutes)",
            "minimum": 0,
            "type": "integer",
            "description": "Only include jobs posted within the last N minutes. 0 = no limit. Pairs well with hourly scheduled runs (e.g. 60).",
            "default": 0
          },
          "customFilters": {
            "title": "🔧 Custom filters (advanced)",
            "type": "array",
            "description": "Rules applied to any output field. Each rule: {\"field\":\"\",\"op\":\"includes|notIncludes|equals|notEquals|gt|gte|lt|lte\",\"value\":...}. Example: [{\"field\":\"location\",\"op\":\"includes\",\"value\":\"Dublin\"}, {\"field\":\"salaryMin\",\"op\":\"gte\",\"value\":50000}]."
          },
          "includeDetails": {
            "title": "📋 Include full details",
            "type": "boolean",
            "description": "Fetch each job's detail page for the full description, structured company profile, employment type, geo-coordinates, and similar-job count. Slower but much richer.",
            "default": true
          },
          "descriptionFormat": {
            "title": "Description format",
            "enum": [
              "text",
              "html",
              "markdown",
              "all"
            ],
            "type": "string",
            "description": "Which description formats to include in output.",
            "default": "all"
          },
          "maxResults": {
            "title": "💯 Max results",
            "minimum": 0,
            "maximum": 10000,
            "type": "integer",
            "description": "Maximum total job listings to return. This is the number of billed rows. 0 = unlimited.",
            "default": 50
          },
          "maxPages": {
            "title": "📄 Max pages",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Maximum search-result pages per search (25 jobs/page). Auto-raised when needed to satisfy Max results.",
            "default": 5
          },
          "compact": {
            "title": "📦 Compact output",
            "type": "boolean",
            "description": "Return only the essential fields (jobId, title, company, location, salary, skills, url, description) — for AI-agent and MCP workflows where token budget matters.",
            "default": false
          },
          "descriptionMaxLength": {
            "title": "✂️ Description max length",
            "minimum": 0,
            "maximum": 10000,
            "type": "integer",
            "description": "Truncate the description to this many characters (appends '...'). 0 = no truncation.",
            "default": 0
          },
          "excludeEmptyFields": {
            "title": "Exclude empty fields",
            "type": "boolean",
            "description": "Drop null, empty-string, and empty-array fields from each record. Smaller payloads for AI agents and dashboards.",
            "default": false
          },
          "outputFields": {
            "title": "Output fields",
            "type": "array",
            "description": "Return only this subset of fields. Supports dot notation, e.g. `locationDetail.city`. Empty = all fields.",
            "items": {
              "type": "string"
            }
          },
          "datasetName": {
            "title": "Dataset name",
            "type": "string",
            "description": "Custom named dataset. Supports masks: {DATE} = YYYYMMDD, {TIME} = HHMMSS."
          },
          "incrementalMode": {
            "title": "♻️ Incremental mode",
            "type": "boolean",
            "description": "Track changes between runs with the same state key. Emits NEW / UPDATED / REAPPEARED records; the first run records a baseline.",
            "default": false
          },
          "stateKey": {
            "title": "🔑 State key",
            "type": "string",
            "description": "Stable identifier for the tracked search. Leave empty to auto-derive one from your search inputs."
          },
          "emitUnchanged": {
            "title": "♻️ Emit unchanged records",
            "type": "boolean",
            "description": "In incremental mode, also emit records that haven't changed since the last run.",
            "default": false
          },
          "emitExpired": {
            "title": "⚰️ Emit expired records",
            "type": "boolean",
            "description": "In incremental mode, also emit records that are no longer found on the site.",
            "default": false
          },
          "skipReposts": {
            "title": "🚫 Skip reposts",
            "type": "boolean",
            "description": "Exclude listings detected as reposts of previously seen jobs.",
            "default": false
          },
          "dedupStoreName": {
            "title": "Dedup store name",
            "type": "string",
            "description": "Named key-value store for cross-run dedup. Same name across runs = only new jobs are pushed."
          },
          "dedupKey": {
            "title": "Dedup key",
            "type": "string",
            "description": "Field used as the unique key for dedup.",
            "default": "jobId"
          },
          "proxyConfiguration": {
            "title": "🛡️ Proxy configuration",
            "type": "object",
            "description": "IrishJobs.ie blocks datacenter ranges and throttles by IP, so Irish residential routing is preset. Change it only for an account-specific setup.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ],
              "apifyProxyCountry": "IE"
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}