v1
latestOpenAPI 3.1.02026-08-0621022.3 KBRetrieve current lottery draw information
Returns the active/current lottery draw information.
This is the first step required before purchasing a lottery ticket.
The response includes:
- Current draw number and date
- Pricing information (base price, rematch, second rematch) in cents
- Sales period (begin_sales, end_sales) in HH:MM:SS format
- Board limits (minimum_number_of_boards, maximum_number_of_boards)
Implementation Notes:
- Use the draw_number from the response in the purchase request
- Validate combination_count against minimum_number_of_boards and maximum_number_of_boards
- Use pricing information to calculate total_amount for purchase
- All prices are in cents (e.g., 1500 = $15.00 MXN)
get/api/v1/lottery_tickets/new
Query parameters
payee_idstring uuid required
Example:550e8400-e29b-41d4-a716-446655440000
Unique identifier of the lottery service (it will be provided by Monato). Must be a valid UUID v4 format.
Response
Current lottery draw successfully retrieved
Example response
{
"draw_date": "13/01/2026",
"draw_number": "7327",
"base_price": 1500,
"min_price": 1500,
"max_price": 3780000,
"rematch": 1000,
"second_rematch": 500,
"begin_sales": "08:00:00",
"end_sales": "23:59:59",
"minimum_number_of_boards": 1,
"maximum_number_of_boards": 6
}