Get bet type

GET /notification/types/

Operation ID: get_notification_types

Retrieve all notification types. Currently, Betmatic supports four types: Fixed Wager, Fixed Profit, High Odds First, and Serial.

Parameters

No parameters required.

Response

Success Response (200)

Returns an array of available notification type strings:

[
  "Fixed Wager",
  "Fixed Profit", 
  "High Odds First"
]

Response Fields

The response is a simple array of strings representing the available notification types:

Type
Description

Fixed Wager

Wager a fixed amount on each selected account

Fixed Profit

Calculate wager amount to achieve a target profit

High Odds First

Prioritize accounts with the highest odds

Usage

curl -X GET "https://betmatic.app/api/notification/types/" \
  -H "Authorization: Token your_token"

Potential Use Cases

  1. Strategy Planning: Understand available betting strategies and their types

  2. Validation: Validate notification types before creating new notifications

  3. API Integration: Ensure correct notification types are used when integrating

Authentication

This endpoint requires authentication. Include your token in the Authorization header:

Authorization: Token your_token_here

Notification Type Details

Fixed Wager

  • Purpose: Bet a consistent amount across selected accounts

  • Use Case: When you want to risk the same amount on each bookmaker

  • Configuration: Requires stake parameter

  • Example: Bet $10 on each of 5 accounts = $50 total risk

Fixed Profit

  • Purpose: Calculate bet amounts to achieve a target profit

  • Use Case: When you want to win a specific amount regardless of odds

  • Configuration: Requires target_profit parameter

  • Example: Target $100 profit - system calculates required stakes based on current odds

High Odds First

  • Purpose: Prioritize betting with bookmakers offering the best odds

  • Use Case: When you want to maximize potential returns

  • Configuration: Requires total_wager parameter

  • Example: Distribute $500 starting with highest odds bookmakers first

Notes

  • The "Serial" type mentioned in the schema may not always be returned depending on system configuration

  • Available types may change based on system updates and feature releases

  • Always check this endpoint to ensure you're using currently supported types

\

Last updated