Remote Work Policy Change Intelligence
Pricing
from $8.40 / 1,000 results
Remote Work Policy Change Intelligence
Measure employer remote, hybrid and onsite policy shifts from recurring job datasets.
Remote Work Policy Change Intelligence
Pricing
from $8.40 / 1,000 results
Measure employer remote, hybrid and onsite policy shifts from recurring job datasets.
You can access the Remote Work Policy Change Intelligence programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in API & Integrations in Apify Console.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "currentItems": [12 {13 "id": "r1",14 "company": "Acme",15 "workMode": "Remote",16 "jobCount": 2017 },18 {19 "id": "r2",20 "company": "Acme",21 "workMode": "Hybrid",22 "jobCount": 823 },24 {25 "id": "r3",26 "company": "Beta",27 "workMode": "Onsite",28 "jobCount": 929 }30 ],31 "previousItems": [32 {33 "id": "r1",34 "company": "Acme",35 "workMode": "Remote",36 "jobCount": 837 },38 {39 "id": "r2",40 "company": "Acme",41 "workMode": "Hybrid",42 "jobCount": 1243 },44 {45 "id": "r3",46 "company": "Beta",47 "workMode": "Onsite",48 "jobCount": 849 }50 ]51};52
53// Run the Actor and wait for it to finish54const run = await client.actor("quanmatrix/remote-work-policy-change-intelligence").call(input);55
56// Fetch and print Actor results from the run's dataset (if any)57console.log('Results from dataset');58console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);59const { items } = await client.dataset(run.defaultDatasetId).listItems();60items.forEach((item) => {61 console.dir(item);62});63
64// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docsThe Apify API client for JavaScript is the official library that allows you to use Remote Work Policy Change Intelligence API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: