Skip to main content

resumes.list

List the résumés on this account

Request
GET/api/v1/resumes
Scope required
resumes:read
Effect
Reads only. Safe to retry and safe for an agent to call unprompted.
Acts on
Acts on the account’s own job search.
MCP tool
resumes_list
Environment
Live and sandbox alike.
Request body
JSON.

What it does

Returns every résumé uploaded to this account, newest first, described but not delivered — the file itself is never inlined. Use `resumes.get` for a short-lived download link, and `applications.attach_resume` to record which one was sent for a particular job.

Parameters

Parameters this endpoint accepts, where each one goes, and whether it is required
NameSent inRequirementAccepts
limitqueryOptionalinteger
cursorqueryOptionalstring

Response

data
array of object, required
createdAt
string, required
fileName
string, required
fileSizeBytes
integer, required
fileType
string, required
id
string, required
name
string, required
updatedAt
string, required
hasMore
boolean, required
nextCursor
string or null, required

Examples

One résumé on file

One résumé on file — request
curl -s https://www.jobapplicationtracking.com/api/v1/resumes \
  -H "Authorization: Bearer $JAT_KEY"
One résumé on file — response
{
  "data": [
    {
      "id": "rs_5",
      "name": "Platform engineering",
      "fileName": "riley-bennett-platform.pdf",
      "fileType": "application/pdf",
      "fileSizeBytes": 148221,
      "createdAt": "2026-01-04T09:30:00.000Z",
      "updatedAt": "2026-01-04T09:30:00.000Z"
    }
  ],
  "hasMore": false,
  "nextCursor": null
}

Related operations