GET
/
admin
/
wrapped
/
{year}
/
status
curl --request GET \
  --url https://api.helpyousponsor.com/v1/admin/wrapped/{year}/status \
  --header 'Authorization: Bearer <token>'
{
  "status": "calculating",
  "lastCalculated": "2023-11-07T05:31:56Z",
  "error": "<string>",
  "progress": 75
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

year
integer
required

Year to check status for

Example:

2024

Response

200
application/json
Status check successful
status
enum<string>
Available options:
calculating,
completed,
failed,
unknown
Example:

"calculating"

lastCalculated
string | null
error
string | null
progress
integer

Calculation progress percentage (0-100)

Example:

75