Get All Applications
curl --request GET \
--url https://api.example.com/api/v1/companies/me/applicationsimport requests
url = "https://api.example.com/api/v1/companies/me/applications"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/v1/companies/me/applications', 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/applications",
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/applications"
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/applications")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/companies/me/applications")
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_bodyCompany Applications
Get All Applications
Retrieve all applications across all company job postings
GET
/
api
/
v1
/
companies
/
me
/
applications
Get All Applications
curl --request GET \
--url https://api.example.com/api/v1/companies/me/applicationsimport requests
url = "https://api.example.com/api/v1/companies/me/applications"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/v1/companies/me/applications', 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/applications",
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/applications"
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/applications")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/companies/me/applications")
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_bodyEndpoint
GET /api/v1/companies/me/applications
http://localhost:3000/api/v1
This endpoint requires Company authentication.
Headers
| Header | Value |
|---|---|
| Authorization | Bearer |
Query Parameters
string
Filter by specific job ID.
enum
Filter by application status. Can be repeated for multiple values. -
PENDING - REVIEWED -
SHORTLISTED - INTERVIEW_SCHEDULED - REJECTED - HIRED - WITHDRAWNnumber
Page number for pagination (default: 1).
number
Number of results per page (default: 20).
Request Examples
Pagination only
# Page 1, 20 items (defaults)
GET /api/v1/companies/me/applications
# Page 2, 50 items per page
GET /api/v1/companies/me/applications?page=2&limit=50
Filter by job
# Applications for a specific job
GET /api/v1/companies/me/applications?jobId=550e8400-e29b-41d4-a716-446655440000
Filter by status (single)
# All pending applications across all jobs
GET /api/v1/companies/me/applications?status=PENDING
# All hired candidates
GET /api/v1/companies/me/applications?status=HIRED
Filter by status (multi-value)
# Pending + Reviewed
GET /api/v1/companies/me/applications?status=PENDING&status=REVIEWED
# Active pipeline statuses
GET /api/v1/companies/me/applications?status=PENDING&status=REVIEWED&status=SHORTLISTED&status=INTERVIEW_SCHEDULED
# Rejected + Withdrawn (archived)
GET /api/v1/companies/me/applications?status=REJECTED&status=WITHDRAWN
Combined filters
# Pending applications for a specific job
GET /api/v1/companies/me/applications?jobId=550e8400-e29b-41d4-a716-446655440000&status=PENDING
# Active pipeline for a specific job
GET /api/v1/companies/me/applications?jobId=550e8400-e29b-41d4-a716-446655440000&status=PENDING&status=REVIEWED&status=SHORTLISTED&status=INTERVIEW_SCHEDULED
# Hired candidates for a specific job
GET /api/v1/companies/me/applications?jobId=550e8400-e29b-41d4-a716-446655440000&status=HIRED
# All filters combined
GET /api/v1/companies/me/applications?jobId=550e8400-e29b-41d4-a716-446655440000&status=PENDING&status=REVIEWED&page=1&limit=20
Response
{
"success": true,
"data": {
"applications": [
{
"id": "uuid",
"status": "PENDING",
"appliedAt": "2025-02-20T10:00:00Z",
"updatedAt": "2025-02-20T10:00:00Z",
"matchScore": 85,
"jobSeeker": {
"id": "uuid",
"firstName": "John",
"lastName": "Doe",
"profileImageUrl": "https://...",
"profile": {
"title": "Software Engineer",
"location": "Cairo, Egypt",
"yearsOfExperience": 3
}
},
"directJob": {
"id": "uuid",
"title": "Software Engineer",
"location": "Cairo, Egypt",
"jobType": "FULL_TIME"
}
}
],
"total": 50,
"page": 1,
"limit": 20,
"totalPages": 3
},
"message": "Applications retrieved successfully",
"meta": {
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/companies/me/applications",
"method": "GET"
}
}
Error Responses
400 Bad Request - Validation Error
{
"success": false,
"error": {
"message": ["jobId must be a UUID"],
"statusCode": 400,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/companies/me/applications",
"method": "GET",
"details": "Bad Request"
}
}
401 Unauthorized
{
"success": false,
"error": {
"message": "Unauthorized",
"statusCode": 401,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/companies/me/applications",
"method": "GET",
"details": "Unauthorized"
}
}
403 Forbidden
{
"success": false,
"error": {
"message": "Forbidden resource",
"statusCode": 403,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/companies/me/applications",
"method": "GET",
"details": "Forbidden"
}
}
⌘I
