Send pre-alert to subscribers

POST /pick/tipster/prealert/

Send a pre-alert to notify all bots that a tip is coming. This ensures bots are ready to place bets and are not in a 'rest' state. Not essential but best practice.

Request Body

{
  "apikey": "string"
}

The apikey is the package API key that will notify all bots for that package.

Authentication

Include your auth token in the Authorization header (obtained from https://betmatic.gitbook.io/documentation/api/authentication/authenticate):

Authorization: Token your_auth_token

Response

Success Response (200)

{
  "status": "Success"
}

Usage Example

curl -X POST "https://betmatic.app/api/pick/tipster/prealert/" \
  -H "Content-Type: application/json" \
  -H "Authorization: Token your_auth_token" \
  -d '{
    "apikey": "your_package_api_key"
  }'

Last updated