Skip to content

JoPilot: A lightweight C# library for searching and retrieving job listings through the JoPilot API.

Notifications You must be signed in to change notification settings

jopilot-net/JoPilotAPI-dotnet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

JoPilotAPI NuGet Package

Introduction

Welcome to the official JoPilotAPI NuGet package! This package provides seamless access to the JoPilot job search API, allowing developers to integrate AI-powered job search functionality into their applications effortlessly.

JoPilot is a cutting-edge AI-driven job search assistant that helps users find the best job opportunities tailored to their needs. By using this NuGet package, you can interact directly with JoPilot's powerful API and enhance your application with intelligent job search capabilities.

Features

  • Easy API Integration – Call JoPilot's API with simple and intuitive methods.
  • Advanced Job Search – Search for jobs based on location, salary, employer, and more.
  • Exclusion Filters – Exclude certain employers, cities, or job listings.
  • Real-time Updates – Get up-to-date job listings with API requests.

Installation

To install the JoPilotAPI NuGet package, run the following command in the .NET CLI:

 dotnet add package JoPilotAPI

Or via NuGet Package Manager:

Install-Package JoPilotAPI

Usage

using JoPilotAPI;

class Program
{
    static async Task Main(string[] args)
    {
        try
        {
            Console.WriteLine("JoPilot Job Search Demo");
            Console.WriteLine("=======================");

            var request = new JobSearchRequest
            {
                title = "driver",
                size = 10
            };

            Console.WriteLine($"Searching for {request.title} jobs...");

            var result = await JobSearchService.SearchJobsAsync(request);

            Console.WriteLine($"\nFound {result.jobs.Count} job listings:\n");

            foreach (var job in result.jobs)
            {
                Console.WriteLine($"Title: {job.name}");
                Console.WriteLine($"Company: {job.companyName}");

                if (job.location != null)
                {
                    Console.WriteLine($"Location: {job.location.city}, {job.location.state}, {job.location.country}");
                }

                Console.WriteLine($"Source: {job.feed}");
                Console.WriteLine($"Posted: {job.created}");
                Console.WriteLine($"ID: {job.id}");
                Console.WriteLine(new string('-', 50));
            }
        }
        catch (Exception ex)
        {
            Console.WriteLine($"Error: {ex.Message}");
            if (ex.InnerException != null)
            {
                Console.WriteLine($"Details: {ex.InnerException.Message}");
            }
        }

        Console.WriteLine("Press any key to exit...");
        Console.ReadKey();
    }
}

API Documentation

For detailed API documentation and endpoints, please visit: JoPilot API Documentation

JoPilot Website

To learn more about JoPilot and its capabilities, visit: JoPilot Official Website

JoPilot ChatGPT Plugin

Enhance your job search experience with our AI-powered ChatGPT plugin: JoPilot ChatGPT Plugin

Contributing

Contributions are welcome! If you'd like to improve the package or report issues, feel free to create a pull request or open an issue on our GitHub repository.

License

This project is licensed under the MIT License. See the LICENSE file for details.


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

About

JoPilot: A lightweight C# library for searching and retrieving job listings through the JoPilot API.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages