BetTune API
BetTune API
BetTune harici API için interaktif dokümantasyon: maçları keşfedin, prediction filtrelerini okuyun ve prediction oranlarını yönetin.
OpenAPI şemasını indirPublic API base URL
https://ovaccess.com/bet-tune-api/v1API token
API token’ınızı BetTune Settings sayfasında oluşturabilir veya yeniden üretebilirsiniz.
BetTune Settings’i açYalnızca PRO abonelik
BetTune API yalnızca aktif PRO aboneliği olan kullanıcılar için kullanılabilir.
Kimlik doğrulama
Authorization: Bearer bettune_api_tokeninizEndpointler
Parametreleri, request body, cevapları, örnekleri ve şemaları görmek için endpoint’i açın.
get/sportsList available sports
Sports
get
/sportsList available sports
Cevaplar
200 Available sports.
object
countzorunlu
integer
itemszorunlu
array<object>
object
idzorunlu
integer
örnek: 1
namezorunlu
string
örnek: "football"
{
"count": 1,
"items": [
{
"id": 1,
"name": "football"
}
]
}401 Missing or invalid API token.
object
codezorunlu
string
messagezorunlu
string
{
"code": "missing_token",
"message": "No token provided"
}429 Rate limit exceeded.
object
codezorunlu
string
messagezorunlu
string
{
"code": "rate_limit_exceeded",
"message": "Rate limit exceeded"
}Headers: Retry-After, X-RateLimit-Limit, X-RateLimit-Window
get/matchesList matches for one UTC date
Matches
get
/matchesList matches for one UTC date
Parametreler
| Ad | Konum | Zorunlu | Tip | Açıklama |
|---|---|---|---|---|
| date | query | Evet | string:date | UTC date in `YYYY-MM-DD` format. |
| sport | query | Evet | integer | Sport id. Currently only football is exposed by `/sports`. |
Cevaplar
200 Matches for the requested UTC date.
object
datezorunlu
string:date
örnek: "2026-06-06"
countzorunlu
integer
itemszorunlu
array<object>
object
idzorunlu
integer
örnek: 1611243
datezorunlu
string:date-time
örnek: "2026-06-06T18:00:00+00:00"
finishedzorunlu
boolean
örnek: false
scorezorunlu
object
countryzorunlu
object
tournamentzorunlu
object
seasonzorunlu
object
homezorunlu
object
awayzorunlu
object
400 Invalid query parameters.
object
codezorunlu
string
messagezorunlu
string
{
"code": "date_invalid",
"message": "Invalid or missing date. Expected format: YYYY-MM-DD"
}401 Missing or invalid API token.
object
codezorunlu
string
messagezorunlu
string
{
"code": "missing_token",
"message": "No token provided"
}429 Rate limit exceeded.
object
codezorunlu
string
messagezorunlu
string
{
"code": "rate_limit_exceeded",
"message": "Rate limit exceeded"
}Headers: Retry-After, X-RateLimit-Limit, X-RateLimit-Window
get/prediction-filtersList prediction filters
Prediction Filters
get
/prediction-filtersList prediction filters
Cevaplar
200 Prediction-based filters for the current API token user.
object
countzorunlu
integer
itemszorunlu
array<object>
object
idzorunlu
integer
örnek: 11583
namezorunlu
string
örnek: "Manual football"
sportzorunlu
object
betTypezorunlu
string
örnek: "Home"
statuszorunlu
string
örnek: "approved"
enum: disabled, approved
401 Missing or invalid API token.
object
codezorunlu
string
messagezorunlu
string
{
"code": "missing_token",
"message": "No token provided"
}429 Rate limit exceeded.
object
codezorunlu
string
messagezorunlu
string
{
"code": "rate_limit_exceeded",
"message": "Rate limit exceeded"
}Headers: Retry-After, X-RateLimit-Limit, X-RateLimit-Window
post/predictions/searchSearch existing predictions
Predictions
post
/predictions/searchSearch existing predictions
Request body
object
filterIdzorunlu
integer
örnek: 11583
matchIdszorunlu
array<integer>
örnek: [1611243,1611244]
{
"filterId": 11583,
"matchIds": [
1611243,
1611244
]
}Cevaplar
200 Existing predictions for requested matches.
object
countzorunlu
integer
itemszorunlu
array<object>
object
idzorunlu
integer
örnek: 10
filterIdzorunlu
integer
örnek: 11583
matchIdzorunlu
integer
örnek: 1611243
oddszorunlu
string
örnek: "2.150000"
sourcezorunlu
string
örnek: "api"
enum: api, ui
createdAtzorunlu
string:date-time
örnek: "2026-06-06T12:00:00+00:00"
updatedAtzorunlu
string:date-time
örnek: "2026-06-06T12:05:00+00:00"
400 Validation error.
object
codezorunlu
string
messagezorunlu
string
{
"code": "invalid_json_body",
"message": "Invalid JSON body"
}401 Missing or invalid API token.
object
codezorunlu
string
messagezorunlu
string
{
"code": "missing_token",
"message": "No token provided"
}403 The current user cannot access this resource.
object
codezorunlu
string
messagezorunlu
string
{
"code": "pro_subscription_required",
"message": "Prediction-based filters are available only for PRO subscription"
}404 Filter or match not found.
object
codezorunlu
string
messagezorunlu
string
{
"code": "filter_not_found",
"message": "Filter not found"
}429 Rate limit exceeded.
object
codezorunlu
string
messagezorunlu
string
{
"code": "rate_limit_exceeded",
"message": "Rate limit exceeded"
}Headers: Retry-After, X-RateLimit-Limit, X-RateLimit-Window
put/prediction-filters/{filterId}/matches/{matchId}/predictionCreate or update prediction odds
Predictions
put
/prediction-filters/{filterId}/matches/{matchId}/predictionCreate or update prediction odds
Parametreler
| Ad | Konum | Zorunlu | Tip | Açıklama |
|---|---|---|---|---|
| filterId | path | Evet | integer | - |
| matchId | path | Evet | integer | - |
Request body
object
oddszorunlu
string | number
örnek: "2.15"
{
"odds": "2.15"
}Cevaplar
200 Created or updated prediction.
object
idzorunlu
integer
örnek: 10
filterIdzorunlu
integer
örnek: 11583
matchIdzorunlu
integer
örnek: 1611243
oddszorunlu
string
örnek: "2.150000"
sourcezorunlu
string
örnek: "api"
enum: api, ui
createdAtzorunlu
string:date-time
örnek: "2026-06-06T12:00:00+00:00"
updatedAtzorunlu
string:date-time
örnek: "2026-06-06T12:05:00+00:00"
400 Validation error.
object
codezorunlu
string
messagezorunlu
string
{
"code": "invalid_json_body",
"message": "Invalid JSON body"
}401 Missing or invalid API token.
object
codezorunlu
string
messagezorunlu
string
{
"code": "missing_token",
"message": "No token provided"
}403 The current user cannot access this resource.
object
codezorunlu
string
messagezorunlu
string
{
"code": "pro_subscription_required",
"message": "Prediction-based filters are available only for PRO subscription"
}404 Filter or match not found.
object
codezorunlu
string
messagezorunlu
string
{
"code": "filter_not_found",
"message": "Filter not found"
}429 Rate limit exceeded.
object
codezorunlu
string
messagezorunlu
string
{
"code": "rate_limit_exceeded",
"message": "Rate limit exceeded"
}Headers: Retry-After, X-RateLimit-Limit, X-RateLimit-Window
delete/prediction-filters/{filterId}/matches/{matchId}/predictionDelete prediction
Predictions
delete
/prediction-filters/{filterId}/matches/{matchId}/predictionDelete prediction
Parametreler
| Ad | Konum | Zorunlu | Tip | Açıklama |
|---|---|---|---|---|
| filterId | path | Evet | integer | - |
| matchId | path | Evet | integer | - |
Cevaplar
204 Prediction deleted. The endpoint is idempotent.
400 Validation error.
object
codezorunlu
string
messagezorunlu
string
{
"code": "invalid_json_body",
"message": "Invalid JSON body"
}401 Missing or invalid API token.
object
codezorunlu
string
messagezorunlu
string
{
"code": "missing_token",
"message": "No token provided"
}403 The current user cannot access this resource.
object
codezorunlu
string
messagezorunlu
string
{
"code": "pro_subscription_required",
"message": "Prediction-based filters are available only for PRO subscription"
}404 Filter or match not found.
object
codezorunlu
string
messagezorunlu
string
{
"code": "filter_not_found",
"message": "Filter not found"
}429 Rate limit exceeded.
object
codezorunlu
string
messagezorunlu
string
{
"code": "rate_limit_exceeded",
"message": "Rate limit exceeded"
}Headers: Retry-After, X-RateLimit-Limit, X-RateLimit-Window
Şemalar
ErrorResponse
object
codezorunlu
string
messagezorunlu
string
SportsResponse
object
countzorunlu
integer
itemszorunlu
array<object>
object
idzorunlu
integer
örnek: 1
namezorunlu
string
örnek: "football"
Sport
object
idzorunlu
integer
örnek: 1
namezorunlu
string
örnek: "football"
MatchesResponse
object
datezorunlu
string:date
örnek: "2026-06-06"
countzorunlu
integer
itemszorunlu
array<object>
object
idzorunlu
integer
örnek: 1611243
datezorunlu
string:date-time
örnek: "2026-06-06T18:00:00+00:00"
finishedzorunlu
boolean
örnek: false
scorezorunlu
object
countryzorunlu
object
tournamentzorunlu
object
seasonzorunlu
object
homezorunlu
object
awayzorunlu
object
Match
object
idzorunlu
integer
örnek: 1611243
datezorunlu
string:date-time
örnek: "2026-06-06T18:00:00+00:00"
finishedzorunlu
boolean
örnek: false
scorezorunlu
object
countryzorunlu
object
tournamentzorunlu
object
seasonzorunlu
object
homezorunlu
object
awayzorunlu
object
Score
object
homezorunlu
integer
örnek: null
awayzorunlu
integer
örnek: null
IdName
object
idzorunlu
integer
namezorunlu
string
PredictionFiltersResponse
object
countzorunlu
integer
itemszorunlu
array<object>
object
idzorunlu
integer
örnek: 11583
namezorunlu
string
örnek: "Manual football"
sportzorunlu
object
betTypezorunlu
string
örnek: "Home"
statuszorunlu
string
örnek: "approved"
enum: disabled, approved
PredictionFilter
object
idzorunlu
integer
örnek: 11583
namezorunlu
string
örnek: "Manual football"
sportzorunlu
object
betTypezorunlu
string
örnek: "Home"
statuszorunlu
string
örnek: "approved"
enum: disabled, approved
SearchPredictionsRequest
object
filterIdzorunlu
integer
örnek: 11583
matchIdszorunlu
array<integer>
örnek: [1611243,1611244]
PutPredictionRequest
object
oddszorunlu
string | number
örnek: "2.15"
PredictionsResponse
object
countzorunlu
integer
itemszorunlu
array<object>
object
idzorunlu
integer
örnek: 10
filterIdzorunlu
integer
örnek: 11583
matchIdzorunlu
integer
örnek: 1611243
oddszorunlu
string
örnek: "2.150000"
sourcezorunlu
string
örnek: "api"
enum: api, ui
createdAtzorunlu
string:date-time
örnek: "2026-06-06T12:00:00+00:00"
updatedAtzorunlu
string:date-time
örnek: "2026-06-06T12:05:00+00:00"
Prediction
object
idzorunlu
integer
örnek: 10
filterIdzorunlu
integer
örnek: 11583
matchIdzorunlu
integer
örnek: 1611243
oddszorunlu
string
örnek: "2.150000"
sourcezorunlu
string
örnek: "api"
enum: api, ui
createdAtzorunlu
string:date-time
örnek: "2026-06-06T12:00:00+00:00"
updatedAtzorunlu
string:date-time
örnek: "2026-06-06T12:05:00+00:00"