cURL
curl --request GET \ --url https://app.d-sports.org/api/user/completed-quests \ --header 'Authorization: Bearer <token>'
Returns completed quests for the given user (or the authenticated user). Each entry includes quest title, points earned, and category.
Clerk session token. Use Authorization: Bearer .
{ success: true, data: { quests: [{ id, questTitle, stepName?, pointsEarned, completedAt, category }], totalPoints } }
Was this page helpful?