Get My Bookmarks
curl --request GET \
--url https://api.example.com/api/v1/jobs/bookmarkimport requests
url = "https://api.example.com/api/v1/jobs/bookmark"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/v1/jobs/bookmark', 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/jobs/bookmark",
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/jobs/bookmark"
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/jobs/bookmark")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/jobs/bookmark")
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{
"data": [
{
"bookmarkId": "<string>",
"bookmarkedAt": "<string>",
"job": {}
}
]
}Jobs
Get My Bookmarks
Get all bookmarked jobs for the current user
GET
/
api
/
v1
/
jobs
/
bookmark
Get My Bookmarks
curl --request GET \
--url https://api.example.com/api/v1/jobs/bookmarkimport requests
url = "https://api.example.com/api/v1/jobs/bookmark"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/v1/jobs/bookmark', 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/jobs/bookmark",
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/jobs/bookmark"
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/jobs/bookmark")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/jobs/bookmark")
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{
"data": [
{
"bookmarkId": "<string>",
"bookmarkedAt": "<string>",
"job": {}
}
]
}Endpoint
GET /api/v1/jobs/bookmark
http://localhost:3000/api/v1
This endpoint requires authentication (Job Seeker only).
Response (200 OK)
{
"success": true,
"data": [
{
"bookmarkId": "510209e1-e4b9-4036-ae4d-aff0c0039360",
"bookmarkedAt": "2026-02-22T22:34:05.491Z",
"job": {
"id": "1b6a74d1-d9aa-4e71-81b6-51d3187e5d93",
"type": "scraped",
"title": "Scraped Job 388",
"description": null,
"location": null,
"salary": null,
"jobType": null,
"companyName": "Company 388",
"sourceUrl": "https://job.com/388",
"postedAt": null,
"source": "LinkedIn",
"skills": [
{ "skillId": "8f8b2d90-7a9c-4b73-8e51-d593e22d5f14", "name": "Skill 338" },
{ "skillId": "3ce252ef-0e58-4083-9547-23dabd207c3b", "name": "Skill 807" }
]
}
}
],
"total": 1,
"page": 1,
"limit": 10,
"totalPages": 1,
"message": "Bookmarks retrieved successfully",
"meta": {
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/jobs/bookmark",
"method": "GET"
}
}
Notes
- Returns empty array if no bookmarks exist.
- Each bookmark includes the full job details.
Error Responses
401 Unauthorized
{
"success": false,
"error": {
"message": "Unauthorized",
"statusCode": 401,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/jobs/bookmark",
"method": "GET",
"details": "Unauthorized"
}
}
403 Forbidden
{
"success": false,
"error": {
"message": "Forbidden resource",
"statusCode": 403,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/jobs/bookmark",
"method": "GET",
"details": "Forbidden"
}
}
Example
curl -X GET http://localhost:3000/api/v1/jobs/bookmark \
-H "Authorization: Bearer <token>"
⌘I
