Tips API

This documentation describes the available API endpoints for retrieving insights and tips on various fixtures, allowing customers to access detailed betting tips and statistics.AuthenticationThe API requires JWT Token authentication. To generate a token, follow these steps:

  1. Log in to the backoffice.

  2. Navigate to Widgets on the left sidebar.

  3. Locate the widget relevant to your account.

  4. Click on the three dots on the widget card and select Copy API Key.

The API key is used to generate a JWT token, which must be included in the Authorization header of the API request. Example of Authorization header: Authorization: Bearer <jwt_token>

Retrieves tips for a batch of fixtures.

post
Header parameters
AuthorizationstringRequiredExample: Bearer {jwt_token}
Body
LanguagestringOptional

Language abbreviation (e.g., "en" for English)

Example: en
FixtureIdsinteger[] · min: 1Optional

List of fixture IDs for which insights are requested

Example: [13892682,13892683]
Responses
200

Successful retrieval of tips

application/json
post
/tips/api/v1/insights/batch

Retrieves tips based on specific fixture details.

post
Header parameters
AuthorizationstringRequiredExample: Bearer {jwt_token}
LanguagestringRequiredExample: en
Body
Responses
200

Successful retrieval of tips

application/json
post
/tips/api/v1/tips

Retrieves new tips added to existing ones.

post
Header parameters
AuthorizationstringRequiredExample: Bearer {jwt_token}
LanguagestringRequiredExample: en
Body
Responses
200

Successful retrieval of new tips

application/json
post
/tips/api/v1/getnewtips

Last updated

Was this helpful?