Skip to content

Latest commit

 

History

History
63 lines (44 loc) · 2.24 KB

README.md

File metadata and controls

63 lines (44 loc) · 2.24 KB

🆗 Remote OK Jobs API

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

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)

Installation

To install the library, use the following command:

go get github.com/go-api-libs/remote-ok-jobs/pkg/remoteokjobs

Usage

Example: Get Remote Jobs

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
}

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.