# Retrieve 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)

Endpoint: GET /api/v1/lottery_tickets/new
Version: 1.0.0
Security: BearerAuth

## Query parameters:

  - `payee_id` (string, required)
    Unique identifier of the lottery service (it will be provided by Monato).
Must be a valid UUID v4 format.
    Example: "550e8400-e29b-41d4-a716-446655440000"

## Response 200 fields (application/json):

  - `draw_date` (string)
    Date of the lottery draw in DD/MM/YYYY format
    Example: "13/01/2026"

  - `draw_number` (string)
    Draw number identifier
    Example: "7327"

  - `base_price` (integer)
    Base minimum price for a standard bet in cents (e.g., 1500 = $15.00 MXN)
    Example: 1500

  - `min_price` (integer)
    Minimum price allowed by the provider
    Example: 1500

  - `max_price` (integer)
    Maximum price allowed by the provider
    Example: 3780000

  - `rematch` (integer)
    Additional base price for rematch option per bet in cents (e.g., 1000 = $10.00 MXN per bet)
    Example: 1000

  - `second_rematch` (integer)
    Additional base price for second rematch option per bet in cents (e.g., 500 = $5.00 MXN per bet). Requires rematch to be enabled.
    Example: 500

  - `begin_sales` (string)
    Start time of the sales period for the draw in HH:MM:SS format (24-hour format)
    Example: "08:00:00"

  - `end_sales` (string)
    End time of the sales period for the draw in HH:MM:SS format (24-hour format)
    Example: "23:59:59"

  - `minimum_number_of_boards` (integer)
    Minimum number of boards/combinations allowed by the provider. Used to validate combination_count in purchase request.
    Example: 1

  - `maximum_number_of_boards` (integer)
    Maximum number of boards/combinations allowed by the provider. Used to validate combination_count in purchase request.
    Example: 6

## Response 401 fields (application/json):

  - `errors` (array, required)
    Array of error messages
    Example: ["Access denied"]

## Response 422 fields (application/json):

  - `error` (string, required)
    Error message describing the validation failure
    Enum: "Invalid input", "Company not found"


