Skip to main content
GET
/
resumes
/
{id}
/
statistics
/
daily
Get resume daily statistics
curl --request GET \
  --url http://localhost:3000/api/openapi/resumes/{id}/statistics/daily \
  --header 'x-api-key: <api-key>'
[
  {
    "date": "<string>",
    "views": 123,
    "downloads": 123
  }
]

Authorizations

x-api-key
string
header
required

The API key to authenticate requests.

Path Parameters

id
string
required

The unique identifier of the resume.

Query Parameters

days
integer
default:30

Number of trailing days to include.

Required range: 1 <= x <= 365

Response

200 - application/json

The resume's daily view and download statistics.

date
string
required

The UTC day in YYYY-MM-DD format.

views
number
required

Number of views recorded on this day.

downloads
number
required

Number of downloads recorded on this day.