Skip to content

A lightweight JavaScript client for seamlessly integrating with the JoPilot job search API in Node.js and browser applications.

Notifications You must be signed in to change notification settings

jopilot-net/JoPilotAPI-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JoPilotAPI-JS

Overview

JoPilotAPI-JS is a JavaScript library designed to interact with the JoPilot API, allowing developers to integrate AI-powered job search functionality into their applications.

API Documentation

For detailed API documentation, visit:
JoPilot API Documentation

What is JoPilot?

JoPilot is a cutting-edge AI-driven job search assistant that helps users find the best job opportunities tailored to their needs. With JoPilot, you can access intelligent job search capabilities through our API.

To learn more, visit:
JoPilot Official Website

ChatGPT Plugin

JoPilot is also available as a ChatGPT plugin to enhance your job search experience:
JoPilot ChatGPT Plugin

Installation

To install JoPilotJS via npm, use the following command:

npm install jopilot-api

Usage

Here's a basic example of how to use the library to perform a job search:

const { JobSearchService, JobSearchRequest } = require('jopilot-api');

const request = {
  title: "driver",
  size: 10
};

JobSearchService.searchJobsAsync(request).then(results => {
  results.jobs.forEach(job => {
    console.log(`Job: ${job.name} at ${job.companyName}`);
    console.log(`Location: ${job.location.city}, ${job.location.state}, ${job.location.country}`);
    console.log(`Source: ${job.feed}`);
    console.log(`Posted: ${job.created}`);
    console.log('-'.repeat(50));
  });
});

Features

  • Easy API Integration: Call JoPilot's API with simple and intuitive methods
  • Advanced Job Search: Search for jobs based on title, location, company name, and more
  • Real-time Updates: Get up-to-date job listings with API requests

Contributing

We welcome contributions! Feel free to open issues or submit pull requests to improve the library.

License

This project is licensed under the MIT License.


Leverage the power of JoPilot and bring AI-driven job search to your JavaScript applications today!

About

A lightweight JavaScript client for seamlessly integrating with the JoPilot job search API in Node.js and browser applications.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages