# Find high-paying hourly jobs for experts on Upwork

**Use case:** 

Lists the Upwork hourly job posts that want an expert and pay at least $50 an hour, newest first, with the hourly range, the full description, the skills, the project duration and the hours per week. Use it to see only the work worth bidding on.

## Input

```json
{
  "startUrls": [],
  "query": "python",
  "searchQueries": [],
  "maxItems": 100,
  "maxItemsPerQuery": 0,
  "sortBy": "recency",
  "jobType": "hourly",
  "experienceLevel": [
    "Expert"
  ],
  "projectDuration": [],
  "workload": [],
  "contractToHire": false,
  "minHourlyRate": 50,
  "categories": [],
  "subcategories": [],
  "skills": [],
  "clientHires": [],
  "clientLocations": [],
  "clientTimezones": [],
  "includeKeywords": [],
  "excludeKeywords": [],
  "maxDescriptionLength": 0,
  "onlyNew": false,
  "stateKey": "default",
  "resetState": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "minRequestIntervalMs": 500,
  "maxRequestRetries": 5,
  "debugLog": false
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "url": {
    "label": "Job URL",
    "format": "string"
  },
  "jobType": {
    "label": "Job type",
    "format": "string"
  },
  "fixedBudget": {
    "label": "Fixed budget",
    "format": "number"
  },
  "hourlyBudgetMin": {
    "label": "Hourly rate, min",
    "format": "number"
  },
  "hourlyBudgetMax": {
    "label": "Hourly rate, max",
    "format": "number"
  },
  "experienceLevel": {
    "label": "Experience level",
    "format": "string"
  },
  "durationLabel": {
    "label": "Project duration",
    "format": "string"
  },
  "skills": {
    "label": "Skills",
    "format": "array"
  },
  "publishedAt": {
    "label": "Published at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Upwork Jobs Scraper](https://apify.com/nice_dev/upwork-jobs-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/nice_dev/upwork-jobs-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/nice_dev/upwork-jobs-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
