# EURES EU jobs — example API search

**Use case:** 

Fetches a small batch of EU vacancies from the EURES public API — title, employer, country and apply URL — as clean JSON.

## Input

```json
{
  "keywords": [
    "engineer"
  ],
  "locationCodes": [
    "de",
    "fr",
    "es"
  ],
  "publishedWithin": "week",
  "contractType": [],
  "workingTime": [],
  "educationLevel": [],
  "experienceLevel": [],
  "titleExclude": [
    "internship",
    "traineeship"
  ],
  "companyExclude": [],
  "onlyNewSinceLastRun": false,
  "maxItems": 5,
  "timeoutSeconds": 20,
  "cacheTtlSeconds": 1800
}
```

## Output

```json
{
  "title": {
    "label": "Job title",
    "format": "string"
  },
  "company": {
    "label": "Employer name",
    "format": "string"
  },
  "country": {
    "label": "Country code(s)",
    "format": "string"
  },
  "contractType": {
    "label": "Contract type",
    "format": "string"
  },
  "postedAt": {
    "label": "Posted date",
    "format": "string"
  },
  "url": {
    "label": "Apply / detail URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [🇪🇺 EURES European Jobs Scraper — 2M+ Jobs, 31 Countries](https://apify.com/nomad-agent/eures-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/nomad-agent/eures-scraper) to learn more, explore other use cases, and run it yourself.