{
  "openapi": "3.0.1",
  "info": {
    "title": "Adzuna Job Search API - Jobs, Salaries & Companies",
    "description": "Search the Adzuna job market across 18 countries and export structured listings - title, company, location, salary range, category, contract type and apply links. Filter by keyword, location, radius, salary, category and recency. Pay per result. Bring your own API key.",
    "version": "0.1",
    "x-build-id": "NDnIOgJ8OzCOTTJnX"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/nabeelbaghoor~adzuna-job-search-api/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-nabeelbaghoor-adzuna-job-search-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~adzuna-job-search-api/runs": {
      "post": {
        "operationId": "runs-sync-nabeelbaghoor-adzuna-job-search-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~adzuna-job-search-api/run-sync": {
      "post": {
        "operationId": "run-sync-nabeelbaghoor-adzuna-job-search-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": {
          "country": {
            "title": "Country",
            "enum": [
              "gb",
              "us",
              "ca",
              "au",
              "de",
              "fr",
              "es",
              "it",
              "nl",
              "at",
              "be",
              "br",
              "in",
              "mx",
              "nz",
              "pl",
              "sg",
              "za"
            ],
            "type": "string",
            "description": "Country job market to search. Adzuna runs a separate index per country.",
            "default": "gb"
          },
          "what": {
            "title": "Keywords",
            "type": "string",
            "description": "Free-text keywords, space separated, e.g. `python developer`. Matches job title and description."
          },
          "whatAnd": {
            "title": "All of these words",
            "type": "string",
            "description": "Every one of these space-separated words must appear."
          },
          "whatPhrase": {
            "title": "Exact phrase",
            "type": "string",
            "description": "This exact phrase must appear in the listing."
          },
          "whatOr": {
            "title": "Any of these words",
            "type": "string",
            "description": "At least one of these space-separated words must appear."
          },
          "whatExclude": {
            "title": "Exclude these words",
            "type": "string",
            "description": "Listings containing any of these words are removed."
          },
          "titleOnly": {
            "title": "Match keywords in title only",
            "type": "boolean",
            "description": "Restrict keyword matching to the job title.",
            "default": false
          },
          "where": {
            "title": "Location",
            "type": "string",
            "description": "Place name or postcode, e.g. `London`, `Manchester`, `10001`. Combine with the search radius below."
          },
          "distanceKm": {
            "title": "Search radius (km)",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "Radius in kilometers around the location (Adzuna default is 5)."
          },
          "category": {
            "title": "Category tag",
            "type": "string",
            "description": "Optional Adzuna category tag, e.g. `it-jobs`, `sales-jobs`, `engineering-jobs`, `accounting-finance-jobs`. Tags vary by country - see Adzuna's categories endpoint for the full per-country list. Leave empty for all categories."
          },
          "fullTime": {
            "title": "Full-time only",
            "type": "boolean",
            "description": "Only full-time roles.",
            "default": false
          },
          "partTime": {
            "title": "Part-time only",
            "type": "boolean",
            "description": "Only part-time roles.",
            "default": false
          },
          "permanent": {
            "title": "Permanent only",
            "type": "boolean",
            "description": "Only permanent roles.",
            "default": false
          },
          "contract": {
            "title": "Contract only",
            "type": "boolean",
            "description": "Only contract roles.",
            "default": false
          },
          "salaryMin": {
            "title": "Minimum salary",
            "minimum": 0,
            "type": "integer",
            "description": "Lower bound for the advertised annual salary (in the country's local currency)."
          },
          "salaryMax": {
            "title": "Maximum salary",
            "minimum": 0,
            "type": "integer",
            "description": "Upper bound for the advertised annual salary."
          },
          "includeUnknownSalary": {
            "title": "Include jobs without a listed salary",
            "type": "boolean",
            "description": "When a salary filter is set, also keep jobs whose salary is unknown.",
            "default": true
          },
          "company": {
            "title": "Company",
            "type": "string",
            "description": "Filter to a single canonical company name."
          },
          "maxDaysOld": {
            "title": "Posted within the last … days",
            "minimum": 1,
            "maximum": 365,
            "type": "integer",
            "description": "Upper bound on ad age in days. E.g. `7` returns jobs posted in the last week."
          },
          "sortBy": {
            "title": "Sort by",
            "enum": [
              "default",
              "date",
              "salary",
              "relevance",
              "hybrid"
            ],
            "type": "string",
            "description": "Order of results.",
            "default": "default"
          },
          "sortDirection": {
            "title": "Sort direction",
            "enum": [
              "down",
              "up"
            ],
            "type": "string",
            "description": "Ascending or descending.",
            "default": "down"
          },
          "maxResults": {
            "title": "Maximum results",
            "minimum": 1,
            "maximum": 2000,
            "type": "integer",
            "description": "Stop after this many jobs (1-2,000). Collected 50 per page. You are charged per result returned."
          },
          "appId": {
            "title": "App ID",
            "type": "string",
            "description": "Your Adzuna App ID. Required. Register for free at developer.adzuna.com."
          },
          "appKey": {
            "title": "App Key",
            "type": "string",
            "description": "Your Adzuna App 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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}