Skip to content

Latest commit

 

History

History
68 lines (49 loc) · 2.36 KB

README.md

File metadata and controls

68 lines (49 loc) · 2.36 KB

🌍 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.