# ClearedJobs Software Engineer Jobs Scraper

**Use case:** 

Scrape security-cleared software engineer jobs from ClearedJobs.net: job title, company, location, clearance level, and application URL. Export to JSON or CSV.

## Input

```json
{
  "maxItems": 25,
  "startUrl": "https://clearedjobs.net/jobs?country=&state=&city=&zip=&latitude=&longitude=&keywords=&location_autocomplete_data=&city_state_zip=&locale=en&page=1&sort=relevance",
  "keywords": "software engineer",
  "country": "",
  "locationSelect": "",
  "securityClearance": "",
  "company": "",
  "jobTitle": "",
  "sort": "relevance"
}
```

## Output

```json
{
  "companyLogoUrl": {
    "label": "Logo",
    "format": "image"
  },
  "jobTitle": {
    "label": "Job Title",
    "format": "text"
  },
  "jobUrl": {
    "label": "Details",
    "format": "link"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "companyUrl": {
    "label": "Company URL",
    "format": "link"
  },
  "shortDescription": {
    "label": "Description",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "securityClearance": {
    "label": "Clearance",
    "format": "text"
  },
  "positionType": {
    "label": "Type",
    "format": "text"
  },
  "requirements": {
    "label": "Requirements",
    "format": "array"
  },
  "clearanceRequirements": {
    "label": "Clearance Requirements",
    "format": "array"
  },
  "responsibilities": {
    "label": "Responsibilities",
    "format": "array"
  },
  "minimumQualifications": {
    "label": "Min Qualifications",
    "format": "array"
  },
  "preferredQualifications": {
    "label": "Preferred Qualifications",
    "format": "array"
  },
  "benefits": {
    "label": "Benefits",
    "format": "array"
  },
  "additionalSections": {
    "label": "Additional Sections",
    "format": "json"
  },
  "postedDate": {
    "label": "Posted",
    "format": "date"
  },
  "expiresDate": {
    "label": "Expires",
    "format": "date"
  },
  "jobStatus": {
    "label": "Status",
    "format": "text"
  },
  "scrapedTimestamp": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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