JoPilotAPI 1.0.1

dotnet add package JoPilotAPI --version 1.0.1
                    
NuGet\Install-Package JoPilotAPI -Version 1.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="JoPilotAPI" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="JoPilotAPI" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="JoPilotAPI" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add JoPilotAPI --version 1.0.1
                    
#r "nuget: JoPilotAPI, 1.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package JoPilotAPI@1.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=JoPilotAPI&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=JoPilotAPI&version=1.0.1
                    
Install as a Cake Tool

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!

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1 241 3/8/2025
1.0.0 189 3/8/2025