List Resumes
curl --request GET \
--url https://api.mokaru.ai/v1/resume \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.mokaru.ai/v1/resume"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.mokaru.ai/v1/resume', 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.mokaru.ai/v1/resume",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.mokaru.ai/v1/resume"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.mokaru.ai/v1/resume")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mokaru.ai/v1/resume")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "<string>",
"name": "<string>",
"template": "<string>",
"isDefault": true,
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"total": 123,
"hasMore": true,
"limit": 123,
"offset": 123
}Resumes
List Resumes
List all resumes for the authenticated user
GET
/
v1
/
resume
List Resumes
curl --request GET \
--url https://api.mokaru.ai/v1/resume \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.mokaru.ai/v1/resume"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.mokaru.ai/v1/resume', 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.mokaru.ai/v1/resume",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.mokaru.ai/v1/resume"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.mokaru.ai/v1/resume")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mokaru.ai/v1/resume")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "<string>",
"name": "<string>",
"template": "<string>",
"isDefault": true,
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"total": 123,
"hasMore": true,
"limit": 123,
"offset": 123
}Overview
The List Resumes endpoint returns all resumes in your Mokaru account. Use this to find the right resume before exporting or updating it. Common use cases:- AI agent resume selection - let your AI agent browse your resumes and pick the best one for a specific job application.
- Resume inventory - see all your resumes at a glance with their templates and which one is set as default.
- Automation workflows - fetch your resume list in n8n or Make, then trigger exports or updates based on conditions.
Scope required:
resume:read | Rate limit: 60 requests/minRequest
GET /v1/resume
Query Parameters
number
default:"25"
Results per page (max 100)
number
default:"0"
Number of results to skip for pagination
Example
curl "https://api.mokaru.ai/v1/resume?limit=10" \
-H "Authorization: Bearer mk_your_key"
Response
array
number
Total number of resumes
boolean
Whether more pages are available
number
Current page size
number
Current offset
{
"data": [
{
"id": "clx1234...",
"name": "Software Engineer Resume",
"template": "classic",
"isDefault": true,
"createdAt": "2026-01-15T10:00:00.000Z",
"updatedAt": "2026-03-20T14:30:00.000Z"
}
],
"total": 3,
"hasMore": false,
"limit": 25,
"offset": 0
}
Was this page helpful?
