Remote OK is the #1 remote-only jobs board on the web. It has over 30,000+ remote job listings, adding new ones every day. With this API, now you can build apps with our data feed which covers 80% of remote jobs on the web. (Source)
To install the library, use the following command:
go get github.com/go-api-libs/remote-ok-jobs/pkg/remoteokjobs
package main
import (
"context"
"github.com/go-api-libs/remote-ok-jobs/pkg/remoteokjobs"
)
func main() {
c, err := remoteokjobs.NewClient()
if err != nil {
panic(err)
}
ctx := context.Background()
jobs, err := c.GetJobs(ctx)
if err != nil {
panic(err)
}
// Use jobs array
}
- 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.