Get Total Tickets Sold By User

The GET /tickets/{userId}/total-sold endpoint allows you to get the total number of tickets sold by a specific user.

API Endpoint

GET /tickets/{userId}/total-sold

cURL Example

curl -X GET "https://api.dicetickets.com/v1/tickets/{userId}/total-sold" \
-H "Authorization: Bearer YOUR_API_KEY"

Response Example

{
  "totalTicketsSold": 150
}