# Remote OK Job Board Feed Monitor

**Use case:** 

Build a repeatable Remote OK job feed with cleaned descriptions for newsletters, job boards, CRMs, and warehouses.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://remoteok.com/api"
    }
  ],
  "searchTerms": [
    "python",
    "backend"
  ],
  "tags": [
    "dev"
  ],
  "maxItems": 250,
  "postedAfter": "2026-01-01",
  "salaryOnly": false,
  "includeDescriptionHtml": true
}
```

## Output

```json
{
  "jobId": {
    "label": "Job ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "companyLogo": {
    "label": "Company logo",
    "format": "link"
  },
  "tags": {
    "label": "Tags",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "isWorldwide": {
    "label": "Worldwide",
    "format": "boolean"
  },
  "salaryMin": {
    "label": "Salary min",
    "format": "number"
  },
  "salaryMax": {
    "label": "Salary max",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "postedAt": {
    "label": "Posted at",
    "format": "date"
  },
  "descriptionText": {
    "label": "Description",
    "format": "text"
  },
  "descriptionHtml": {
    "label": "Description HTML",
    "format": "text"
  },
  "applyUrl": {
    "label": "Apply URL",
    "format": "link"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "link"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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