An unofficial client for Pole Emploi API written in Typescript
- Tiny size
- Works in Node.js and in Browser
- Built-in Typescript support
npm i pole-emploi
Import pole-emploi
module in your project and initialize it with your apiKey and apiSecret.
import PoleEmploi from "pole-emploi";
const PoleEmploiClient = new PoleEmploi({
apiKey: "your api key",
apiSecret: "your api secret"
})
PoleEmploiClient.search({theme: 6,
natureContrat: "E2",
motsCles: "naval",
}).then((data) => {
console.log(data)
})