Skip to content

Go library for the Remote Jobs API/RSS Feed. Discover and integrate a diverse range of remote job listings with Jobicy's public API. This API offers the latest remote job opportunities across various industries and regions, making it a valuable resource for developers and businesses looking to enhance their job feed platforms.

License

Notifications You must be signed in to change notification settings

go-api-libs/jobicy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🌍 Remote Jobs API

Go Reference Official Documentation OpenAPI Go Report Card Code Coverage API Health License: MIT

Discover and integrate a diverse range of remote job listings with Jobicy's public API. This API offers the latest remote job opportunities across various industries and regions, making it a valuable resource for developers and businesses looking to enhance their job feed platforms. Supports filters for job region, industry, and keywords to help you target specific job markets.

Installation

To install the library, use the following command:

go get github.com/go-api-libs/jobicy/pkg/jobicy

Usage

Example:

package main

import (
	"context"

	"github.com/go-api-libs/jobicy/pkg/jobicy"
)

func main() {
	c, err := jobicy.NewClient()
	if err != nil {
		panic(err)
	}

	ctx := context.Background()
	jobsList, err := c.ListRemoteJobs(ctx, &jobicy.ListRemoteJobsParams{
		Count:    20,
		Geo:      "usa",
		Industry: "marketing",
		Tag:      "seo",
	})
	if err != nil {
		panic(err)
	}

	// Use jobsList object
}

Additional Information

Contributing

If you have any contributions to make, please submit a pull request or open an issue on the GitHub repository.

License

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

About

Go library for the Remote Jobs API/RSS Feed. Discover and integrate a diverse range of remote job listings with Jobicy's public API. This API offers the latest remote job opportunities across various industries and regions, making it a valuable resource for developers and businesses looking to enhance their job feed platforms.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published