Get All Jobs
curl --request GET \
--url https://api.example.com/api/v1/companies/me/jobsimport requests
url = "https://api.example.com/api/v1/companies/me/jobs"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/v1/companies/me/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://api.example.com/api/v1/companies/me/jobs",
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/companies/me/jobs"
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/companies/me/jobs")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/companies/me/jobs")
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{
"id": "<string>",
"title": "<string>",
"description": "<string>",
"requirements": {},
"responsibilities": {},
"location": {},
"salaryMin": {},
"salaryMax": {},
"jobType": {},
"workPreference": {},
"experienceLevel": {},
"status": {},
"deadline": {},
"publishedAt": {},
"company": {},
"skills": [
{}
]
}Direct Jobs
Get All Jobs
Retrieve all job postings for the authenticated company
GET
/
api
/
v1
/
companies
/
me
/
jobs
Get All Jobs
curl --request GET \
--url https://api.example.com/api/v1/companies/me/jobsimport requests
url = "https://api.example.com/api/v1/companies/me/jobs"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/v1/companies/me/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://api.example.com/api/v1/companies/me/jobs",
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/companies/me/jobs"
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/companies/me/jobs")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/companies/me/jobs")
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{
"id": "<string>",
"title": "<string>",
"description": "<string>",
"requirements": {},
"responsibilities": {},
"location": {},
"salaryMin": {},
"salaryMax": {},
"jobType": {},
"workPreference": {},
"experienceLevel": {},
"status": {},
"deadline": {},
"publishedAt": {},
"company": {},
"skills": [
{}
]
}Endpoint
GET /api/v1/companies/me/jobs
http://localhost:3000/api/v1
This endpoint requires authentication and Company role.
Authentication
Include the access token in the Authorization header:Authorization: Bearer YOUR_ACCESS_TOKEN
Description
Retrieve all job postings for the authenticated company. Results are ordered by creation date (most recent first).Response
Success Response (200 OK)
{
"success": true,
"data": [
{
"id": "6cc9f0af-10c0-4998-b252-fc6c52394759",
"title": "Backend Engineer",
"description": "Job Description",
"requirements": null,
"responsibilities": null,
"location": null,
"salaryMin": null,
"salaryMax": null,
"jobType": "FULL_TIME",
"workPreference": "REMOTE",
"experienceLevel": "MID",
"status": "PUBLISHED",
"deadline": null,
"publishedAt": "2026-02-22T14:51:00.000Z",
"company": {
"id": "8cfee915-6e24-4741-9493-fd5680743a84",
"name": "Tech Corp",
"logoUrl": null
},
"skills": [
{
"skillId": "1d1d1d93-c910-47e3-b2ff-5f5bc2ce0541",
"name": "Node.js"
}
]
}
],
"message": "Success",
"meta": {
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/companies/me/jobs",
"method": "GET"
}
}
Response Fields
string
Unique identifier for the job.
string
Job title.
string
Job description.
string | null
Job requirements.
string | null
Job responsibilities.
string | null
Job location.
number | null
Minimum salary.
number | null
Maximum salary.
enum
Employment type. Values:
FULL_TIME, PART_TIME, CONTRACT, FREELANCE, INTERNSHIPenum
Work arrangement. Values:
ONSITE, REMOTE, HYBRID, ANYenum
Required experience level. Values:
ENTRY, JUNIOR, MID, SENIOR, LEAD, MANAGERenum
Job status. Values:
DRAFT, PUBLISHED, PAUSED, CLOSEDstring | null
Application deadline (ISO 8601 format).
string | null
When the job was published (ISO 8601 format).
object
Company information.
array
Array of skill objects with skillId and name.
Error Responses
401 Unauthorized
{
"success": false,
"error": {
"message": "Unauthorized",
"statusCode": 401,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/companies/me/jobs",
"method": "GET",
"details": "Unauthorized"
}
}
403 Forbidden
{
"success": false,
"error": {
"message": "Forbidden resource",
"statusCode": 403,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/companies/me/jobs",
"method": "GET",
"details": "Forbidden"
}
}
Notes
Empty Array: If no jobs exist, an empty array is returned.
Sorting: Results are automatically sorted by creation date in descending order (most recent
first).
