{
  "openapi": "3.0.1",
  "info": {
    "title": "$1 [Cheapest] Upwork Jobs Feed (Ultrafast)",
    "description": "Stream fresh Upwork job listings from a curated, indexed dataset. Filter by category, level, budget, hourly rate, full-text search, and date ranges. Cursor-paginated for stable results across concurrent updates.",
    "version": "0.1",
    "x-build-id": "C2HBxP6XgdnSIV2JU"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/bestanalytics~upwork-jobs-feed/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-bestanalytics-upwork-jobs-feed",
        "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/bestanalytics~upwork-jobs-feed/runs": {
      "post": {
        "operationId": "runs-sync-bestanalytics-upwork-jobs-feed",
        "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/bestanalytics~upwork-jobs-feed/run-sync": {
      "post": {
        "operationId": "run-sync-bestanalytics-upwork-jobs-feed",
        "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": {
          "publishedRange": {
            "title": "Published — relative range",
            "enum": [
              "",
              "1h",
              "24h",
              "3d",
              "7d",
              "30d",
              "90d"
            ],
            "type": "string",
            "description": "Quick preset: jobs published within the last N hours/days. Easier than picking dates. Leave empty to use absolute date pickers below.",
            "default": ""
          },
          "publishedFrom": {
            "title": "Published from (absolute)",
            "type": "string",
            "description": "Only jobs published on/after this date. Ignored when 'Published range' is set."
          },
          "publishedTo": {
            "title": "Published to (absolute)",
            "type": "string",
            "description": "Only jobs published on/before this date."
          },
          "createdFrom": {
            "title": "Scraped from (date)",
            "type": "string",
            "description": "Only jobs scraped on/after this date. Cannot be earlier than 2026-06-01 — values before that are clamped."
          },
          "createdTo": {
            "title": "Scraped to (date)",
            "type": "string",
            "description": "Only jobs scraped on/before this date."
          },
          "categories": {
            "title": "Categories",
            "uniqueItems": true,
            "type": "array",
            "description": "Select one or more Upwork categories. Empty = all categories.",
            "items": {
              "type": "string",
              "enum": [
                "Design & Creative",
                "Sales & Marketing",
                "Web Mobile & Software Dev",
                "Admin Support",
                "Engineering & Architecture",
                "Accounting & Consulting",
                "Writing",
                "Data Science & Analytics",
                "Customer Service",
                "IT & Networking",
                "Translation",
                "Legal"
              ]
            },
            "default": []
          },
          "levels": {
            "title": "Experience levels",
            "uniqueItems": true,
            "type": "array",
            "description": "Select one or more levels. Empty = all levels.",
            "items": {
              "type": "string",
              "enum": [
                "entry",
                "intermediate",
                "expert"
              ],
              "enumTitles": [
                "Entry",
                "Intermediate",
                "Expert"
              ]
            },
            "default": []
          },
          "q": {
            "title": "Search — title + description",
            "type": "string",
            "description": "Boolean expression searched across title AND description. Supports: AND, OR, NOT, parentheses, \"quoted phrases\". Case-insensitive. Examples: 'python and not junior', '(excel or python) and \"power bi\"'. Tokens shorter than 4 chars are ignored."
          },
          "qTitle": {
            "title": "Search — title only",
            "type": "string",
            "description": "Same boolean syntax as above, but matches only against the job title."
          },
          "qTitleExclude": {
            "title": "Exclude from title",
            "type": "string",
            "description": "Comma-separated tokens. Jobs whose TITLE contains any of these words are removed. Example: 'junior, intern, entry-level'."
          },
          "qDescription": {
            "title": "Search — description only",
            "type": "string",
            "description": "Boolean search against the full job description."
          },
          "qDescriptionExclude": {
            "title": "Exclude from description",
            "type": "string",
            "description": "Comma-separated tokens. Jobs whose DESCRIPTION contains any of these are removed."
          },
          "minDescriptionLength": {
            "title": "Minimum description length (chars)",
            "minimum": 0,
            "type": "integer",
            "description": "Drop jobs with descriptions shorter than this many characters (good for filtering low-effort posts)."
          },
          "skills": {
            "title": "Skills",
            "type": "array",
            "description": "Comma-separated skill tags (e.g., python, django, \"power bi\"). Matched against the job's Upwork-tagged skills.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "skillsMode": {
            "title": "Skills match mode",
            "enum": [
              "any",
              "all"
            ],
            "type": "string",
            "description": "How multiple skills combine.",
            "default": "any"
          },
          "budgetMin": {
            "title": "Fixed budget min ($)",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum fixed-price budget in USD. Excludes jobs with no fixed budget."
          },
          "budgetMax": {
            "title": "Fixed budget max ($)",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum fixed-price budget in USD."
          },
          "hourlyMinGte": {
            "title": "Hourly min ≥ ($/h)",
            "minimum": 0,
            "type": "integer",
            "description": "Hourly rate low end is at least this many USD/hour."
          },
          "hourlyMaxLte": {
            "title": "Hourly max ≤ ($/h)",
            "minimum": 0,
            "type": "integer",
            "description": "Hourly rate high end is at most this many USD/hour."
          },
          "hasBudget": {
            "title": "Fixed-price filter",
            "enum": [
              "",
              "true",
              "false"
            ],
            "type": "string",
            "description": "Filter by presence of a fixed-price budget.",
            "default": ""
          },
          "hasHourly": {
            "title": "Hourly filter",
            "enum": [
              "",
              "true",
              "false"
            ],
            "type": "string",
            "description": "Filter by presence of an hourly rate.",
            "default": ""
          },
          "sort": {
            "title": "Sort",
            "enum": [
              "published_desc",
              "published_asc",
              "created_desc",
              "created_asc",
              "budget_desc",
              "hourly_max_desc"
            ],
            "type": "string",
            "description": "Order of results.",
            "default": "published_desc"
          },
          "maxItems": {
            "title": "Max items",
            "minimum": 1,
            "maximum": 100000,
            "type": "integer",
            "description": "Hard cap on items pushed to the dataset. Each item costs $0.003. Default 1000 = $3.00.",
            "default": 1000
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}