Skip to main content
GET
/
v1
/
tracker
/
applications
/
{id}
Get Application
curl --request GET \
  --url https://api.mokaru.ai/v1/tracker/applications/{id}
{
  "data": {
    "id": "<string>",
    "jobTitle": "<string>",
    "company": "<string>",
    "location": "<string>",
    "jobUrl": "<string>",
    "jobDescription": "<string>",
    "status": "<string>",
    "source": "<string>",
    "priority": 123,
    "notes": "<string>",
    "salaryMin": 123,
    "salaryMax": 123,
    "salaryPeriod": "<string>",
    "appliedDate": "<string>",
    "cvId": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "timeline": [
      {}
    ],
    "interviews": [
      {}
    ]
  }
}

Overview

The Get Application endpoint returns the full detail of a single application, including its status timeline and scheduled interviews with contact info. Common use cases:
  • AI agent interview prep - read the application’s job description, interview schedule, and contact info to prepare the user for upcoming interviews.
  • Application deep dive - get the full picture of an application: timeline of status changes, salary details, and notes.
  • Workflow triggers - check the status and details of an application before deciding on next steps in an automation.
Scope required: tracker:read | Rate limit: 60 requests/min

Request

GET /v1/tracker/applications/{id}

Example

curl "https://api.mokaru.ai/v1/tracker/applications/clx1234" \
  -H "Authorization: Bearer mk_your_key"

Response

data
object
Application detail
{
  "data": {
    "id": "clx1234...",
    "jobTitle": "Frontend Engineer",
    "company": "Acme Corp",
    "location": "New York, NY",
    "jobUrl": "https://acme.com/careers/frontend",
    "status": "interviewed",
    "priority": 5,
    "notes": "Great conversation with hiring manager",
    "salaryMin": 120000,
    "salaryMax": 160000,
    "salaryPeriod": "yearly",
    "cvId": "clx5678...",
    "timeline": [
      {
        "id": "tl1",
        "status": "interviewed",
        "description": "status_changed",
        "createdAt": "2026-03-15T10:00:00.000Z"
      }
    ],
    "interviews": [
      {
        "id": "int1",
        "round": 1,
        "type": "video",
        "date": "2026-03-14T10:00:00.000Z",
        "notes": "Technical interview",
        "contact": {
          "id": "ct1",
          "firstName": "Sarah",
          "lastName": "Jones",
          "jobTitle": "Engineering Manager"
        }
      }
    ]
  }
}