Find an API

Search public APIs with auth details & Postman guides

← All APIs

Remotive API

remotive.com · Company

Company No Auth Free & Open Jobs Remote Work Employment

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

Get Postman ↗
  1. No API key needed
  2. GET https://remotive.com/api/remote-jobs?limit=10
  3. Filter by category: software-dev, devops, design, marketing, customer-support, sales, product, business, data, qa, writing
  4. Search: ?search=python

What can you build with Remotive API?

Remotive API is a Company API. Developers commonly use company APIs for:

  • enriching CRM records with company firmographics
  • building lead-generation and prospecting tools
  • verifying business identity and registration details
  • monitoring competitors and market intelligence
  • powering B2B data enrichment pipelines

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Remotive API is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗