# Remote Web3 Jobs Scraper

**Use case:** 

Scrape remote Web3 jobs from Web3.career with titles, companies, salaries, tags, descriptions, and apply URLs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://web3.career/remote-jobs"
    }
  ],
  "searchQueries": [
    "solidity remote"
  ],
  "maxItems": 20,
  "includeDetails": true,
  "maxPagesPerStartUrl": 2
}
```

## Output

```json
{
  "title": {
    "label": "Job title",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "isRemote": {
    "label": "Remote",
    "format": "boolean"
  },
  "salary": {
    "label": "Salary",
    "format": "string"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "postedText": {
    "label": "Posted",
    "format": "string"
  },
  "jobUrl": {
    "label": "Job URL",
    "format": "string"
  },
  "applyUrl": {
    "label": "Apply URL",
    "format": "string"
  },
  "sourceCategory": {
    "label": "Source category",
    "format": "string"
  },
  "descriptionSnippet": {
    "label": "Description snippet",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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