Skip to main content
GET
/
resumes
/
{id}
/
statistics
Get resume statistics
curl --request GET \
  --url http://localhost:3000/api/openapi/resumes/{id}/statistics \
  --header 'x-api-key: <api-key>'
{
  "isPublic": true,
  "views": 123,
  "downloads": 123,
  "lastViewedAt": "2023-11-07T05:31:56Z",
  "lastDownloadedAt": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-key
string
header
required

The API key to authenticate requests.

Path Parameters

id
string
required

The unique identifier of the resume.

Response

200 - application/json

The resume's view and download statistics.

isPublic
boolean
required

Whether the resume is currently public.

views
number
required

Total number of times the resume has been viewed.

downloads
number
required

Total number of times the resume has been downloaded.

lastViewedAt
string<date-time> | null
required

Timestamp of the last view, or null if never viewed.

lastDownloadedAt
string<date-time> | null
required

Timestamp of the last download, or null if never downloaded.