{"id":24211495,"url":"https://github.com/go-api-libs/remote-ok-jobs","last_synced_at":"2026-05-11T00:48:01.314Z","repository":{"id":266565343,"uuid":"898099724","full_name":"go-api-libs/remote-ok-jobs","owner":"go-api-libs","description":"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.","archived":false,"fork":false,"pushed_at":"2025-01-19T19:24:54.000Z","size":1277,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-03-03T16:22:00.783Z","etag":null,"topics":["api","api-client","api-library","go","golang","integration","job","job-search","job-search-website","jobs","jobsearch","openapi","openapi3","remote-ok-jobs","remote-ok-jobs-api","remoteokjobs"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/go-api-libs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-03T19:37:40.000Z","updated_at":"2025-01-19T19:24:56.000Z","dependencies_parsed_at":"2025-01-14T02:35:31.314Z","dependency_job_id":"53efc0be-c34b-4e4f-9f16-df9f6ab5f295","html_url":"https://github.com/go-api-libs/remote-ok-jobs","commit_stats":null,"previous_names":["go-api-libs/remote-ok-jobs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/go-api-libs/remote-ok-jobs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-api-libs%2Fremote-ok-jobs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-api-libs%2Fremote-ok-jobs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-api-libs%2Fremote-ok-jobs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-api-libs%2Fremote-ok-jobs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/go-api-libs","download_url":"https://codeload.github.com/go-api-libs/remote-ok-jobs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-api-libs%2Fremote-ok-jobs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32877246,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-10T13:40:02.631Z","status":"ssl_error","status_checked_at":"2026-05-10T13:40:02.145Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","api-client","api-library","go","golang","integration","job","job-search","job-search-website","jobs","jobsearch","openapi","openapi3","remote-ok-jobs","remote-ok-jobs-api","remoteokjobs"],"created_at":"2025-01-14T02:35:26.278Z","updated_at":"2026-05-11T00:48:01.291Z","avatar_url":"https://github.com/go-api-libs.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🆗 Remote OK Jobs API\n[![Go Reference](https://pkg.go.dev/badge/github.com/go-api-libs/remote-ok-jobs.svg)](https://pkg.go.dev/github.com/go-api-libs/remote-ok-jobs/pkg/remoteokjobs)\n[![Official Documentation](https://img.shields.io/badge/docs-API-blue)](https://www.remoteok.com)\n[![OpenAPI](https://img.shields.io/badge/OpenAPI-3.1-blue)](/api/openapi.json)\n[![Go Report Card](https://goreportcard.com/badge/github.com/go-api-libs/remote-ok-jobs)](https://goreportcard.com/report/github.com/go-api-libs/remote-ok-jobs)\n![Code Coverage](https://img.shields.io/badge/coverage-100%25-brightgreen)\n![API Health](https://img.shields.io/badge/API_health-70%25-yellowgreen)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE)\n\nRemote 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](https://freepublicapis.com/remote-ok-jobs-api))\n\n## Installation\n\nTo install the library, use the following command:\n\n```shell\ngo get github.com/go-api-libs/remote-ok-jobs/pkg/remoteokjobs\n```\n\n## Usage\n\n### Example: Get Remote Jobs\n\n```go\npackage main\n\nimport (\n\t\"context\"\n\n\t\"github.com/go-api-libs/remote-ok-jobs/pkg/remoteokjobs\"\n)\n\nfunc main() {\n\tc, err := remoteokjobs.NewClient()\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tctx := context.Background()\n\tjobs, err := c.GetJobs(ctx)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\t// Use jobs slice\n}\n\n```\n\n## Additional Information\n\n- [**Go Reference**](https://pkg.go.dev/github.com/go-api-libs/remote-ok-jobs/pkg/remoteokjobs): The Go reference documentation for the client package.\n- [**Official Documentation**](https://www.remoteok.com): The official API documentation.\n- [**OpenAPI Specification**](./api/openapi.json): The OpenAPI 3.1.0 specification.\n- [**Go Report Card**](https://goreportcard.com/report/github.com/go-api-libs/remote-ok-jobs): Check the code quality report.\n\n## Contributing\n\nIf you have any contributions to make, please submit a pull request or open an issue on the [GitHub repository](https://github.com/go-api-libs/remote-ok-jobs).\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgo-api-libs%2Fremote-ok-jobs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgo-api-libs%2Fremote-ok-jobs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgo-api-libs%2Fremote-ok-jobs/lists"}