# Bulk Export Latest H-1B Visa Filings (CSV/JSON)

**Use case:** 

Export individual H-1B filing records with employer, salary, role, and location from official US DOL data for CSV, JSON, or API use.

## Input

```json
{
  "mode": "bulk-export",
  "role": "",
  "employer": "",
  "city": "",
  "state": "",
  "visaTypes": [
    "H-1B"
  ],
  "decisions": [
    "Approved"
  ],
  "fiscalYears": [
    "2026"
  ],
  "minSalary": 0,
  "maxSalary": 0,
  "maxItems": 100,
  "newFilingsOnly": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "type": {
    "label": "Row type",
    "format": "string"
  },
  "visaType": {
    "label": "Visa",
    "format": "string"
  },
  "decision": {
    "label": "Decision",
    "format": "string"
  },
  "employer": {
    "label": "Employer",
    "format": "string"
  },
  "jobTitle": {
    "label": "Job title",
    "format": "string"
  },
  "wageOffered": {
    "label": "Salary ($)",
    "format": "number"
  },
  "workCity": {
    "label": "Work city",
    "format": "string"
  },
  "workState": {
    "label": "Work state",
    "format": "string"
  },
  "decisionDate": {
    "label": "Decision date",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [US H-1B & Green Card Sponsor Database](https://apify.com/constructive_calm/visa-sponsor-tracker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/constructive_calm/visa-sponsor-tracker) to learn more, explore other use cases, and run it yourself.