The porra (match predictor) lets you guess the outcome of upcoming matches before they kick off. Every correct prediction earns you one point, and your total score determines your position on the global leaderboard. It is a fun way to test your futsal knowledge and compete against other fans.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/danielsl4/TFG_DAM_2526/llms.txt
Use this file to discover all available pages before exploring further.
How the porra works
Before a match begins, you choose one of three outcomes:- local — the home team wins
- empate — the match ends in a draw
- visitante — the away team wins
You can only vote on matches with a
pendiente (pending) status where both the home and away teams are already confirmed. Placeholder slots (“TBD”) cannot be voted on yet.Submitting a vote
Send aPOST request to /matches/:id/vote with your chosen outcome in the request body. You must be authenticated.
Changing your vote
You can change your prediction at any time before the match starts. Simply call the same endpoint again with a different value. The API uses an upsert — your previous vote is replaced automatically.Viewing voting statistics
Each match response includes avotingStats object showing how votes are distributed:
userVote field showing your current prediction ("local", "empate", "visitante", or null if you have not voted yet).
Points and ranking
Wait for the result
Once a referee or admin marks the match as finished and enters the final score, the system evaluates all predictions automatically.
Earn a point for a correct guess
If your prediction matches the actual result, one point is added to your account. Incorrect guesses earn no points.
Checking the leaderboard
The top 10 users by points are available without logging in:Checking your personal stats
To see your own points, global rank, and your last 20 predictions, call the personal stats endpoint. This requires authentication.history array contains up to 20 entries, ordered by match date descending. For pending matches, real_result is "pendiente" and points_awarded reflects what was earned once the match finishes.
Related pages
Authentication
Log in and get a token before you can vote.
User profile
View your porra score and full vote history on your profile.