Create Resume Share
curl --request POST \
--url https://api.mokaru.ai/v1/resume/{id}/share \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"blurOptions": {}
}
'import requests
url = "https://api.mokaru.ai/v1/resume/{id}/share"
payload = { "blurOptions": {} }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({blurOptions: {}})
};
fetch('https://api.mokaru.ai/v1/resume/{id}/share', 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/{id}/share",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'blurOptions' => [
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mokaru.ai/v1/resume/{id}/share"
payload := strings.NewReader("{\n \"blurOptions\": {}\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.mokaru.ai/v1/resume/{id}/share")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"blurOptions\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mokaru.ai/v1/resume/{id}/share")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"blurOptions\": {}\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"shareId": "<string>",
"shareUrl": "<string>",
"createdAt": "<string>",
"reused": true
}Resume Sharing
Create Resume Share
Create a public share link for a resume
POST
/
v1
/
resume
/
{id}
/
share
Create Resume Share
curl --request POST \
--url https://api.mokaru.ai/v1/resume/{id}/share \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"blurOptions": {}
}
'import requests
url = "https://api.mokaru.ai/v1/resume/{id}/share"
payload = { "blurOptions": {} }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({blurOptions: {}})
};
fetch('https://api.mokaru.ai/v1/resume/{id}/share', 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/{id}/share",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'blurOptions' => [
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mokaru.ai/v1/resume/{id}/share"
payload := strings.NewReader("{\n \"blurOptions\": {}\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.mokaru.ai/v1/resume/{id}/share")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"blurOptions\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mokaru.ai/v1/resume/{id}/share")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"blurOptions\": {}\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"shareId": "<string>",
"shareUrl": "<string>",
"createdAt": "<string>",
"reused": true
}Overview
Generate a public share link for a resume. The endpoint snapshots the resume’s current cvData, design settings, section order and optional fields into aEmpResumeShare row so the shared page renders the state at share-creation time, independent of later edits to the underlying resume.
If a share already exists for this resume, the existing link is returned (upsert behaviour).
Common use cases:
- Send your CV without a PDF - share a live web URL instead of attaching a file.
- Privacy-respecting share - blur company names, institutions, LinkedIn, etc. via
blurOptions. - AI agent application flow - autofill the recruiter’s contact form with a Mokaru share link.
Scope required:
resume:share | Rate limit: 10 requests/minRequest
POST /v1/resume/{id}/share
Path Parameters
string
required
Resume id to share.
Body Parameters
object
Example
curl -X POST "https://api.mokaru.ai/v1/resume/clx1234/share" \
-H "Authorization: Bearer mk_your_key" \
-H "Content-Type: application/json" \
-d '{ "blurOptions": { "blurCompanies": true } }'
Response
boolean
Whether the share was created (or returned).
string
Share row ID (used in the URL).
string
Public URL, e.g.
https://app.mokaru.ai/share/abc123.string
ISO 8601 timestamp of when this share was originally created.
boolean
true if an existing share for this resume was returned instead of creating a new one.{
"success": true,
"shareId": "clx_share_abc",
"shareUrl": "https://app.mokaru.ai/share/clx_share_abc",
"createdAt": "2026-05-21T10:00:00.000Z",
"reused": false
}
Was this page helpful?
