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
| Name | Sent in | Requirement | Accepts |
|---|---|---|---|
| limit | query | Optional | integer |
| cursor | query | Optional | string |
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
curl -s https://www.jobapplicationtracking.com/api/v1/resumes \
-H "Authorization: Bearer $JAT_KEY"{
"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
}