{
  "openapi": "3.0.1",
  "info": {
    "title": "Infojobs Spain Scraper ($0.9 per 1000 results)",
    "description": "$0.9/1K 💸 Scrape InfoJobs Spain job listings from www.infojobs.net by keyword. Export hiring data with salary, experience, company, location, dates, and job URLs for recruiting and market research.",
    "version": "0.0",
    "x-build-id": "1gdy3ge8zCqWRGrZj"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/igolaizola~infojobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-igolaizola-infojobs-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/igolaizola~infojobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-igolaizola-infojobs-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/igolaizola~infojobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-igolaizola-infojobs-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",
        "required": [
          "query",
          "maxItems"
        ],
        "properties": {
          "query": {
            "title": "Query",
            "type": "string",
            "description": "The job title, skill, company, or keyword to search for.",
            "default": ""
          },
          "maxItems": {
            "title": "Max items",
            "minimum": 0,
            "maximum": 1000,
            "type": "integer",
            "description": "How many jobs do you want to fetch? Use 0 for unlimited.",
            "default": 50
          },
          "sortBy": {
            "title": "Sort by",
            "enum": [
              "relevance",
              "recent"
            ],
            "type": "string",
            "description": "Choose how to sort the results.",
            "default": "relevance"
          },
          "sinceDate": {
            "title": "Publication date",
            "enum": [
              "",
              "last-24-hours",
              "last-7-days",
              "last-15-days"
            ],
            "type": "string",
            "description": "Filter by when the job was published or updated.",
            "default": ""
          },
          "province": {
            "title": "Province",
            "enum": [
              "",
              "a-coruna",
              "alava-araba",
              "albacete",
              "alicante-alacant",
              "almeria",
              "asturias",
              "avila",
              "badajoz",
              "barcelona",
              "burgos",
              "caceres",
              "cadiz",
              "cantabria",
              "castellon-castello",
              "ceuta",
              "ciudad-real",
              "cordoba",
              "cuenca",
              "girona",
              "granada",
              "guadalajara",
              "guipuzcoa-gipuzkoa",
              "huelva",
              "huesca",
              "illes-balears",
              "jaen",
              "la-rioja",
              "las-palmas",
              "leon",
              "lleida",
              "lugo",
              "madrid",
              "malaga",
              "melilla",
              "murcia",
              "navarra",
              "ourense",
              "palencia",
              "pontevedra",
              "salamanca",
              "santa-cruz-de-tenerife",
              "segovia",
              "sevilla",
              "soria",
              "tarragona",
              "teruel",
              "toledo",
              "valencia-valencia",
              "valladolid",
              "vizcaya-bizkaia",
              "zamora",
              "zaragoza"
            ],
            "type": "string",
            "description": "Spanish province filter. Values are sent directly to InfoJobs as verified province slugs.",
            "default": ""
          },
          "city": {
            "title": "City",
            "type": "string",
            "description": "City name to filter by, for example Ciudad Real.",
            "default": ""
          },
          "radius": {
            "title": "Radius",
            "minimum": 0,
            "type": "integer",
            "description": "InfoJobs radius value for location searches. Leave 0 to omit it.",
            "default": 0
          },
          "teleworking": {
            "title": "Remote work",
            "type": "array",
            "description": "Filter by on-site, remote, hybrid, or unspecified work mode.",
            "items": {
              "type": "string",
              "enum": [
                "remote-only"
              ],
              "enumTitles": [
                "Only remote"
              ]
            },
            "default": []
          },
          "contractTypes": {
            "title": "Contract types",
            "type": "array",
            "description": "Filter by contract type.",
            "items": {
              "type": "string",
              "enum": [
                "permanent",
                "fixed-term",
                "other",
                "freelance",
                "discontinuous",
                "part-time"
              ],
              "enumTitles": [
                "Permanent",
                "Fixed-term",
                "Other contracts",
                "Freelance",
                "Discontinuous permanent",
                "Part-time"
              ]
            },
            "default": []
          },
          "workDays": {
            "title": "Work schedule",
            "type": "array",
            "description": "Filter by work schedule.",
            "items": {
              "type": "string",
              "enum": [
                "full-time",
                "indifferent"
              ],
              "enumTitles": [
                "Full-time",
                "Indifferent"
              ]
            },
            "default": []
          },
          "categories": {
            "title": "Categories",
            "type": "array",
            "description": "Filter by job category.",
            "items": {
              "type": "string",
              "enum": [
                "business-administration",
                "production-quality-rd",
                "sales",
                "purchasing-logistics",
                "education-training",
                "finance-banking",
                "it-telecom",
                "engineering-technical",
                "real-estate-construction",
                "legal",
                "marketing-communication",
                "other",
                "trades-arts-crafts",
                "human-resources",
                "healthcare",
                "tourism-hospitality",
                "retail"
              ],
              "enumTitles": [
                "Business administration",
                "Quality, production and R&D",
                "Sales",
                "Purchasing, logistics and warehouse",
                "Education and training",
                "Finance and banking",
                "IT and telecommunications",
                "Engineering and technical",
                "Real estate and construction",
                "Legal",
                "Marketing and communication",
                "Other",
                "Trades, arts and crafts",
                "Human resources",
                "Healthcare",
                "Tourism and hospitality",
                "Retail"
              ]
            },
            "default": []
          },
          "studies": {
            "title": "Minimum studies",
            "type": "array",
            "description": "Filter by minimum education level.",
            "items": {
              "type": "string",
              "enum": [
                "bachillerato",
                "medium-vocational-cycle",
                "higher-vocational-cycle",
                "secondary-education",
                "fp-medium",
                "fp-higher",
                "degree",
                "master",
                "no-studies"
              ],
              "enumTitles": [
                "Bachillerato",
                "Vocational training, medium cycle",
                "Vocational training, higher cycle",
                "Secondary education",
                "FP medium",
                "FP higher",
                "Degree",
                "Master",
                "No studies"
              ]
            },
            "default": []
          },
          "experienceMin": {
            "title": "Minimum experience",
            "type": "array",
            "description": "Filter by minimum years of experience.",
            "items": {
              "type": "string",
              "enum": [
                "1-year",
                "2-years",
                "3-years",
                "4-years"
              ],
              "enumTitles": [
                "At least 1 year",
                "At least 2 years",
                "At least 3 years",
                "At least 4 years"
              ]
            },
            "default": []
          },
          "salaryMin": {
            "title": "Minimum salary",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum salary amount to send to InfoJobs. Leave 0 to omit it.",
            "default": 0
          },
          "salaryPeriod": {
            "title": "Salary period",
            "enum": [
              "year",
              "month",
              "hour"
            ],
            "type": "string",
            "description": "Salary period used when minimum salary is set.",
            "default": "year"
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}