# Find Upwork jobs posted by clients in the United States

**Use case:** 

Lists the newest Upwork job posts whose client is based in the United States, with the full description, the skills asked for, the budget or hourly range, the experience level and the project duration. Use it to target US clients or to compare their budgets.

## Input

```json
{
  "startUrls": [],
  "query": "python",
  "searchQueries": [],
  "maxItems": 100,
  "maxItemsPerQuery": 0,
  "sortBy": "recency",
  "jobType": "",
  "experienceLevel": [],
  "projectDuration": [],
  "workload": [],
  "contractToHire": false,
  "categories": [],
  "subcategories": [],
  "skills": [],
  "clientHires": [],
  "clientLocations": [
    "United States"
  ],
  "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`).
