https://github.com/remotebase/remotebase-api
The official public API of RemoteBase
https://github.com/remotebase/remotebase-api
Last synced: 5 months ago
JSON representation
The official public API of RemoteBase
- Host: GitHub
- URL: https://github.com/remotebase/remotebase-api
- Owner: remotebase
- Created: 2016-07-23T10:53:38.000Z (almost 10 years ago)
- Default Branch: gh-pages
- Last Pushed: 2016-09-08T05:46:44.000Z (almost 10 years ago)
- Last Synced: 2025-06-01T13:32:42.036Z (about 1 year ago)
- Language: CSS
- Homepage: https://remotebase.github.io/remotebase-api/
- Size: 32.2 KB
- Stars: 3
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RemoteBase API
The official API of [RemoteBase](https://remotebase.io).
**Currently not versioned. The API is still experimental and can change.**
## What is RemoteBase?
RemoteBase is an open database of remote companies and jobs, made by a developer.
## Honor code
* Access the API at a reasonable rate.
* Make something of your own. I don't mind if you build a clone of RemoteBase, but
the world needs to hear your voice, not mine.
## Current version
Access the endpoints at `http://api.remotebase.io/`. `v1` is coming soon.
## Endpoints
### Companies
* List companies
List all companies, or ones that match the filter.
`GET /companies`
*Parameters*
* name [string] - name of the company
* has_retreats [bool]
* technologies [string] - single value for a technology
* collaboration_methods [string] - A name of a collaboration method. Can supply multiple.
* communication_methods [string] - A name of a communication method. Can supply multiple.
* bootstrapped [bool]
* is_standalone [bool]
* team_size_min [number]
* team_size_max [number]
* page [int]
* per_page [int]
*Response*
```
Status: 200 OK
Link: ; rel=next"
[
{
name: "RemoteBase"
...
},
{
...
},
...
]
```
### jobs
* List jobs
List all jobs on RemoteBase
`GET /jobs`
## License
MIT