# Monitor new executive jobs in Ile-de-France every day

**Use case:** 

Returns only the apec.fr job offers in Ile-de-France it has never delivered before: schedule it daily and each run gives (and charges) just the new offers. Use it for a job alert, a Google Sheets feed or a list of companies hiring managers.

## Input

```json
{
  "searchQueries": [
    "data engineer"
  ],
  "locations": [
    "Ile-de-France"
  ],
  "maxItems": 200,
  "maxItemsPerQuery": 0,
  "contractTypes": [],
  "postedWithin": "ANY",
  "sortBy": "DATE",
  "includeDetails": true,
  "experienceLevels": [],
  "remoteWork": [],
  "employerTypes": [],
  "tagEmployerType": false,
  "sectors": [],
  "jobFunctions": [],
  "jobRoles": [],
  "positionStatus": [],
  "contractDurationBand": "ANY",
  "educationLevel": "ANY",
  "internshipDuration": "ANY",
  "startDateWithin": "ANY",
  "travelZones": [],
  "onlyGeolocated": false,
  "radiusKm": 0,
  "excludeKeywords": [],
  "companyNameContains": [],
  "excludeCompanies": [],
  "excludeConfidential": false,
  "onlyLowApplicantCount": false,
  "requireSalary": false,
  "postingOrigins": [],
  "skipReposts": false,
  "onlyNew": true,
  "stateKey": "new-jobs-ile-de-france",
  "resetState": false,
  "excludeEmptyFields": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "maxConcurrency": 1,
  "maxRequestsPerMinute": 120,
  "maxRequestRetries": 5,
  "debugLog": false
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "employerType": {
    "label": "Employer type",
    "format": "string"
  },
  "locationText": {
    "label": "Location (as shown)",
    "format": "string"
  },
  "salaryText": {
    "label": "Salary (as shown)",
    "format": "string"
  },
  "contractType": {
    "label": "Contract type",
    "format": "string"
  },
  "remoteWork": {
    "label": "Remote work",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published at",
    "format": "string"
  },
  "isRepost": {
    "label": "Re-posted offer (detail)",
    "format": "boolean"
  },
  "url": {
    "label": "Offer URL",
    "format": "string"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/nice_dev/apec-jobs-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
