Skip to content

Go library for the Remote OK Jobs API. 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.

License

Notifications You must be signed in to change notification settings

go-api-libs/remote-ok-jobs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Go library for the Remote OK Jobs API. 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.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published