# API Multi-Source offres d'emploi pour ingénieur civil

**Use case:** 

Un exemple prêt à l'emploi qui extrait les offres d'emploi de Multi-Source pour ingénieur civil et renvoie des champs normalisés pour chaque ligne.

## Input

```json
{
  "max_results": 50,
  "keyword": "ingénieur civil",
  "country": "France",
  "location": "Marseille",
  "currency": "EUR"
}
```

## Output

```json
{
  "company_logo": {
    "label": "Company Logo",
    "format": "string"
  },
  "company_name": {
    "label": "Company Name",
    "format": "string"
  },
  "platform": {
    "label": "Platform",
    "format": "string"
  },
  "title": {
    "label": "Job Title",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "object"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "job_function": {
    "label": "Job Function",
    "format": "string"
  },
  "is_remote": {
    "label": "Remote Work",
    "format": "boolean"
  },
  "work_mode": {
    "label": "Work Mode",
    "format": "string"
  },
  "job_type": {
    "label": "Job Type",
    "format": "string"
  },
  "job_level": {
    "label": "Job Level",
    "format": "string"
  },
  "experience_range": {
    "label": "Experience Range",
    "format": "string"
  },
  "skills": {
    "label": "Required Skills",
    "format": "string"
  },
  "salary_minimum": {
    "label": "Minimum Salary",
    "format": "number"
  },
  "salary_maximum": {
    "label": "Maximum Salary",
    "format": "number"
  },
  "salary_currency": {
    "label": "Salary Currency",
    "format": "string"
  },
  "salary_period": {
    "label": "Salary Period",
    "format": "string"
  },
  "posted_date": {
    "label": "Posted Date",
    "format": "string"
  },
  "valid_through": {
    "label": "Valid Through",
    "format": "string"
  },
  "applicant_count": {
    "label": "Applicant Count",
    "format": "integer"
  },
  "easy_apply": {
    "label": "Easy Apply",
    "format": "boolean"
  },
  "vacancy_count": {
    "label": "Vacancy Count",
    "format": "integer"
  },
  "platform_url": {
    "label": "Platform URL",
    "format": "string"
  },
  "official_url": {
    "label": "Official URL",
    "format": "string"
  },
  "company_rating": {
    "label": "Company Rating",
    "format": "number"
  },
  "review_count": {
    "label": "Review Count",
    "format": "integer"
  },
  "employee_count": {
    "label": "Employee Count",
    "format": "string"
  },
  "company_industry": {
    "label": "Company Industry",
    "format": "string"
  },
  "company_type": {
    "label": "Company Type",
    "format": "string"
  },
  "company_founded": {
    "label": "Year Founded",
    "format": "integer"
  },
  "company_revenue": {
    "label": "Company Revenue",
    "format": "string"
  },
  "company_url": {
    "label": "Company URL",
    "format": "string"
  },
  "company_website": {
    "label": "Company Website",
    "format": "string"
  },
  "company_addresses": {
    "label": "Company Addresses",
    "format": "string"
  },
  "company_description": {
    "label": "Company Description",
    "format": "string"
  },
  "emails": {
    "label": "Contact Emails",
    "format": "array"
  },
  "phones": {
    "label": "Contact Phones",
    "format": "array"
  },
  "social_links": {
    "label": "Social Media Links",
    "format": "object"
  },
  "listing_type": {
    "label": "Listing Type",
    "format": "string"
  },
  "processor": {
    "label": "Processor",
    "format": "string"
  },
  "processed_at": {
    "label": "Processed At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Job Search](https://apify.com/truefetch/job-search.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/truefetch/job-search.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/truefetch/job-search.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`).
