# Find AI roles at a named company

**Use case:** 

Search authenticjobs.com with a company name as the keyword and the AI category, and get that company's open AI roles one row each.

## Input

```json
{
  "keyword": "Webflow",
  "maxItems": 100,
  "category": [
    "Artificial Intelligence (AI)"
  ],
  "jobType": []
}
```

## Output

```json
{
  "platform": {
    "label": "Platform",
    "format": "string"
  },
  "listing_url": {
    "label": "Listing URL",
    "format": "string"
  },
  "title": {
    "label": "Job Title",
    "format": "string"
  },
  "posted_date": {
    "label": "Posted Date",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "is_remote": {
    "label": "Remote",
    "format": "boolean"
  },
  "job_type": {
    "label": "Job Type",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "salary_minimum": {
    "label": "Salary Minimum",
    "format": "number"
  },
  "salary_maximum": {
    "label": "Salary Maximum",
    "format": "number"
  },
  "salary_currency": {
    "label": "Salary Currency",
    "format": "string"
  },
  "company_name": {
    "label": "Company Name",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Authentic Jobs Scraper: Design, Dev, Creative Jobs](https://apify.com/pradio/authentic-jobs.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/pradio/authentic-jobs.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/pradio/authentic-jobs.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`).
