The Muse API
www.themuse.com · Company
Job listings with company culture profiles — roles, company descriptions, photos, and videos. 100,000+ curated job listings. No API key required for basic access.
Authentication
No authentication requiredFree to use with no key needed.
Sample Requests
GET
Search jobs
Search entry-level software engineer jobs.
https://www.themuse.com/api/public/jobs?page=0&level=Entry Level&category=Software Engineer
Hover any highlighted part to learn what it does
curl -X GET "https://www.themuse.com/api/public/jobs?page=0&level=Entry%20Level&category=Software%20Engineer"
import requests
params = {
"page": "0",
"level": "Entry Level",
"category": "Software Engineer"
}
response = requests.get(
"https://www.themuse.com/api/public/jobs",
params=params,
)
print(response.json())const url = new URL('https://www.themuse.com/api/public/jobs');
url.searchParams.set('page', '0');
url.searchParams.set('level', 'Entry Level');
url.searchParams.set('category', 'Software Engineer');
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://www.themuse.com/api/public/jobs")
q := baseURL.Query()
q.Set("page", "0")
q.Set("level", "Entry Level")
q.Set("category", "Software Engineer")
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://www.themuse.com/api/public/jobs")
uri.query = URI.encode_www_form({
"page" => "0",
"level" => "Entry Level",
"category" => "Software Engineer"
})
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://www.themuse.com/api/public/jobs?" . http_build_query([
"page" => "0",
"level" => "Entry Level",
"category" => "Software Engineer"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
Get companies
Get tech companies with culture profiles.
https://www.themuse.com/api/public/companies?page=0&industry=Tech
Hover any highlighted part to learn what it does
curl -X GET "https://www.themuse.com/api/public/companies?page=0&industry=Tech"
import requests
params = {
"page": "0",
"industry": "Tech"
}
response = requests.get(
"https://www.themuse.com/api/public/companies",
params=params,
)
print(response.json())const url = new URL('https://www.themuse.com/api/public/companies');
url.searchParams.set('page', '0');
url.searchParams.set('industry', 'Tech');
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://www.themuse.com/api/public/companies")
q := baseURL.Query()
q.Set("page", "0")
q.Set("industry", "Tech")
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://www.themuse.com/api/public/companies")
uri.query = URI.encode_www_form({
"page" => "0",
"industry" => "Tech"
})
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://www.themuse.com/api/public/companies?" . http_build_query([
"page" => "0",
"industry" => "Tech"
]);
$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://www.themuse.com/api/public/jobs?category=Engineering&page=0
- Filter by level: Entry Level, Mid Level, Senior Level, Management
- Companies: GET /companies?industry=Finance&page=0