Get Resume
curl --request GET \
--url https://api.hirebase.org/v2/resumes/{resume_id} \
--header 'x-api-key: <x-api-key>'import requests
url = "https://api.hirebase.org/v2/resumes/{resume_id}"
headers = {"x-api-key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<x-api-key>'}};
fetch('https://api.hirebase.org/v2/resumes/{resume_id}', 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://api.hirebase.org/v2/resumes/{resume_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.hirebase.org/v2/resumes/{resume_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<x-api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.hirebase.org/v2/resumes/{resume_id}")
.header("x-api-key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hirebase.org/v2/resumes/{resume_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<x-api-key>'
response = http.request(request)
puts response.read_body{
"_id": "<string>",
"user_id": "<string>",
"resume_url": "<string>",
"parsed_data": {},
"status": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}Resumes
Get Resume
Retrieve a stored resume record by id.
GET
/
v2
/
resumes
/
{resume_id}
Get Resume
curl --request GET \
--url https://api.hirebase.org/v2/resumes/{resume_id} \
--header 'x-api-key: <x-api-key>'import requests
url = "https://api.hirebase.org/v2/resumes/{resume_id}"
headers = {"x-api-key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<x-api-key>'}};
fetch('https://api.hirebase.org/v2/resumes/{resume_id}', 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://api.hirebase.org/v2/resumes/{resume_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.hirebase.org/v2/resumes/{resume_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<x-api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.hirebase.org/v2/resumes/{resume_id}")
.header("x-api-key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hirebase.org/v2/resumes/{resume_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<x-api-key>'
response = http.request(request)
puts response.read_body{
"_id": "<string>",
"user_id": "<string>",
"resume_url": "<string>",
"parsed_data": {},
"status": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}Retrieve a resume record previously created via Upload Resume, including its parsed data and current status.
Endpoint
GET /v2/resumes/{resume_id}
Authentication
string
required
Your Hirebase API key. Required — this is an always-authenticated endpoint.
Path Parameters
string
required
The
_id returned by Upload Resume.Response
Returns the same record shape as Upload Resume.string
Resume record id.
string
Owner of the record.
string
Stored file URL.
object | null
Structured resume fields, or
null if the resume has not been parsed yet.string
"uploaded" or "parsed".string
Creation timestamp (ISO 8601).
string
Last-updated timestamp (ISO 8601).
Example Request
curl -X GET "https://api.hirebase.org/v2/resumes/6a3c15d537f33c238c70a14e" \
-H "x-api-key: YOUR_API_KEY"
Example Response
{
"_id": "6a3c15d537f33c238c70a14e",
"user_id": "6678eefb1d5870366fade012",
"resume_url": "https://.../resume.pdf",
"parsed_data": null,
"status": "uploaded",
"created_at": "2026-06-24T17:42:08.512Z",
"updated_at": "2026-06-24T17:42:08.512Z"
}