curl --request POST \
--url https://interview.qode.world/api/v1/jobs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Backend Engineer",
"description": "<h3>About the role</h3><p>We are hiring a Backend Engineer with strong TypeScript and Postgres experience to build and scale our API platform, working closely with product and data teams to ship reliable, well-tested services.</p><p><b>Workplace:</b> Hybrid — Ho Chi Minh City, Vietnam</p><h3>Responsibilities</h3><ul><li>Design, build, and operate high-throughput REST services in Node.js and TypeScript</li><li>Own PostgreSQL schema design, query performance, and data integrity</li><li>Set up observability, alerting, and CI/CD for the services you own</li><li>Review code and mentor junior engineers</li></ul><h3>Requirements</h3><ul><li>5+ years of backend experience in production environments</li><li>Strong SQL and data-modeling skills</li><li>Experience with distributed systems, message queues, and caching</li><li>Clear written and spoken English</li></ul>"
}
'import requests
url = "https://interview.qode.world/api/v1/jobs"
payload = {
"title": "Backend Engineer",
"description": "<h3>About the role</h3><p>We are hiring a Backend Engineer with strong TypeScript and Postgres experience to build and scale our API platform, working closely with product and data teams to ship reliable, well-tested services.</p><p><b>Workplace:</b> Hybrid — Ho Chi Minh City, Vietnam</p><h3>Responsibilities</h3><ul><li>Design, build, and operate high-throughput REST services in Node.js and TypeScript</li><li>Own PostgreSQL schema design, query performance, and data integrity</li><li>Set up observability, alerting, and CI/CD for the services you own</li><li>Review code and mentor junior engineers</li></ul><h3>Requirements</h3><ul><li>5+ years of backend experience in production environments</li><li>Strong SQL and data-modeling skills</li><li>Experience with distributed systems, message queues, and caching</li><li>Clear written and spoken English</li></ul>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
title: 'Backend Engineer',
description: '<h3>About the role</h3><p>We are hiring a Backend Engineer with strong TypeScript and Postgres experience to build and scale our API platform, working closely with product and data teams to ship reliable, well-tested services.</p><p><b>Workplace:</b> Hybrid — Ho Chi Minh City, Vietnam</p><h3>Responsibilities</h3><ul><li>Design, build, and operate high-throughput REST services in Node.js and TypeScript</li><li>Own PostgreSQL schema design, query performance, and data integrity</li><li>Set up observability, alerting, and CI/CD for the services you own</li><li>Review code and mentor junior engineers</li></ul><h3>Requirements</h3><ul><li>5+ years of backend experience in production environments</li><li>Strong SQL and data-modeling skills</li><li>Experience with distributed systems, message queues, and caching</li><li>Clear written and spoken English</li></ul>'
})
};
fetch('https://interview.qode.world/api/v1/jobs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://interview.qode.world/api/v1/jobs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'title' => 'Backend Engineer',
'description' => '<h3>About the role</h3><p>We are hiring a Backend Engineer with strong TypeScript and Postgres experience to build and scale our API platform, working closely with product and data teams to ship reliable, well-tested services.</p><p><b>Workplace:</b> Hybrid — Ho Chi Minh City, Vietnam</p><h3>Responsibilities</h3><ul><li>Design, build, and operate high-throughput REST services in Node.js and TypeScript</li><li>Own PostgreSQL schema design, query performance, and data integrity</li><li>Set up observability, alerting, and CI/CD for the services you own</li><li>Review code and mentor junior engineers</li></ul><h3>Requirements</h3><ul><li>5+ years of backend experience in production environments</li><li>Strong SQL and data-modeling skills</li><li>Experience with distributed systems, message queues, and caching</li><li>Clear written and spoken English</li></ul>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://interview.qode.world/api/v1/jobs"
payload := strings.NewReader("{\n \"title\": \"Backend Engineer\",\n \"description\": \"<h3>About the role</h3><p>We are hiring a Backend Engineer with strong TypeScript and Postgres experience to build and scale our API platform, working closely with product and data teams to ship reliable, well-tested services.</p><p><b>Workplace:</b> Hybrid — Ho Chi Minh City, Vietnam</p><h3>Responsibilities</h3><ul><li>Design, build, and operate high-throughput REST services in Node.js and TypeScript</li><li>Own PostgreSQL schema design, query performance, and data integrity</li><li>Set up observability, alerting, and CI/CD for the services you own</li><li>Review code and mentor junior engineers</li></ul><h3>Requirements</h3><ul><li>5+ years of backend experience in production environments</li><li>Strong SQL and data-modeling skills</li><li>Experience with distributed systems, message queues, and caching</li><li>Clear written and spoken English</li></ul>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://interview.qode.world/api/v1/jobs")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"title\": \"Backend Engineer\",\n \"description\": \"<h3>About the role</h3><p>We are hiring a Backend Engineer with strong TypeScript and Postgres experience to build and scale our API platform, working closely with product and data teams to ship reliable, well-tested services.</p><p><b>Workplace:</b> Hybrid — Ho Chi Minh City, Vietnam</p><h3>Responsibilities</h3><ul><li>Design, build, and operate high-throughput REST services in Node.js and TypeScript</li><li>Own PostgreSQL schema design, query performance, and data integrity</li><li>Set up observability, alerting, and CI/CD for the services you own</li><li>Review code and mentor junior engineers</li></ul><h3>Requirements</h3><ul><li>5+ years of backend experience in production environments</li><li>Strong SQL and data-modeling skills</li><li>Experience with distributed systems, message queues, and caching</li><li>Clear written and spoken English</li></ul>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://interview.qode.world/api/v1/jobs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"title\": \"Backend Engineer\",\n \"description\": \"<h3>About the role</h3><p>We are hiring a Backend Engineer with strong TypeScript and Postgres experience to build and scale our API platform, working closely with product and data teams to ship reliable, well-tested services.</p><p><b>Workplace:</b> Hybrid — Ho Chi Minh City, Vietnam</p><h3>Responsibilities</h3><ul><li>Design, build, and operate high-throughput REST services in Node.js and TypeScript</li><li>Own PostgreSQL schema design, query performance, and data integrity</li><li>Set up observability, alerting, and CI/CD for the services you own</li><li>Review code and mentor junior engineers</li></ul><h3>Requirements</h3><ul><li>5+ years of backend experience in production environments</li><li>Strong SQL and data-modeling skills</li><li>Experience with distributed systems, message queues, and caching</li><li>Clear written and spoken English</li></ul>\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"qodeJobId": "826ae7c5-1f2a-4c3d-9b8e-2a1c4d5e6f70",
"name": "Backend Engineer"
}
}{
"status": 401,
"errors": "Invalid API key"
}{
"status": 401,
"errors": "<string>"
}{
"status": 422,
"errors": "The job description is missing required information: workplace type (e.g. \"On-site\", \"Remote\", \"Hybrid\"); location (a city or country). Add the missing details to the description and try again."
}{
"status": 401,
"errors": "<string>"
}Create a job
Create a job from a title and job description, then interview candidates against it.
curl --request POST \
--url https://interview.qode.world/api/v1/jobs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Backend Engineer",
"description": "<h3>About the role</h3><p>We are hiring a Backend Engineer with strong TypeScript and Postgres experience to build and scale our API platform, working closely with product and data teams to ship reliable, well-tested services.</p><p><b>Workplace:</b> Hybrid — Ho Chi Minh City, Vietnam</p><h3>Responsibilities</h3><ul><li>Design, build, and operate high-throughput REST services in Node.js and TypeScript</li><li>Own PostgreSQL schema design, query performance, and data integrity</li><li>Set up observability, alerting, and CI/CD for the services you own</li><li>Review code and mentor junior engineers</li></ul><h3>Requirements</h3><ul><li>5+ years of backend experience in production environments</li><li>Strong SQL and data-modeling skills</li><li>Experience with distributed systems, message queues, and caching</li><li>Clear written and spoken English</li></ul>"
}
'import requests
url = "https://interview.qode.world/api/v1/jobs"
payload = {
"title": "Backend Engineer",
"description": "<h3>About the role</h3><p>We are hiring a Backend Engineer with strong TypeScript and Postgres experience to build and scale our API platform, working closely with product and data teams to ship reliable, well-tested services.</p><p><b>Workplace:</b> Hybrid — Ho Chi Minh City, Vietnam</p><h3>Responsibilities</h3><ul><li>Design, build, and operate high-throughput REST services in Node.js and TypeScript</li><li>Own PostgreSQL schema design, query performance, and data integrity</li><li>Set up observability, alerting, and CI/CD for the services you own</li><li>Review code and mentor junior engineers</li></ul><h3>Requirements</h3><ul><li>5+ years of backend experience in production environments</li><li>Strong SQL and data-modeling skills</li><li>Experience with distributed systems, message queues, and caching</li><li>Clear written and spoken English</li></ul>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
title: 'Backend Engineer',
description: '<h3>About the role</h3><p>We are hiring a Backend Engineer with strong TypeScript and Postgres experience to build and scale our API platform, working closely with product and data teams to ship reliable, well-tested services.</p><p><b>Workplace:</b> Hybrid — Ho Chi Minh City, Vietnam</p><h3>Responsibilities</h3><ul><li>Design, build, and operate high-throughput REST services in Node.js and TypeScript</li><li>Own PostgreSQL schema design, query performance, and data integrity</li><li>Set up observability, alerting, and CI/CD for the services you own</li><li>Review code and mentor junior engineers</li></ul><h3>Requirements</h3><ul><li>5+ years of backend experience in production environments</li><li>Strong SQL and data-modeling skills</li><li>Experience with distributed systems, message queues, and caching</li><li>Clear written and spoken English</li></ul>'
})
};
fetch('https://interview.qode.world/api/v1/jobs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://interview.qode.world/api/v1/jobs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'title' => 'Backend Engineer',
'description' => '<h3>About the role</h3><p>We are hiring a Backend Engineer with strong TypeScript and Postgres experience to build and scale our API platform, working closely with product and data teams to ship reliable, well-tested services.</p><p><b>Workplace:</b> Hybrid — Ho Chi Minh City, Vietnam</p><h3>Responsibilities</h3><ul><li>Design, build, and operate high-throughput REST services in Node.js and TypeScript</li><li>Own PostgreSQL schema design, query performance, and data integrity</li><li>Set up observability, alerting, and CI/CD for the services you own</li><li>Review code and mentor junior engineers</li></ul><h3>Requirements</h3><ul><li>5+ years of backend experience in production environments</li><li>Strong SQL and data-modeling skills</li><li>Experience with distributed systems, message queues, and caching</li><li>Clear written and spoken English</li></ul>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://interview.qode.world/api/v1/jobs"
payload := strings.NewReader("{\n \"title\": \"Backend Engineer\",\n \"description\": \"<h3>About the role</h3><p>We are hiring a Backend Engineer with strong TypeScript and Postgres experience to build and scale our API platform, working closely with product and data teams to ship reliable, well-tested services.</p><p><b>Workplace:</b> Hybrid — Ho Chi Minh City, Vietnam</p><h3>Responsibilities</h3><ul><li>Design, build, and operate high-throughput REST services in Node.js and TypeScript</li><li>Own PostgreSQL schema design, query performance, and data integrity</li><li>Set up observability, alerting, and CI/CD for the services you own</li><li>Review code and mentor junior engineers</li></ul><h3>Requirements</h3><ul><li>5+ years of backend experience in production environments</li><li>Strong SQL and data-modeling skills</li><li>Experience with distributed systems, message queues, and caching</li><li>Clear written and spoken English</li></ul>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://interview.qode.world/api/v1/jobs")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"title\": \"Backend Engineer\",\n \"description\": \"<h3>About the role</h3><p>We are hiring a Backend Engineer with strong TypeScript and Postgres experience to build and scale our API platform, working closely with product and data teams to ship reliable, well-tested services.</p><p><b>Workplace:</b> Hybrid — Ho Chi Minh City, Vietnam</p><h3>Responsibilities</h3><ul><li>Design, build, and operate high-throughput REST services in Node.js and TypeScript</li><li>Own PostgreSQL schema design, query performance, and data integrity</li><li>Set up observability, alerting, and CI/CD for the services you own</li><li>Review code and mentor junior engineers</li></ul><h3>Requirements</h3><ul><li>5+ years of backend experience in production environments</li><li>Strong SQL and data-modeling skills</li><li>Experience with distributed systems, message queues, and caching</li><li>Clear written and spoken English</li></ul>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://interview.qode.world/api/v1/jobs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"title\": \"Backend Engineer\",\n \"description\": \"<h3>About the role</h3><p>We are hiring a Backend Engineer with strong TypeScript and Postgres experience to build and scale our API platform, working closely with product and data teams to ship reliable, well-tested services.</p><p><b>Workplace:</b> Hybrid — Ho Chi Minh City, Vietnam</p><h3>Responsibilities</h3><ul><li>Design, build, and operate high-throughput REST services in Node.js and TypeScript</li><li>Own PostgreSQL schema design, query performance, and data integrity</li><li>Set up observability, alerting, and CI/CD for the services you own</li><li>Review code and mentor junior engineers</li></ul><h3>Requirements</h3><ul><li>5+ years of backend experience in production environments</li><li>Strong SQL and data-modeling skills</li><li>Experience with distributed systems, message queues, and caching</li><li>Clear written and spoken English</li></ul>\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"qodeJobId": "826ae7c5-1f2a-4c3d-9b8e-2a1c4d5e6f70",
"name": "Backend Engineer"
}
}{
"status": 401,
"errors": "Invalid API key"
}{
"status": 401,
"errors": "<string>"
}{
"status": 422,
"errors": "The job description is missing required information: workplace type (e.g. \"On-site\", \"Remote\", \"Hybrid\"); location (a city or country). Add the missing details to the description and try again."
}{
"status": 401,
"errors": "<string>"
}Authorizations
Provide the API key issued to you by your organization admin. Send it as Authorization: Bearer <api-key> on every request.
Body
Job title. Becomes the job name and the created interview's name.
1 - 80The job description (JD), minimum 700 characters. Send it as rich text — HTML markup (<p>, <ul>, <li>, <br>) or at least explicit line breaks (\n) — not a single flattened plain-text line: the JD is stored and rendered as-is (JD PDF, interview context), so unformatted text loses headings, bullets, and line breaks. It must state a workplace type (e.g. On-site, Remote, Hybrid) and a location (a city or country) — both are extracted from the text, and a description missing either is rejected with a 422 naming what to add.
700 - 20000Optional. Interview language for the auto-created AI interviewer. Defaults to EN.
DE, EN, EN_IN, ES, FR, ID, JA, KO, NL, VI