Get CV Download URL
curl --request GET \
--url https://api.example.com/api/v1/cv/me/download-urlimport requests
url = "https://api.example.com/api/v1/cv/me/download-url"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/v1/cv/me/download-url', 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.example.com/api/v1/cv/me/download-url",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.example.com/api/v1/cv/me/download-url"
req, _ := http.NewRequest("GET", url, nil)
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.example.com/api/v1/cv/me/download-url")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/cv/me/download-url")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"downloadUrl": "<string>",
"expiresAt": "<string>",
"expiresIn": 123
}CV
Get CV Download URL
Get a presigned URL to download your uploaded CV
GET
/
api
/
v1
/
cv
/
me
/
download-url
Get CV Download URL
curl --request GET \
--url https://api.example.com/api/v1/cv/me/download-urlimport requests
url = "https://api.example.com/api/v1/cv/me/download-url"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/v1/cv/me/download-url', 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.example.com/api/v1/cv/me/download-url",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.example.com/api/v1/cv/me/download-url"
req, _ := http.NewRequest("GET", url, nil)
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.example.com/api/v1/cv/me/download-url")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/cv/me/download-url")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"downloadUrl": "<string>",
"expiresAt": "<string>",
"expiresIn": 123
}Endpoint
GET /api/v1/cv/me/download-url
http://localhost:3000/api/v1
This endpoint requires authentication and Job Seeker role.
Authentication
Include the access token in the Authorization header:Authorization: Bearer YOUR_ACCESS_TOKEN
Description
Get a presigned URL to download your uploaded CV. The download URL is valid for 1 hour.Response
Success Response (200 OK)
{
"success": true,
"data": {
"downloadUrl": "https://cvs.c0485e90a90f9be9ecd4e72559fee834.r2.cloudflarestorage.com/cvs/a9ff20fb-8010-4a22-8873-344c103726af/1771315860529-test-cv.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=c1feabbe8cd3c62e2dc015a4be9881f0%2F20260217%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20260217T084609Z&X-Amz-Expires=3600&X-Amz-Signature=71dc5e01b75f773ec8ecb720c3357904842e3ceb0f0a3b855e0351d6787ca836&X-Amz-SignedHeaders=host&x-id=GetObject",
"expiresAt": "2026-06-03T18:23:52.693Z",
"expiresIn": 3600
},
"message": "Success",
"meta": {
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/cv/me/download-url",
"method": "GET"
}
}
Response Fields
string
The presigned URL to download the CV file. This URL is valid for 1 hour (3600 seconds).
string
Expiration timestamp of the download URL (ISO 8601).
number
Time in seconds until the URL expires.
Error Responses
401 Unauthorized
{
"success": false,
"error": {
"message": "Unauthorized",
"statusCode": 401,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/cv/me/download-url",
"method": "GET",
"details": "Unauthorized"
}
}
403 Forbidden
{
"success": false,
"error": {
"message": "Forbidden resource",
"statusCode": 403,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/cv/me/download-url",
"method": "GET",
"details": "Forbidden"
}
}
404 Not Found - No CV
{
"success": false,
"error": {
"message": "No CV uploaded yet",
"statusCode": 404,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/cv/me/download-url",
"method": "GET",
"details": "Not Found"
}
}
Notes
URL Expiration: The download URL expires after 1 hour. If you need to download the file after
this time, request a new URL.
⌘I
