Remotive API
remotive.com · Company
Remote job listings from the Remotive job board — sorted by date, filterable by category and keyword. Free, no API key required.
Authentication
No authentication requiredFree to use with no key needed.
Sample Requests
GET
Get remote jobs
Get remote software development jobs.
https://remotive.com/api/remote-jobs?limit=5&category=software-dev
Hover any highlighted part to learn what it does
curl -X GET "https://remotive.com/api/remote-jobs?limit=5&category=software-dev"
import requests
params = {
"limit": "5",
"category": "software-dev"
}
response = requests.get(
"https://remotive.com/api/remote-jobs",
params=params,
)
print(response.json())const url = new URL('https://remotive.com/api/remote-jobs');
url.searchParams.set('limit', '5');
url.searchParams.set('category', 'software-dev');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://remotive.com/api/remote-jobs")
q := baseURL.Query()
q.Set("limit", "5")
q.Set("category", "software-dev")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://remotive.com/api/remote-jobs")
uri.query = URI.encode_www_form({
"limit" => "5",
"category" => "software-dev"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://remotive.com/api/remote-jobs?" . http_build_query([
"limit" => "5",
"category" => "software-dev"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
Search jobs
Search remote jobs by keyword.
https://remotive.com/api/remote-jobs?limit=5&search=react
Hover any highlighted part to learn what it does
curl -X GET "https://remotive.com/api/remote-jobs?limit=5&search=react"
import requests
params = {
"limit": "5",
"search": "react"
}
response = requests.get(
"https://remotive.com/api/remote-jobs",
params=params,
)
print(response.json())const url = new URL('https://remotive.com/api/remote-jobs');
url.searchParams.set('limit', '5');
url.searchParams.set('search', 'react');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://remotive.com/api/remote-jobs")
q := baseURL.Query()
q.Set("limit", "5")
q.Set("search", "react")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://remotive.com/api/remote-jobs")
uri.query = URI.encode_www_form({
"limit" => "5",
"search" => "react"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://remotive.com/api/remote-jobs?" . http_build_query([
"limit" => "5",
"search" => "react"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- No API key needed
- GET https://remotive.com/api/remote-jobs?limit=10
- Filter by category: software-dev, devops, design, marketing, customer-support, sales, product, business, data, qa, writing
- Search: ?search=python