---
title: "List all resumes"
method: GET
path: "/resumes"
tags: ["Resumes"]
---

# List all resumes

`GET /resumes`

Returns a list of all resumes belonging to the authenticated user. Results can be filtered by tags and sorted by last updated date, creation date, or name. Resume data is not included in the response for performance; use the get endpoint to fetch full resume data. Requires authentication.

## Query parameters

- `tags` string[]
- `sort` 'lastUpdatedAt' | 'createdAt' | 'name'

## Response `200`

A list of resumes with their metadata (without full resume data).

- object[]
  - `id` string, required — The ID of the resume.
  - `name` string, required — The name of the resume.
  - `slug` string, required — The slug of the resume.
  - `tags` string[], required — The tags of the resume.
  - `isPublic` boolean, required — Whether the resume is public.
  - `isLocked` boolean, required — Whether the resume is locked.
  - `createdAt` string, date-time, required — The date and time the resume was created.
  - `updatedAt` string, date-time, required — The date and time the resume was last updated.

---

[API](https://skmtc.net/rxresu/apis/reactive-resume.md) · [All operations](https://skmtc.net/rxresu/apis/reactive-resume/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rxresu/reactive-resume/revisions/68d25b21f805/schema)
