Create Experience
curl --request POST \
--url https://api.mokaru.ai/v1/experiences \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"jobTitle": "<string>",
"company": "<string>",
"location": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"isCurrent": true,
"description": "<string>",
"responsibilities": [
"<string>"
],
"achievements": [
"<string>"
]
}
'import requests
url = "https://api.mokaru.ai/v1/experiences"
payload = {
"jobTitle": "<string>",
"company": "<string>",
"location": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"isCurrent": True,
"description": "<string>",
"responsibilities": ["<string>"],
"achievements": ["<string>"]
}
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({
jobTitle: '<string>',
company: '<string>',
location: '<string>',
startDate: '<string>',
endDate: '<string>',
isCurrent: true,
description: '<string>',
responsibilities: ['<string>'],
achievements: ['<string>']
})
};
fetch('https://api.mokaru.ai/v1/experiences', 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/experiences",
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([
'jobTitle' => '<string>',
'company' => '<string>',
'location' => '<string>',
'startDate' => '<string>',
'endDate' => '<string>',
'isCurrent' => true,
'description' => '<string>',
'responsibilities' => [
'<string>'
],
'achievements' => [
'<string>'
]
]),
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/experiences"
payload := strings.NewReader("{\n \"jobTitle\": \"<string>\",\n \"company\": \"<string>\",\n \"location\": \"<string>\",\n \"startDate\": \"<string>\",\n \"endDate\": \"<string>\",\n \"isCurrent\": true,\n \"description\": \"<string>\",\n \"responsibilities\": [\n \"<string>\"\n ],\n \"achievements\": [\n \"<string>\"\n ]\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/experiences")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"jobTitle\": \"<string>\",\n \"company\": \"<string>\",\n \"location\": \"<string>\",\n \"startDate\": \"<string>\",\n \"endDate\": \"<string>\",\n \"isCurrent\": true,\n \"description\": \"<string>\",\n \"responsibilities\": [\n \"<string>\"\n ],\n \"achievements\": [\n \"<string>\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mokaru.ai/v1/experiences")
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 \"jobTitle\": \"<string>\",\n \"company\": \"<string>\",\n \"location\": \"<string>\",\n \"startDate\": \"<string>\",\n \"endDate\": \"<string>\",\n \"isCurrent\": true,\n \"description\": \"<string>\",\n \"responsibilities\": [\n \"<string>\"\n ],\n \"achievements\": [\n \"<string>\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"id": "<string>"
}Experiences
Create Experience
Create a new work experience
POST
/
v1
/
experiences
Create Experience
curl --request POST \
--url https://api.mokaru.ai/v1/experiences \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"jobTitle": "<string>",
"company": "<string>",
"location": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"isCurrent": true,
"description": "<string>",
"responsibilities": [
"<string>"
],
"achievements": [
"<string>"
]
}
'import requests
url = "https://api.mokaru.ai/v1/experiences"
payload = {
"jobTitle": "<string>",
"company": "<string>",
"location": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"isCurrent": True,
"description": "<string>",
"responsibilities": ["<string>"],
"achievements": ["<string>"]
}
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({
jobTitle: '<string>',
company: '<string>',
location: '<string>',
startDate: '<string>',
endDate: '<string>',
isCurrent: true,
description: '<string>',
responsibilities: ['<string>'],
achievements: ['<string>']
})
};
fetch('https://api.mokaru.ai/v1/experiences', 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/experiences",
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([
'jobTitle' => '<string>',
'company' => '<string>',
'location' => '<string>',
'startDate' => '<string>',
'endDate' => '<string>',
'isCurrent' => true,
'description' => '<string>',
'responsibilities' => [
'<string>'
],
'achievements' => [
'<string>'
]
]),
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/experiences"
payload := strings.NewReader("{\n \"jobTitle\": \"<string>\",\n \"company\": \"<string>\",\n \"location\": \"<string>\",\n \"startDate\": \"<string>\",\n \"endDate\": \"<string>\",\n \"isCurrent\": true,\n \"description\": \"<string>\",\n \"responsibilities\": [\n \"<string>\"\n ],\n \"achievements\": [\n \"<string>\"\n ]\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/experiences")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"jobTitle\": \"<string>\",\n \"company\": \"<string>\",\n \"location\": \"<string>\",\n \"startDate\": \"<string>\",\n \"endDate\": \"<string>\",\n \"isCurrent\": true,\n \"description\": \"<string>\",\n \"responsibilities\": [\n \"<string>\"\n ],\n \"achievements\": [\n \"<string>\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mokaru.ai/v1/experiences")
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 \"jobTitle\": \"<string>\",\n \"company\": \"<string>\",\n \"location\": \"<string>\",\n \"startDate\": \"<string>\",\n \"endDate\": \"<string>\",\n \"isCurrent\": true,\n \"description\": \"<string>\",\n \"responsibilities\": [\n \"<string>\"\n ],\n \"achievements\": [\n \"<string>\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"id": "<string>"
}Overview
The Create Experience endpoint lets you add a new work experience to your Mokaru account. Common use cases:- AI agent profile building - automatically add work experiences extracted from a LinkedIn profile or resume.
- Career tracking - log a new position when you start a new role.
- Bulk import - add work experiences from a spreadsheet or external system.
Scope required:
experiences:write | Rate limit: 20 requests/minRequest
POST /v1/experiences
Body Parameters
string
required
Job title / role at this employer (max 200 characters)
string
required
Company name (max 200 characters)
string
Work location (max 200 characters)
string
ISO 8601 datetime, e.g. “2022-01-01T00:00:00Z”
string
ISO 8601 datetime (null or omit for current position)
boolean
True if still employed here (endDate ignored).
string
Role description
string[]
List of responsibilities
string[]
List of achievements
Query Parameters
string
Target a specific resume by its id (from
list-resumes). Omit to use your base/default resume; the resume must be self-contained.Example
curl -X POST "https://api.mokaru.ai/v1/experiences" \
-H "Authorization: Bearer mk_your_key" \
-H "Content-Type: application/json" \
-d '{
"jobTitle": "Senior Software Engineer",
"company": "Acme Corp",
"location": "San Francisco, CA",
"startDate": "2022-07-01",
"isCurrent": true,
"description": "Building and maintaining the core platform",
"responsibilities": ["Led frontend architecture"],
"achievements": ["Reduced bundle size by 40%"]
}'
Response
boolean
Whether the experience was created
string
The new experience’s unique ID
{
"success": true,
"id": "clx1234..."
}
Was this page helpful?
⌘I
