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.
To install the library, use the following command:
go get github.com/go-api-libs/jobicy/pkg/jobicy
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
}
- Go Reference: The Go reference documentation for the client package.
- Official Documentation: The official API documentation.
- OpenAPI Specification: The OpenAPI 3.1.0 specification.
- Go Report Card: Check the code quality report.
If you have any contributions to make, please submit a pull request or open an issue on the GitHub repository.
This project is licensed under the MIT License. See the LICENSE file for details.