diff --git a/.env b/.env new file mode 100644 index 0000000..ea411f2 --- /dev/null +++ b/.env @@ -0,0 +1,55 @@ +# REPORT_EXPORT_PATH="C:\\ProgramData\\FortuneBet\\exported_reports" #prod env +REPORT_EXPORT_PATH ="./exported_reports" #dev env + +RESEND_SENDER_EMAIL=email +RESEND_API_KEY=123 + +ENV=development +PORT=8080 +DB_URL=postgresql://root:secret@localhost:5422/gh?sslmode=disable +REFRESH_EXPIRY=2592000 +JWT_KEY=mysecretkey +ACCESS_EXPIRY=600 +LOG_LEVEL=debug +AFRO_SMS_API_KEY=1 +AFRO_SMS_SENDER_NAME= + +AFRO_SMS_RECEIVER_PHONE_NUMBER= +BET365_TOKEN=158046-hesJDP2Cay2M5G +POPOK_CLIENT_ID=1 +POPOK_PLATFORM=111 +POPOK_SECRET_KEY=XwFQ76Y59zBxGryh +# POPOK_BASE_URL=https://api.pokgaming.com/game/launch #Production +# POPOK_BASE_URL=https://games.pokgaming.com/launch #Production +# POPOK_BASE_URL=https://sandbox.pokgaming.com/game/launch #Staging +# POPOK_BASE_URL=https://test-api.pokgaming.com/launch #Staging +POPOK_BASE_URL=https://st.pokgaming.com/ #Staging + +POPOK_CALLBACK_URL=1 + +# Chapa API Configuration +CHAPA_BASE_URL="https://api.chapa.co/v1" +CHAPA_ENCRYPTION_KEY=zLdYrjnBCknMvFikmP5jBfen +CHAPA_PUBLIC_KEY=CHAPUBK_TEST-HJR0qhQRPLTkauNy9Q8UrmskPTOR31aC +CHAPA_SECRET_KEY=CHASECK_TEST-q3jypwmFK6XJGYOK3aX4z9Kogd9KaHhF +CHAPA_CALLBACK_URL="https://fortunebet.com/api/v1/payments/callback" # Optional +CHAPA_RETURN_URL="https://fortunebet.com/api/v1/payment-success" # Optional + +#Alea Play +ALEA_ENABLED=true +ALEA_BASE_URL=https://api.aleaplay.com +ALEA_OPERATOR_ID=operator_id +ALEA_SECRET_KEY=hmac_secret +ALEA_GAME_LIST_URL=https://api.aleaplay.com/games/list # Optional +ALEA_DEFAULT_CURRENCY=USD # Optional (default: USD) +ALEA_SESSION_TIMEOUT=24 # Optional (hours, default: 24) +ALEA_GAME_ID_AVIATOR=aviator_prod + + +# Veli Games +VELI_ENABLED=true +VELI_API_URL=https://api.velitech.games +VELI_OPERATOR_KEY=Veli123 +VELI_SECRET_KEY=hmac_secret +VELI_GAME_ID_AVIATOR=veli_aviator_v1 +VELI_DEFAULT_CURRENCY=USD diff --git a/.gitignore b/.gitignore index 660eeeb..e80176d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,7 @@ -bin -coverage.out -coverage -.env -tmp -build -*.log -db.sql \ No newline at end of file +# bin +# coverage.out +# coverage +# .env +# tmp +# build +# *.log \ No newline at end of file diff --git a/app.log b/app.log new file mode 100644 index 0000000..e69de29 diff --git a/bin/web b/bin/web new file mode 100644 index 0000000..150a02e Binary files /dev/null and b/bin/web differ diff --git a/cmd/main.go b/cmd/main.go index a6d010f..0484d3c 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -17,6 +17,7 @@ import ( "github.com/SamuelTariku/FortuneBet-Backend/internal/config" "github.com/SamuelTariku/FortuneBet-Backend/internal/domain" + "github.com/SamuelTariku/FortuneBet-Backend/internal/infrastructure" customlogger "github.com/SamuelTariku/FortuneBet-Backend/internal/logger" "github.com/SamuelTariku/FortuneBet-Backend/internal/logger/mongoLogger" @@ -53,6 +54,7 @@ import ( httpserver "github.com/SamuelTariku/FortuneBet-Backend/internal/web_server" jwtutil "github.com/SamuelTariku/FortuneBet-Backend/internal/web_server/jwt" customvalidator "github.com/SamuelTariku/FortuneBet-Backend/internal/web_server/validator" + "github.com/SamuelTariku/FortuneBet-Backend/internal/web_server/worker" ) // @title FortuneBet API @@ -69,16 +71,15 @@ import ( // @name Authorization // @BasePath / func main() { - cfg, err := config.NewConfig() if err != nil { - slog.Error(" Config error:", "err", err) + slog.Error("Config error:", "err", err) os.Exit(1) } db, _, err := repository.OpenDB(cfg.DbUrl) if err != nil { - fmt.Println(" Database error:", err) + fmt.Println("Database error:", err) os.Exit(1) } @@ -92,55 +93,25 @@ func main() { zap.ReplaceGlobals(domain.MongoDBLogger) - // client := mongoLogger.InitDB() - // defer func() { - // if err := client.Disconnect(context.Background()); err != nil { - // slog.Error("Failed to disconnect MongoDB", "error", err) - // } - // }() - - // // 2. Create MongoDB logger handler - // handler, err := mongoLogger.NewMongoHandler("logs", "app_logs", slog.LevelDebug) - // if err != nil { - // slog.Error("Failed to create MongoDB logger", "error", err) - // os.Exit(1) - // } - - // // 3. Set as default logger - // tempLogger := slog.New(handler) - // slog.SetDefault(tempLogger) - - // // 4. Log examples - // tempLogger.Info("Application started", "version", "1.0.0") - // slog.Warn("Low disk space", "available_gb", 12.5) - // slog.Error("Payment failed", "transaction_id", "tx123", "error", "insufficient funds") - store := repository.NewStore(db) v := customvalidator.NewCustomValidator(validator.New()) + // Initialize services authSvc := authentication.NewService(store, store, cfg.RefreshExpiry) - userSvc := user.NewService(store, store, cfg) - eventSvc := event.New(cfg.Bet365Token, store) oddsSvc := odds.New(store, cfg, logger) ticketSvc := ticket.NewService(store) notificationRepo := repository.NewNotificationRepository(store) virtuaGamesRepo := repository.NewVirtualGameRepository(store) - notificationSvc := notificationservice.New(notificationRepo, logger, cfg) - // var betStore bet.BetStore - // var walletStore wallet.WalletStore - // var transactionStore transaction.TransactionStore - // var branchStore branch.BranchStore - // var userStore user.UserStore - var notificationStore notificationservice.NotificationStore + var notificatioStore notificationservice.NotificationStore walletSvc := wallet.NewService( wallet.WalletStore(store), wallet.TransferStore(store), - notificationStore, + notificatioStore, logger, ) @@ -156,18 +127,8 @@ func main() { referalSvc := referralservice.New(referalRepo, *walletSvc, store, cfg, logger) virtualGameSvc := virtualgameservice.New(vitualGameRepo, *walletSvc, store, cfg, logger) - aleaService := alea.NewAleaPlayService( - vitualGameRepo, - *walletSvc, - cfg, - logger, - ) - veliService := veli.NewVeliPlayService( - vitualGameRepo, - *walletSvc, - cfg, - logger, - ) + aleaService := alea.NewAleaPlayService(vitualGameRepo, *walletSvc, cfg, logger) + veliService := veli.NewVeliPlayService(vitualGameRepo, *walletSvc, cfg, logger) recommendationSvc := recommendation.NewService(recommendationRepo) chapaClient := chapa.NewClient(cfg.CHAPA_BASE_URL, cfg.CHAPA_SECRET_KEY) @@ -178,27 +139,35 @@ func main() { chapaClient, ) + // Initialize reporting components + reportRepo := repository.NewReportRepo(store) + reportSvc := report.NewService( - bet.BetStore(store), // Must implement BetStore - wallet.WalletStore(store), // Must implement WalletStore + bet.BetStore(store), + wallet.WalletStore(store), transaction.TransactionStore(store), branch.BranchStore(store), user.UserStore(store), + reportRepo, company.CompanyStore(store), virtuaGamesRepo, notificationRepo, logger, ) - // reportSvc := report.NewService( - // betStore, - // walletStore, - // transactionStore, - // branchStore, - // userStore, - // logger, - // ) + // Initialize report worker with CSV exporter + csvExporter := infrastructure.CSVExporter{ + ExportPath: cfg.ReportExportPath, // Make sure to add this to your config + } + reportWorker := worker.NewReportWorker( + reportSvc, + csvExporter, + ) + + // Start cron jobs for automated reporting + + // Initialize wallet monitoring walletMonitorSvc := monitor.NewService( *walletSvc, *branchSvc, @@ -208,16 +177,44 @@ func main() { ) walletMonitorSvc.Start() + // Start other cron jobs httpserver.StartDataFetchingCrons(eventSvc, oddsSvc, resultSvc) httpserver.StartTicketCrons(*ticketSvc) + go httpserver.SetupReportCronJob(reportWorker) + + // Initialize and start HTTP server + app := httpserver.NewApp( + cfg.Port, + v, + authSvc, + logger, + jwtutil.JwtConfig{ + JwtAccessKey: cfg.JwtKey, + JwtAccessExpiry: cfg.AccessExpiry, + }, + userSvc, + ticketSvc, + betSvc, + reportSvc, // Make sure httpserver.NewApp accepts this parameter + chapaSvc, + walletSvc, + transactionSvc, + branchSvc, + companySvc, + notificationSvc, + oddsSvc, + eventSvc, + leagueSvc, + referalSvc, + virtualGameSvc, + aleaService, + veliService, + recommendationSvc, + resultSvc, + cfg, + ) - app := httpserver.NewApp(cfg.Port, v, authSvc, logger, jwtutil.JwtConfig{ - JwtAccessKey: cfg.JwtKey, - JwtAccessExpiry: cfg.AccessExpiry, - }, userSvc, - ticketSvc, betSvc, reportSvc, chapaSvc, walletSvc, transactionSvc, branchSvc, companySvc, notificationSvc, oddsSvc, eventSvc, leagueSvc, referalSvc, virtualGameSvc, aleaService, veliService, recommendationSvc, resultSvc, cfg) logger.Info("Starting server", "port", cfg.Port) - if err := app.Run(); err != nil { logger.Error("Failed to start server", "error", err) os.Exit(1) diff --git a/go.mod b/go.mod index 03a19b0..cfc550d 100644 --- a/go.mod +++ b/go.mod @@ -72,6 +72,9 @@ require ( ) require ( + github.com/go-co-op/gocron v1.37.0 github.com/resend/resend-go/v2 v2.20.0 // direct go.uber.org/multierr v1.10.0 // indirect ) + +require go.uber.org/atomic v1.9.0 // indirect diff --git a/go.sum b/go.sum index aba6118..8420e2a 100644 --- a/go.sum +++ b/go.sum @@ -25,6 +25,8 @@ github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs github.com/gabriel-vasile/mimetype v1.4.8 h1:FfZ3gj38NjllZIeJAmMhr+qKL8Wu+nOoI3GqacKw1NM= github.com/gabriel-vasile/mimetype v1.4.8/go.mod h1:ByKUIKGjh1ODkGM1asKUbQZOLGrPjydw3hYPU2YU9t8= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +github.com/go-co-op/gocron v1.37.0 h1:ZYDJGtQ4OMhTLKOKMIch+/CY70Brbb1dGdooLEhh7b0= +github.com/go-co-op/gocron v1.37.0/go.mod h1:3L/n6BkO7ABj+TrfSVXLRzsP26zmikL4ISkLQ0O8iNY= github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= github.com/go-openapi/jsonpointer v0.19.5/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= github.com/go-openapi/jsonpointer v0.21.1 h1:whnzv/pNXtK2FbX/W9yJfRmE2gsmkfahjMKB0fZvcic= @@ -56,6 +58,7 @@ github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM= github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/uuid v1.4.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= @@ -81,6 +84,8 @@ github.com/klauspost/cpuid/v2 v2.0.9 h1:lgaqFMSdTdQYdZ04uHyN2d/eKdOMyi2YLSvlQIBF github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/knz/go-libedit v1.10.1/go.mod h1:MZTVkCWyz0oBc7JOWP3wNAzd002ZbM/5hgShxwh4x8M= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= @@ -108,6 +113,7 @@ github.com/otiai10/curr v0.0.0-20150429015615-9b4961190c95/go.mod h1:9qAhocn7zKJ github.com/otiai10/curr v1.0.0/go.mod h1:LskTG5wDwr8Rs+nNQ+1LlxRjAtTZZjtJW4rMXl6j4vs= github.com/otiai10/mint v1.3.0/go.mod h1:F5AjcsTsWUqX+Na9fpHb52P8pcRX2CI6A3ctIT91xUo= github.com/otiai10/mint v1.3.3/go.mod h1:/yxELlJQ0ufhjUwhshSj+wFjZ78CnZ48/1wtmBH1OTc= +github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/resend/resend-go/v2 v2.20.0 h1:MrIrgV0aHhwRgmcRPw33Nexn6aGJvCvG2XwfFpAMBGM= @@ -117,6 +123,8 @@ github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ= github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= github.com/robfig/cron/v3 v3.0.1 h1:WdRxkvbJztn8LMz/QEvLN5sBU+xKpSqwwUO1Pjr4qDs= github.com/robfig/cron/v3 v3.0.1/go.mod h1:eQICP3HwyT7UooqI/z+Ov+PtYAWygg1TEWWzGIFLtro= +github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= +github.com/rogpeppe/go-internal v1.8.1/go.mod h1:JeRgkft04UBgHMgCIwADu4Pn6Mtm5d4nPKWu0nJ5d+o= github.com/rogpeppe/go-internal v1.14.1 h1:UQB4HGPB6osV0SQTLymcB4TgvyWu6ZyliaW0tI/otEQ= github.com/rogpeppe/go-internal v1.14.1/go.mod h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7so1lCWt35ZSgc= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= @@ -132,6 +140,7 @@ github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/swaggo/fiber-swagger v1.3.0 h1:RMjIVDleQodNVdKuu7GRs25Eq8RVXK7MwY9f5jbobNg= @@ -165,6 +174,9 @@ github.com/yuin/goldmark v1.4.0/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1 github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= go.mongodb.org/mongo-driver v1.17.3 h1:TQyXhnsWfWtgAhMtOgtYHMTkZIfBTpMTsMnd9ZBeHxQ= go.mongodb.org/mongo-driver v1.17.3/go.mod h1:Hy04i7O2kC4RS06ZrhPRqj/u4DTYkFDAAccj+rVKqgQ= +go.uber.org/atomic v1.9.0 h1:ECmE8Bn/WFTYwEW/bpKD3M8VtR/zQVbavAoalC1PYyE= +go.uber.org/atomic v1.9.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= +go.uber.org/atomic v1.11.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.10.0 h1:S0h4aNzvfcFsC3dRF1jLoaov7oRaKqRGC/pUEJ2yvPQ= @@ -237,6 +249,7 @@ gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8 gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= +gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= diff --git a/internal/config/config.go b/internal/config/config.go index f6e6533..4ba0848 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -63,6 +63,7 @@ type Config struct { JwtKey string LogLevel slog.Level Env string + ReportExportPath string `mapstructure:"REPORT_EXPORT_PATH"` AFRO_SMS_API_KEY string AFRO_SMS_SENDER_NAME string AFRO_SMS_RECEIVER_PHONE_NUMBER string @@ -101,6 +102,8 @@ func (c *Config) loadEnv() error { } c.Env = env + c.ReportExportPath = os.Getenv("REPORT_EXPORT_PATH") + portStr := os.Getenv("PORT") if portStr == "" { return ErrInvalidPort diff --git a/internal/domain/report.go b/internal/domain/report.go index afab4d8..938633a 100644 --- a/internal/domain/report.go +++ b/internal/domain/report.go @@ -2,6 +2,26 @@ package domain import "time" +type TimeFrame string + +const ( + Daily TimeFrame = "daily" + Weekly TimeFrame = "weekly" + Monthly TimeFrame = "monthly" +) + +type Report struct { + ID string + TimeFrame TimeFrame + PeriodStart time.Time + PeriodEnd time.Time + TotalBets int + TotalCashIn float64 + TotalCashOut float64 + TotalCashBack float64 + GeneratedAt time.Time +} + type DashboardSummary struct { TotalStakes Currency `json:"total_stakes"` TotalBets int64 `json:"total_bets"` @@ -280,22 +300,22 @@ type CompanyPerformance struct { } type CashierPerformance struct { - CashierID int64 `json:"cashier_id"` - CashierName string `json:"cashier_name"` - BranchID int64 `json:"branch_id"` - BranchName string `json:"branch_name"` - CompanyID int64 `json:"company_id"` - TotalBets int64 `json:"total_bets"` - TotalStakes Currency `json:"total_stakes"` - TotalWins int64 `json:"total_wins"` - TotalPayouts Currency `json:"total_payouts"` - Profit Currency `json:"profit"` - WinRate float64 `json:"win_rate"` - AverageStake Currency `json:"average_stake"` - Deposits Currency `json:"deposits"` - Withdrawals Currency `json:"withdrawals"` - NetTransactionAmount Currency `json:"net_transaction_amount"` - FirstActivity time.Time `json:"first_activity"` - LastActivity time.Time `json:"last_activity"` - ActiveDays int `json:"active_days"` -} \ No newline at end of file + CashierID int64 `json:"cashier_id"` + CashierName string `json:"cashier_name"` + BranchID int64 `json:"branch_id"` + BranchName string `json:"branch_name"` + CompanyID int64 `json:"company_id"` + TotalBets int64 `json:"total_bets"` + TotalStakes Currency `json:"total_stakes"` + TotalWins int64 `json:"total_wins"` + TotalPayouts Currency `json:"total_payouts"` + Profit Currency `json:"profit"` + WinRate float64 `json:"win_rate"` + AverageStake Currency `json:"average_stake"` + Deposits Currency `json:"deposits"` + Withdrawals Currency `json:"withdrawals"` + NetTransactionAmount Currency `json:"net_transaction_amount"` + FirstActivity time.Time `json:"first_activity"` + LastActivity time.Time `json:"last_activity"` + ActiveDays int `json:"active_days"` +} diff --git a/internal/infrastructure/csv_exporter.go b/internal/infrastructure/csv_exporter.go new file mode 100644 index 0000000..ac6a07f --- /dev/null +++ b/internal/infrastructure/csv_exporter.go @@ -0,0 +1,48 @@ +// infrastructure/csv_exporter.go +package infrastructure + +import ( + "encoding/csv" + "os" + "strconv" + "time" + + "github.com/SamuelTariku/FortuneBet-Backend/internal/domain" +) + +type CSVExporter struct { + ExportPath string +} + +func (e *CSVExporter) Export(report *domain.Report) error { + filename := e.ExportPath + "/report_" + string(report.TimeFrame) + "_" + + time.Now().Format("20060102") + ".csv" + + file, err := os.Create(filename) + if err != nil { + return err + } + defer file.Close() + + writer := csv.NewWriter(file) + defer writer.Flush() + + // Write header + _ = writer.Write([]string{ + "Time Frame", "Period Start", "Period End", + "Total Bets", "Total Cash In", "Total Cash Out", "Total Cash Back", + "Generated At", + }) + + // Write data + return writer.Write([]string{ + string(report.TimeFrame), + report.PeriodStart.Format(time.RFC3339), + report.PeriodEnd.Format(time.RFC3339), + strconv.Itoa(report.TotalBets), + strconv.FormatFloat(report.TotalCashIn, 'f', 2, 64), + strconv.FormatFloat(report.TotalCashOut, 'f', 2, 64), + strconv.FormatFloat(report.TotalCashBack, 'f', 2, 64), + report.GeneratedAt.Format(time.RFC3339), + }) +} diff --git a/internal/repository/report.go b/internal/repository/report.go new file mode 100644 index 0000000..f7b2693 --- /dev/null +++ b/internal/repository/report.go @@ -0,0 +1,107 @@ +package repository + +import ( + "context" + "time" + + "github.com/SamuelTariku/FortuneBet-Backend/internal/domain" +) + +type ReportRepository interface { + GenerateReport(timeFrame domain.TimeFrame, start, end time.Time) (*domain.Report, error) + SaveReport(report *domain.Report) error + FindReportsByTimeFrame(timeFrame domain.TimeFrame, limit int) ([]*domain.Report, error) +} + +type ReportRepo struct { + store *Store +} + +func NewReportRepo(store *Store) ReportRepository { + return &ReportRepo{store: store} +} + +func (r *ReportRepo) GenerateReport(timeFrame domain.TimeFrame, start, end time.Time) (*domain.Report, error) { + // Implement SQL queries to calculate metrics + var report domain.Report + + // Total Bets + err := r.store.conn.QueryRow( + context.Background(), + `SELECT COUNT(*) FROM bets + WHERE created_at BETWEEN $1 AND $2`, start, end).Scan(&report.TotalBets) + if err != nil { + return nil, err + } + + // Total Cash In + err = r.store.conn.QueryRow( + context.Background(), + `SELECT COALESCE(SUM(amount), 0) FROM transactions + WHERE type = 'stake' AND created_at BETWEEN $1 AND $2`, start, end).Scan(&report.TotalCashIn) + if err != nil { + return nil, err + } + + // Similar queries for Cash Out and Cash Back... + + report.TimeFrame = timeFrame + report.PeriodStart = start + report.PeriodEnd = end + report.GeneratedAt = time.Now() + + return &report, nil +} + +func (r *ReportRepo) SaveReport(report *domain.Report) error { + _, err := r.store.conn.Exec( + context.Background(), + `INSERT INTO reports + (id, time_frame, period_start, period_end, total_bets, total_cash_in, total_cash_out, total_cash_back, generated_at) + VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9)`, + report.ID, report.TimeFrame, report.PeriodStart, report.PeriodEnd, + report.TotalBets, report.TotalCashIn, report.TotalCashOut, report.TotalCashBack, report.GeneratedAt) + return err +} + +func (r *ReportRepo) FindReportsByTimeFrame(timeFrame domain.TimeFrame, limit int) ([]*domain.Report, error) { + rows, err := r.store.conn.Query( + context.Background(), + `SELECT id, time_frame, period_start, period_end, total_bets, + total_cash_in, total_cash_out, total_cash_back, generated_at + FROM reports + WHERE time_frame = $1 + ORDER BY generated_at DESC + LIMIT $2`, + timeFrame, limit) + if err != nil { + return nil, err + } + defer rows.Close() + + var reports []*domain.Report + for rows.Next() { + var report domain.Report + err := rows.Scan( + &report.ID, + &report.TimeFrame, + &report.PeriodStart, + &report.PeriodEnd, + &report.TotalBets, + &report.TotalCashIn, + &report.TotalCashOut, + &report.TotalCashBack, + &report.GeneratedAt, + ) + if err != nil { + return nil, err + } + reports = append(reports, &report) + } + + if err := rows.Err(); err != nil { + return nil, err + } + + return reports, nil +} diff --git a/internal/services/report/service.go b/internal/services/report/service.go index d102d18..eaa5c60 100644 --- a/internal/services/report/service.go +++ b/internal/services/report/service.go @@ -5,15 +5,18 @@ import ( "errors" "log/slog" "sort" + "time" "github.com/SamuelTariku/FortuneBet-Backend/internal/domain" "github.com/SamuelTariku/FortuneBet-Backend/internal/repository" "github.com/SamuelTariku/FortuneBet-Backend/internal/services/bet" "github.com/SamuelTariku/FortuneBet-Backend/internal/services/branch" "github.com/SamuelTariku/FortuneBet-Backend/internal/services/company" + // notificationservice "github.com/SamuelTariku/FortuneBet-Backend/internal/services/notfication" "github.com/SamuelTariku/FortuneBet-Backend/internal/services/transaction" "github.com/SamuelTariku/FortuneBet-Backend/internal/services/user" + // virtualgameservice "github.com/SamuelTariku/FortuneBet-Backend/internal/services/virtualGame" "github.com/SamuelTariku/FortuneBet-Backend/internal/services/wallet" ) @@ -29,6 +32,7 @@ type Service struct { transactionStore transaction.TransactionStore branchStore branch.BranchStore userStore user.UserStore + repo repository.ReportRepository companyStore company.CompanyStore virtulaGamesStore repository.VirtualGameRepository notificationStore repository.NotificationRepository @@ -41,6 +45,7 @@ func NewService( transactionStore transaction.TransactionStore, branchStore branch.BranchStore, userStore user.UserStore, + repo repository.ReportRepository, companyStore company.CompanyStore, virtulaGamesStore repository.VirtualGameRepository, notificationStore repository.NotificationRepository, @@ -52,6 +57,7 @@ func NewService( transactionStore: transactionStore, branchStore: branchStore, userStore: userStore, + repo: repo, companyStore: companyStore, virtulaGamesStore: virtulaGamesStore, notificationStore: notificationStore, @@ -448,6 +454,34 @@ func (s *Service) GetSportPerformance(ctx context.Context, filter domain.ReportF return performances, nil } +func (s *Service) GenerateReport(timeFrame domain.TimeFrame) (*domain.Report, error) { + now := time.Now() + var start, end time.Time + + switch timeFrame { + case domain.Daily: + start = now.AddDate(0, 0, -1) + end = now + case domain.Weekly: + start = now.AddDate(0, 0, -7) + end = now + case domain.Monthly: + start = now.AddDate(0, -1, 0) + end = now + } + + report, err := s.repo.GenerateReport(timeFrame, start, end) + if err != nil { + return nil, err + } + + if err := s.repo.SaveReport(report); err != nil { + return nil, err + } + + return report, nil +} + // func (s *Service) GetCompanyPerformance(ctx context.Context, filter domain.ReportFilter) ([]domain.CompanyPerformance, error) { // // Get company bet activity // companyBets, err := s.betStore.GetCompanyBetActivity(ctx, filter) diff --git a/internal/web_server/cron.go b/internal/web_server/cron.go index 769d0b3..3b7baec 100644 --- a/internal/web_server/cron.go +++ b/internal/web_server/cron.go @@ -2,18 +2,43 @@ package httpserver import ( "context" + "time" "log" // "time" + "github.com/SamuelTariku/FortuneBet-Backend/internal/domain" eventsvc "github.com/SamuelTariku/FortuneBet-Backend/internal/services/event" oddssvc "github.com/SamuelTariku/FortuneBet-Backend/internal/services/odds" resultsvc "github.com/SamuelTariku/FortuneBet-Backend/internal/services/result" "github.com/SamuelTariku/FortuneBet-Backend/internal/services/ticket" + "github.com/SamuelTariku/FortuneBet-Backend/internal/web_server/worker" + "github.com/go-co-op/gocron" "github.com/robfig/cron/v3" ) +func SetupReportCronJob(reportWorker *worker.ReportWorker) { + s := gocron.NewScheduler(time.UTC) + + // Daily at midnight + _, _ = s.Every(1).Day().At("00:00").Do(func() { + _ = reportWorker.GenerateAndExport(domain.Daily) + }) + + // Weekly on Sunday at 00:05 + _, _ = s.Every(1).Week().Sunday().At("00:05").Do(func() { + _ = reportWorker.GenerateAndExport(domain.Weekly) + }) + + // Monthly on 1st at 00:10 + _, _ = s.Every(1).Month(1).At("00:10").Do(func() { + _ = reportWorker.GenerateAndExport(domain.Monthly) + }) + + s.StartAsync() +} + func StartDataFetchingCrons(eventService eventsvc.Service, oddsService oddssvc.Service, resultService *resultsvc.Service) { c := cron.New(cron.WithSeconds()) diff --git a/internal/web_server/worker/report.go b/internal/web_server/worker/report.go new file mode 100644 index 0000000..ab6fc6c --- /dev/null +++ b/internal/web_server/worker/report.go @@ -0,0 +1,29 @@ +// worker/report_worker.go +package worker + +import ( + "github.com/SamuelTariku/FortuneBet-Backend/internal/domain" + "github.com/SamuelTariku/FortuneBet-Backend/internal/infrastructure" + "github.com/SamuelTariku/FortuneBet-Backend/internal/services/report" +) + +type ReportWorker struct { + reportService *report.Service + exporter infrastructure.CSVExporter +} + +func NewReportWorker(service *report.Service, exporter infrastructure.CSVExporter) *ReportWorker { + return &ReportWorker{ + reportService: service, + exporter: exporter, + } +} + +func (w *ReportWorker) GenerateAndExport(timeFrame domain.TimeFrame) error { + report, err := w.reportService.GenerateReport(timeFrame) + if err != nil { + return err + } + + return w.exporter.Export(report) +} diff --git a/logs/app.log b/logs/app.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/failed_markets.log b/logs/failed_markets.log new file mode 100644 index 0000000..30e7875 --- /dev/null +++ b/logs/failed_markets.log @@ -0,0 +1,39033 @@ +{ + "time": "2025-05-21T12:31:39+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:29:17+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "17.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810815575", + "odds": "1.833", + "name": "HT: Leganes \u2013 FT: Leganes", + "handicap": "" + }, + { + "id": "810816336", + "odds": "2.000", + "name": "Leganes to Score in Both Halves", + "handicap": "" + }, + { + "id": "810822897", + "odds": "3.000", + "name": "Juan Cruz to Score", + "handicap": "" + }, + { + "id": "810816138", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "2.000", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "8.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:31:49+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:28:20+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818223413", + "odds": "3.000", + "name": "Antoniu Roca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810882878", + "odds": "2.300", + "name": "Eduardo Exposito to Score or Assist", + "handicap": "" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "7.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:31:49+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:28:20+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818223413", + "odds": "3.000", + "name": "Antoniu Roca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810882878", + "odds": "2.300", + "name": "Eduardo Exposito to Score or Assist", + "handicap": "" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "7.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:32:16+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:29:22+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.375", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.615", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.100", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.000", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.100", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.250", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.100", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:32:20+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:22:47+03:00", + "Odds": [ + { + "id": "810801158", + "odds": "9.000", + "name": "Williot Swedberg", + "handicap": "" + }, + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234792", + "odds": "1.833", + "name": "Fernando Lopez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235097", + "odds": "1.400", + "name": "Williot Swedberg: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810796354", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818233069", + "odds": "2.375", + "name": "Moya Borja Mayoral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818272629", + "odds": "3.500", + "name": "Pablo Duran: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.200", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:32:20+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:22:47+03:00", + "Odds": [ + { + "id": "810801158", + "odds": "9.000", + "name": "Williot Swedberg", + "handicap": "" + }, + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234792", + "odds": "1.833", + "name": "Fernando Lopez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235097", + "odds": "1.400", + "name": "Williot Swedberg: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810796354", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818233069", + "odds": "2.375", + "name": "Moya Borja Mayoral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818272629", + "odds": "3.500", + "name": "Pablo Duran: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.200", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:32:31+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:30:46+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "4.000", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.500", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.300", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.250", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.750", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.333", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.000", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.200", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:32:31+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:30:46+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "4.000", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.500", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.300", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.250", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.750", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.333", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.000", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.200", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:34:04+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:29:39+03:00", + "Odds": [ + { + "id": "810813776", + "odds": "9.000", + "name": "Alexander Sorloth", + "handicap": "" + }, + { + "id": "810813006", + "odds": "9.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257809", + "odds": "2.100", + "name": "Julian Alvarez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810899950", + "odds": "1.666", + "name": "Julian Alvarez to Score or Assist", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "810900002", + "odds": "1.727", + "name": "Alexander Sorloth to Score or Assist", + "handicap": "" + }, + { + "id": "818257762", + "odds": "2.100", + "name": "Alexander Sorloth: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810806697", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818257811", + "odds": "2.750", + "name": "Samuel Lino: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818306182", + "odds": "3.250", + "name": "Cristhian Stuani: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "4.200", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:34:04+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:29:39+03:00", + "Odds": [ + { + "id": "810813776", + "odds": "9.000", + "name": "Alexander Sorloth", + "handicap": "" + }, + { + "id": "810813006", + "odds": "9.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257809", + "odds": "2.100", + "name": "Julian Alvarez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810899950", + "odds": "1.666", + "name": "Julian Alvarez to Score or Assist", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "810900002", + "odds": "1.727", + "name": "Alexander Sorloth to Score or Assist", + "handicap": "" + }, + { + "id": "818257762", + "odds": "2.100", + "name": "Alexander Sorloth: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810806697", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818257811", + "odds": "2.750", + "name": "Samuel Lino: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818306182", + "odds": "3.250", + "name": "Cristhian Stuani: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "4.200", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:34:43+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9016963", + "FI": "173826315", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:34:32+03:00", + "Odds": [ + { + "id": "807193833", + "odds": "10.000", + "name": "Virgil van Dijk", + "handicap": "" + }, + { + "id": "807193986", + "odds": "12.000", + "name": "Luis Diaz", + "handicap": "" + }, + { + "id": "661805323", + "odds": "1.380", + "name": "FT Result: Liverpool", + "handicap": "" + }, + { + "id": "807192225", + "odds": "1.666", + "name": "Mohamed Salah to Score", + "handicap": "" + }, + { + "id": "807197558", + "odds": "2.750", + "name": "Mohamed Salah to Assist", + "handicap": "" + }, + { + "id": "804656664", + "odds": "2.000", + "name": "HT: Liverpool \u2013 FT: Liverpool", + "handicap": "" + }, + { + "id": "819075054", + "odds": "1.666", + "name": "Mohamed Salah: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819074957", + "odds": "2.200", + "name": "Cody Gakpo: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819081389", + "odds": "1.444", + "name": "Eberechi Eze: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819453064", + "odds": "1.250", + "name": "Luis Diaz: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819075012", + "odds": "1.533", + "name": "Dominik Szoboszlai: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "804658978", + "odds": "2.750", + "name": "Liverpool to Win to Nil", + "handicap": "" + }, + { + "id": "818998267", + "odds": "1.222", + "name": "Most Corners: Liverpool", + "handicap": "" + }, + { + "id": "819451925", + "odds": "1.300", + "name": "Most Shots on Target: Liverpool", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:36:58+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977001", + "FI": "174206898", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:36:09+03:00", + "Odds": [ + { + "id": "810769529", + "odds": "7.000", + "name": "Robert Lewandowski", + "handicap": "" + }, + { + "id": "810770215", + "odds": "9.500", + "name": "Lamine Yamal", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.050", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283162", + "odds": "2.000", + "name": "Robert Lewandowski: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810767797", + "odds": "2.100", + "name": "Robert Lewandowski to Score", + "handicap": "" + }, + { + "id": "810764064", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818280046", + "odds": "2.250", + "name": "Gorka Guruzeta: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818338019", + "odds": "2.750", + "name": "Lamine Yamal: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713503841", + "odds": "2.050", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283150", + "odds": "2.000", + "name": "Raphinha: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810774636", + "odds": "1.800", + "name": "Lamine Yamal to Score or Assist", + "handicap": "" + }, + { + "id": "713503825", + "odds": "3.300", + "name": "FT Result: Athletic Bilbao", + "handicap": "" + }, + { + "id": "810774497", + "odds": "2.200", + "name": "Oihan Sancet to Score or Assist", + "handicap": "" + }, + { + "id": "813208230", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:37:21+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9929184", + "FI": "174363978", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:35:59+03:00", + "Odds": [ + { + "id": "774550908", + "odds": "21.000", + "name": "Antony", + "handicap": "" + }, + { + "id": "774550887", + "odds": "15.000", + "name": "Nicolas Jackson", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734591996", + "odds": "1.833", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "774549605", + "odds": "2.300", + "name": "Cole Palmer to Score", + "handicap": "" + }, + { + "id": "774549558", + "odds": "2.875", + "name": "Nicolas Jackson to Score", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734590525", + "odds": "2.000", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:37:31+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9924545", + "FI": "174307725", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:37:26+03:00", + "Odds": [ + { + "id": "726811888", + "odds": "13.000", + "name": "Lautaro Martinez", + "handicap": "" + }, + { + "id": "726811982", + "odds": "11.000", + "name": "Khvicha Kvaratskhelia", + "handicap": "" + }, + { + "id": "726816128", + "odds": "1.666", + "name": "PSG to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811208", + "odds": "3.250", + "name": "Bradley Barcola to Score", + "handicap": "" + }, + { + "id": "726806476", + "odds": "1.909", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "726816130", + "odds": "2.200", + "name": "Inter Milan to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811216", + "odds": "3.250", + "name": "Marcus Thuram to Score", + "handicap": "" + }, + { + "id": "726807442", + "odds": "1.700", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "726816349", + "odds": "2.250", + "name": "Lautaro Martinez to Score or Assist", + "handicap": "" + }, + { + "id": "726816313", + "odds": "2.000", + "name": "Khvicha Kvaratskhelia to Score or Assist", + "handicap": "" + }, + { + "id": "726816123", + "odds": "2.250", + "name": "PSG to Win in 90 Mins", + "handicap": "" + }, + { + "id": "726807627", + "odds": "3.400", + "name": "PSG to Score in Both Halves", + "handicap": "" + }, + { + "id": "726811207", + "odds": "4.000", + "name": "Desire Doue to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:46:19+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:43:42+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "17.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810815575", + "odds": "1.833", + "name": "HT: Leganes \u2013 FT: Leganes", + "handicap": "" + }, + { + "id": "810816336", + "odds": "2.000", + "name": "Leganes to Score in Both Halves", + "handicap": "" + }, + { + "id": "810822897", + "odds": "3.000", + "name": "Juan Cruz to Score", + "handicap": "" + }, + { + "id": "810816138", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "2.000", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "8.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:46:29+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:37:08+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818223413", + "odds": "3.000", + "name": "Antoniu Roca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810882878", + "odds": "2.300", + "name": "Eduardo Exposito to Score or Assist", + "handicap": "" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "7.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:46:29+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:37:08+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818223413", + "odds": "3.000", + "name": "Antoniu Roca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810882878", + "odds": "2.300", + "name": "Eduardo Exposito to Score or Assist", + "handicap": "" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "7.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:46:54+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:45:48+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.375", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.615", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.100", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.000", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.100", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.250", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.100", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:46:58+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:40:10+03:00", + "Odds": [ + { + "id": "810801158", + "odds": "9.000", + "name": "Williot Swedberg", + "handicap": "" + }, + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234792", + "odds": "1.833", + "name": "Fernando Lopez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235097", + "odds": "1.400", + "name": "Williot Swedberg: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810796354", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818233069", + "odds": "2.375", + "name": "Moya Borja Mayoral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818272629", + "odds": "3.500", + "name": "Pablo Duran: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.200", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:46:58+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:40:10+03:00", + "Odds": [ + { + "id": "810801158", + "odds": "9.000", + "name": "Williot Swedberg", + "handicap": "" + }, + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234792", + "odds": "1.833", + "name": "Fernando Lopez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235097", + "odds": "1.400", + "name": "Williot Swedberg: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810796354", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818233069", + "odds": "2.375", + "name": "Moya Borja Mayoral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818272629", + "odds": "3.500", + "name": "Pablo Duran: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.200", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:47:06+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:45:43+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "4.000", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.500", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.300", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.250", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.750", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.333", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.000", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.200", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:47:06+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:45:43+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "4.000", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.500", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.300", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.250", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.750", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.333", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.000", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.200", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:48:48+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:47:46+03:00", + "Odds": [ + { + "id": "810813776", + "odds": "9.000", + "name": "Alexander Sorloth", + "handicap": "" + }, + { + "id": "810813006", + "odds": "9.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257809", + "odds": "2.100", + "name": "Julian Alvarez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810899950", + "odds": "1.666", + "name": "Julian Alvarez to Score or Assist", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "810900002", + "odds": "1.727", + "name": "Alexander Sorloth to Score or Assist", + "handicap": "" + }, + { + "id": "818257762", + "odds": "2.100", + "name": "Alexander Sorloth: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810806697", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818257811", + "odds": "2.750", + "name": "Samuel Lino: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818306182", + "odds": "3.250", + "name": "Cristhian Stuani: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "4.200", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:48:48+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:47:46+03:00", + "Odds": [ + { + "id": "810813776", + "odds": "9.000", + "name": "Alexander Sorloth", + "handicap": "" + }, + { + "id": "810813006", + "odds": "9.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257809", + "odds": "2.100", + "name": "Julian Alvarez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810899950", + "odds": "1.666", + "name": "Julian Alvarez to Score or Assist", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "810900002", + "odds": "1.727", + "name": "Alexander Sorloth to Score or Assist", + "handicap": "" + }, + { + "id": "818257762", + "odds": "2.100", + "name": "Alexander Sorloth: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810806697", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818257811", + "odds": "2.750", + "name": "Samuel Lino: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818306182", + "odds": "3.250", + "name": "Cristhian Stuani: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "4.200", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:49:23+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9016963", + "FI": "173826315", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:47:52+03:00", + "Odds": [ + { + "id": "807193833", + "odds": "10.000", + "name": "Virgil van Dijk", + "handicap": "" + }, + { + "id": "807193986", + "odds": "12.000", + "name": "Luis Diaz", + "handicap": "" + }, + { + "id": "661805323", + "odds": "1.380", + "name": "FT Result: Liverpool", + "handicap": "" + }, + { + "id": "807192225", + "odds": "1.666", + "name": "Mohamed Salah to Score", + "handicap": "" + }, + { + "id": "807197558", + "odds": "2.750", + "name": "Mohamed Salah to Assist", + "handicap": "" + }, + { + "id": "804656664", + "odds": "2.000", + "name": "HT: Liverpool \u2013 FT: Liverpool", + "handicap": "" + }, + { + "id": "819075054", + "odds": "1.666", + "name": "Mohamed Salah: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819074957", + "odds": "2.200", + "name": "Cody Gakpo: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819081389", + "odds": "1.444", + "name": "Eberechi Eze: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819453064", + "odds": "1.250", + "name": "Luis Diaz: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819075012", + "odds": "1.533", + "name": "Dominik Szoboszlai: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "804658978", + "odds": "2.750", + "name": "Liverpool to Win to Nil", + "handicap": "" + }, + { + "id": "818998267", + "odds": "1.222", + "name": "Most Corners: Liverpool", + "handicap": "" + }, + { + "id": "819451925", + "odds": "1.300", + "name": "Most Shots on Target: Liverpool", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:51:25+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977001", + "FI": "174206898", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:49:31+03:00", + "Odds": [ + { + "id": "810769529", + "odds": "7.000", + "name": "Robert Lewandowski", + "handicap": "" + }, + { + "id": "810770215", + "odds": "9.500", + "name": "Lamine Yamal", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.050", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283162", + "odds": "2.000", + "name": "Robert Lewandowski: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810767797", + "odds": "2.100", + "name": "Robert Lewandowski to Score", + "handicap": "" + }, + { + "id": "810764064", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818280046", + "odds": "2.250", + "name": "Gorka Guruzeta: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818338019", + "odds": "2.750", + "name": "Lamine Yamal: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713503841", + "odds": "2.050", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283150", + "odds": "2.000", + "name": "Raphinha: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810774636", + "odds": "1.800", + "name": "Lamine Yamal to Score or Assist", + "handicap": "" + }, + { + "id": "713503825", + "odds": "3.300", + "name": "FT Result: Athletic Bilbao", + "handicap": "" + }, + { + "id": "810774497", + "odds": "2.200", + "name": "Oihan Sancet to Score or Assist", + "handicap": "" + }, + { + "id": "813208230", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:51:53+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9929184", + "FI": "174363978", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:51:45+03:00", + "Odds": [ + { + "id": "774550908", + "odds": "21.000", + "name": "Antony", + "handicap": "" + }, + { + "id": "774550887", + "odds": "15.000", + "name": "Nicolas Jackson", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734591996", + "odds": "1.833", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "774549605", + "odds": "2.300", + "name": "Cole Palmer to Score", + "handicap": "" + }, + { + "id": "774549558", + "odds": "2.875", + "name": "Nicolas Jackson to Score", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734590525", + "odds": "2.000", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T12:51:57+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9924545", + "FI": "174307725", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:48:24+03:00", + "Odds": [ + { + "id": "726811888", + "odds": "13.000", + "name": "Lautaro Martinez", + "handicap": "" + }, + { + "id": "726811982", + "odds": "11.000", + "name": "Khvicha Kvaratskhelia", + "handicap": "" + }, + { + "id": "726816128", + "odds": "1.666", + "name": "PSG to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811208", + "odds": "3.250", + "name": "Bradley Barcola to Score", + "handicap": "" + }, + { + "id": "726806476", + "odds": "1.909", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "726816130", + "odds": "2.200", + "name": "Inter Milan to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811216", + "odds": "3.250", + "name": "Marcus Thuram to Score", + "handicap": "" + }, + { + "id": "726807442", + "odds": "1.700", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "726816349", + "odds": "2.250", + "name": "Lautaro Martinez to Score or Assist", + "handicap": "" + }, + { + "id": "726816313", + "odds": "2.000", + "name": "Khvicha Kvaratskhelia to Score or Assist", + "handicap": "" + }, + { + "id": "726816123", + "odds": "2.250", + "name": "PSG to Win in 90 Mins", + "handicap": "" + }, + { + "id": "726807627", + "odds": "3.400", + "name": "PSG to Score in Both Halves", + "handicap": "" + }, + { + "id": "726811207", + "odds": "4.000", + "name": "Desire Doue to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:01:15+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:58:20+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "17.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810815575", + "odds": "1.833", + "name": "HT: Leganes \u2013 FT: Leganes", + "handicap": "" + }, + { + "id": "810816336", + "odds": "2.000", + "name": "Leganes to Score in Both Halves", + "handicap": "" + }, + { + "id": "810822897", + "odds": "3.000", + "name": "Juan Cruz to Score", + "handicap": "" + }, + { + "id": "810816138", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "2.000", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "8.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:01:39+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:58:04+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818223413", + "odds": "3.000", + "name": "Antoniu Roca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810882878", + "odds": "2.300", + "name": "Eduardo Exposito to Score or Assist", + "handicap": "" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "7.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:01:39+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:58:04+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818223413", + "odds": "3.000", + "name": "Antoniu Roca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810882878", + "odds": "2.300", + "name": "Eduardo Exposito to Score or Assist", + "handicap": "" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "7.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:02:00+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:58:35+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.375", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.615", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.100", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.333", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.200", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.400", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.100", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "2.000", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:02:06+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:57:13+03:00", + "Odds": [ + { + "id": "810801158", + "odds": "9.000", + "name": "Williot Swedberg", + "handicap": "" + }, + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234792", + "odds": "1.833", + "name": "Fernando Lopez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235097", + "odds": "1.400", + "name": "Williot Swedberg: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810796354", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818233069", + "odds": "2.375", + "name": "Moya Borja Mayoral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818272629", + "odds": "3.500", + "name": "Pablo Duran: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.200", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:02:06+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:57:13+03:00", + "Odds": [ + { + "id": "810801158", + "odds": "9.000", + "name": "Williot Swedberg", + "handicap": "" + }, + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234792", + "odds": "1.833", + "name": "Fernando Lopez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235097", + "odds": "1.400", + "name": "Williot Swedberg: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810796354", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818233069", + "odds": "2.375", + "name": "Moya Borja Mayoral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818272629", + "odds": "3.500", + "name": "Pablo Duran: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.200", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:02:16+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:59:49+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "4.000", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.500", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.300", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.250", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.750", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.333", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.000", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.200", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:02:16+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T12:59:49+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "4.000", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.500", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.300", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.250", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.750", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.333", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.000", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.200", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:03:55+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T13:00:19+03:00", + "Odds": [ + { + "id": "810813776", + "odds": "9.000", + "name": "Alexander Sorloth", + "handicap": "" + }, + { + "id": "810813006", + "odds": "9.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257809", + "odds": "2.100", + "name": "Julian Alvarez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810899950", + "odds": "1.666", + "name": "Julian Alvarez to Score or Assist", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "810900002", + "odds": "1.727", + "name": "Alexander Sorloth to Score or Assist", + "handicap": "" + }, + { + "id": "818257762", + "odds": "2.100", + "name": "Alexander Sorloth: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810806697", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818257811", + "odds": "2.750", + "name": "Samuel Lino: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818306182", + "odds": "3.250", + "name": "Cristhian Stuani: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "4.200", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:03:55+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T13:00:19+03:00", + "Odds": [ + { + "id": "810813776", + "odds": "9.000", + "name": "Alexander Sorloth", + "handicap": "" + }, + { + "id": "810813006", + "odds": "9.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257809", + "odds": "2.100", + "name": "Julian Alvarez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810899950", + "odds": "1.666", + "name": "Julian Alvarez to Score or Assist", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "810900002", + "odds": "1.727", + "name": "Alexander Sorloth to Score or Assist", + "handicap": "" + }, + { + "id": "818257762", + "odds": "2.100", + "name": "Alexander Sorloth: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810806697", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818257811", + "odds": "2.750", + "name": "Samuel Lino: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818306182", + "odds": "3.250", + "name": "Cristhian Stuani: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "4.200", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:04:33+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9016963", + "FI": "173826315", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T13:02:19+03:00", + "Odds": [ + { + "id": "807193833", + "odds": "10.000", + "name": "Virgil van Dijk", + "handicap": "" + }, + { + "id": "807193986", + "odds": "12.000", + "name": "Luis Diaz", + "handicap": "" + }, + { + "id": "661805323", + "odds": "1.380", + "name": "FT Result: Liverpool", + "handicap": "" + }, + { + "id": "807192225", + "odds": "1.666", + "name": "Mohamed Salah to Score", + "handicap": "" + }, + { + "id": "807197558", + "odds": "2.750", + "name": "Mohamed Salah to Assist", + "handicap": "" + }, + { + "id": "804656664", + "odds": "2.000", + "name": "HT: Liverpool \u2013 FT: Liverpool", + "handicap": "" + }, + { + "id": "819075054", + "odds": "1.666", + "name": "Mohamed Salah: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819074957", + "odds": "2.200", + "name": "Cody Gakpo: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819081389", + "odds": "1.444", + "name": "Eberechi Eze: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819453064", + "odds": "1.250", + "name": "Luis Diaz: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819075012", + "odds": "1.533", + "name": "Dominik Szoboszlai: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "804658978", + "odds": "2.750", + "name": "Liverpool to Win to Nil", + "handicap": "" + }, + { + "id": "818998267", + "odds": "1.222", + "name": "Most Corners: Liverpool", + "handicap": "" + }, + { + "id": "819451925", + "odds": "1.300", + "name": "Most Shots on Target: Liverpool", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:06:43+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977001", + "FI": "174206898", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T13:04:29+03:00", + "Odds": [ + { + "id": "810769529", + "odds": "7.000", + "name": "Robert Lewandowski", + "handicap": "" + }, + { + "id": "810770215", + "odds": "9.500", + "name": "Lamine Yamal", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.050", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283162", + "odds": "2.000", + "name": "Robert Lewandowski: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810767797", + "odds": "2.100", + "name": "Robert Lewandowski to Score", + "handicap": "" + }, + { + "id": "810764064", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818280046", + "odds": "2.250", + "name": "Gorka Guruzeta: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818338019", + "odds": "2.750", + "name": "Lamine Yamal: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713503841", + "odds": "2.050", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283150", + "odds": "2.000", + "name": "Raphinha: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810774636", + "odds": "1.800", + "name": "Lamine Yamal to Score or Assist", + "handicap": "" + }, + { + "id": "713503825", + "odds": "3.300", + "name": "FT Result: Athletic Bilbao", + "handicap": "" + }, + { + "id": "810774497", + "odds": "2.200", + "name": "Oihan Sancet to Score or Assist", + "handicap": "" + }, + { + "id": "813208230", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:07:19+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9929184", + "FI": "174363978", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T13:02:59+03:00", + "Odds": [ + { + "id": "774550908", + "odds": "21.000", + "name": "Antony", + "handicap": "" + }, + { + "id": "774550887", + "odds": "15.000", + "name": "Nicolas Jackson", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734591996", + "odds": "1.833", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "774549605", + "odds": "2.300", + "name": "Cole Palmer to Score", + "handicap": "" + }, + { + "id": "774549558", + "odds": "2.875", + "name": "Nicolas Jackson to Score", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734590525", + "odds": "2.000", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:07:41+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9924545", + "FI": "174307725", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T13:06:39+03:00", + "Odds": [ + { + "id": "726811888", + "odds": "13.000", + "name": "Lautaro Martinez", + "handicap": "" + }, + { + "id": "726811982", + "odds": "11.000", + "name": "Khvicha Kvaratskhelia", + "handicap": "" + }, + { + "id": "726816128", + "odds": "1.666", + "name": "PSG to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811208", + "odds": "3.250", + "name": "Bradley Barcola to Score", + "handicap": "" + }, + { + "id": "726806476", + "odds": "1.909", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "726816130", + "odds": "2.200", + "name": "Inter Milan to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811216", + "odds": "3.250", + "name": "Marcus Thuram to Score", + "handicap": "" + }, + { + "id": "726807442", + "odds": "1.700", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "726816349", + "odds": "2.250", + "name": "Lautaro Martinez to Score or Assist", + "handicap": "" + }, + { + "id": "726816313", + "odds": "2.000", + "name": "Khvicha Kvaratskhelia to Score or Assist", + "handicap": "" + }, + { + "id": "726816123", + "odds": "2.250", + "name": "PSG to Win in 90 Mins", + "handicap": "" + }, + { + "id": "726807627", + "odds": "3.400", + "name": "PSG to Score in Both Halves", + "handicap": "" + }, + { + "id": "726811207", + "odds": "4.000", + "name": "Desire Doue to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:17:13+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T13:15:26+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "17.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810815575", + "odds": "1.833", + "name": "HT: Leganes \u2013 FT: Leganes", + "handicap": "" + }, + { + "id": "810816336", + "odds": "2.000", + "name": "Leganes to Score in Both Halves", + "handicap": "" + }, + { + "id": "810822897", + "odds": "3.000", + "name": "Juan Cruz to Score", + "handicap": "" + }, + { + "id": "810816138", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "2.000", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "8.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:17:21+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T13:16:20+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818223413", + "odds": "3.000", + "name": "Antoniu Roca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810882878", + "odds": "2.300", + "name": "Eduardo Exposito to Score or Assist", + "handicap": "" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "7.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:17:21+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T13:16:20+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818223413", + "odds": "3.000", + "name": "Antoniu Roca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810882878", + "odds": "2.300", + "name": "Eduardo Exposito to Score or Assist", + "handicap": "" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "7.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:17:37+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T13:15:25+03:00", + "Odds": [ + { + "id": "810801158", + "odds": "9.000", + "name": "Williot Swedberg", + "handicap": "" + }, + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234792", + "odds": "1.833", + "name": "Fernando Lopez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235097", + "odds": "1.400", + "name": "Williot Swedberg: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810796354", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818233069", + "odds": "2.375", + "name": "Moya Borja Mayoral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818272629", + "odds": "3.500", + "name": "Pablo Duran: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.200", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:17:37+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T13:15:25+03:00", + "Odds": [ + { + "id": "810801158", + "odds": "9.000", + "name": "Williot Swedberg", + "handicap": "" + }, + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234792", + "odds": "1.833", + "name": "Fernando Lopez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235097", + "odds": "1.400", + "name": "Williot Swedberg: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810796354", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818233069", + "odds": "2.375", + "name": "Moya Borja Mayoral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818272629", + "odds": "3.500", + "name": "Pablo Duran: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.200", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:17:45+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T13:14:44+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "4.000", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.500", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.300", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.250", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.750", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.333", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.000", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.200", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:17:45+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T13:14:44+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "4.000", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.500", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.300", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.250", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.750", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.333", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.000", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.200", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:18:03+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T13:15:19+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.375", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.615", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.100", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.333", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.200", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.400", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.100", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "2.000", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:19:41+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T13:18:19+03:00", + "Odds": [ + { + "id": "810813776", + "odds": "9.000", + "name": "Alexander Sorloth", + "handicap": "" + }, + { + "id": "810813006", + "odds": "9.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257809", + "odds": "2.100", + "name": "Julian Alvarez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810899950", + "odds": "1.666", + "name": "Julian Alvarez to Score or Assist", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "810900002", + "odds": "1.727", + "name": "Alexander Sorloth to Score or Assist", + "handicap": "" + }, + { + "id": "818257762", + "odds": "2.100", + "name": "Alexander Sorloth: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810806697", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818257811", + "odds": "2.750", + "name": "Samuel Lino: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818306182", + "odds": "3.250", + "name": "Cristhian Stuani: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "4.200", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:19:41+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T13:18:19+03:00", + "Odds": [ + { + "id": "810813776", + "odds": "9.000", + "name": "Alexander Sorloth", + "handicap": "" + }, + { + "id": "810813006", + "odds": "9.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257809", + "odds": "2.100", + "name": "Julian Alvarez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810899950", + "odds": "1.666", + "name": "Julian Alvarez to Score or Assist", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "810900002", + "odds": "1.727", + "name": "Alexander Sorloth to Score or Assist", + "handicap": "" + }, + { + "id": "818257762", + "odds": "2.100", + "name": "Alexander Sorloth: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810806697", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818257811", + "odds": "2.750", + "name": "Samuel Lino: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818306182", + "odds": "3.250", + "name": "Cristhian Stuani: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "4.200", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T13:20:39+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9016963", + "FI": "173826315", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T13:19:37+03:00", + "Odds": [ + { + "id": "807193833", + "odds": "10.000", + "name": "Virgil van Dijk", + "handicap": "" + }, + { + "id": "807193986", + "odds": "11.000", + "name": "Luis Diaz", + "handicap": "" + }, + { + "id": "661805323", + "odds": "1.380", + "name": "FT Result: Liverpool", + "handicap": "" + }, + { + "id": "807192225", + "odds": "1.666", + "name": "Mohamed Salah to Score", + "handicap": "" + }, + { + "id": "807197558", + "odds": "2.750", + "name": "Mohamed Salah to Assist", + "handicap": "" + }, + { + "id": "804656664", + "odds": "2.000", + "name": "HT: Liverpool \u2013 FT: Liverpool", + "handicap": "" + }, + { + "id": "819075054", + "odds": "1.666", + "name": "Mohamed Salah: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819074957", + "odds": "2.200", + "name": "Cody Gakpo: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819081389", + "odds": "1.444", + "name": "Eberechi Eze: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819453064", + "odds": "1.250", + "name": "Luis Diaz: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819075012", + "odds": "1.533", + "name": "Dominik Szoboszlai: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "804658978", + "odds": "3.000", + "name": "Liverpool to Win to Nil", + "handicap": "" + }, + { + "id": "818998267", + "odds": "1.222", + "name": "Most Corners: Liverpool", + "handicap": "" + }, + { + "id": "819451925", + "odds": "1.300", + "name": "Most Shots on Target: Liverpool", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:09:35+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:03:55+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "17.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810815575", + "odds": "1.833", + "name": "HT: Leganes \u2013 FT: Leganes", + "handicap": "" + }, + { + "id": "810816336", + "odds": "2.000", + "name": "Leganes to Score in Both Halves", + "handicap": "" + }, + { + "id": "810822897", + "odds": "3.000", + "name": "Juan Cruz to Score", + "handicap": "" + }, + { + "id": "810816138", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "2.000", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "8.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:09:42+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:01:48+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818223413", + "odds": "3.000", + "name": "Antoniu Roca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810882878", + "odds": "2.300", + "name": "Eduardo Exposito to Score or Assist", + "handicap": "" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "7.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:09:42+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:01:48+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818223413", + "odds": "3.000", + "name": "Antoniu Roca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810882878", + "odds": "2.300", + "name": "Eduardo Exposito to Score or Assist", + "handicap": "" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "7.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:09:49+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:07:46+03:00", + "Odds": [ + { + "id": "810801158", + "odds": "9.000", + "name": "Williot Swedberg", + "handicap": "" + }, + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234792", + "odds": "1.833", + "name": "Fernando Lopez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235097", + "odds": "1.400", + "name": "Williot Swedberg: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810796354", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818233069", + "odds": "2.375", + "name": "Moya Borja Mayoral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818272629", + "odds": "3.500", + "name": "Pablo Duran: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.200", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:09:49+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:07:46+03:00", + "Odds": [ + { + "id": "810801158", + "odds": "9.000", + "name": "Williot Swedberg", + "handicap": "" + }, + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234792", + "odds": "1.833", + "name": "Fernando Lopez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235097", + "odds": "1.400", + "name": "Williot Swedberg: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810796354", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818233069", + "odds": "2.375", + "name": "Moya Borja Mayoral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818272629", + "odds": "3.500", + "name": "Pablo Duran: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.200", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:09:54+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:08:24+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "4.000", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.500", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.300", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.250", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.750", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.333", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.000", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.200", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:09:54+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:08:24+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "4.000", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.500", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.300", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.250", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.750", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.333", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.000", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.200", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:10:06+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:03:43+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.375", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.615", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.100", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.333", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.200", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.400", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.100", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "2.000", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:11:20+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:06:44+03:00", + "Odds": [ + { + "id": "810813776", + "odds": "9.000", + "name": "Alexander Sorloth", + "handicap": "" + }, + { + "id": "810813006", + "odds": "9.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257809", + "odds": "2.100", + "name": "Julian Alvarez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810899950", + "odds": "1.666", + "name": "Julian Alvarez to Score or Assist", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "810900002", + "odds": "1.727", + "name": "Alexander Sorloth to Score or Assist", + "handicap": "" + }, + { + "id": "818257762", + "odds": "2.100", + "name": "Alexander Sorloth: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810806697", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818257811", + "odds": "2.750", + "name": "Samuel Lino: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818306182", + "odds": "3.250", + "name": "Cristhian Stuani: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "4.200", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:11:20+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:06:44+03:00", + "Odds": [ + { + "id": "810813776", + "odds": "9.000", + "name": "Alexander Sorloth", + "handicap": "" + }, + { + "id": "810813006", + "odds": "9.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257809", + "odds": "2.100", + "name": "Julian Alvarez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810899950", + "odds": "1.666", + "name": "Julian Alvarez to Score or Assist", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "810900002", + "odds": "1.727", + "name": "Alexander Sorloth to Score or Assist", + "handicap": "" + }, + { + "id": "818257762", + "odds": "2.100", + "name": "Alexander Sorloth: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810806697", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818257811", + "odds": "2.750", + "name": "Samuel Lino: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818306182", + "odds": "3.250", + "name": "Cristhian Stuani: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "4.200", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:11:54+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9016963", + "FI": "173826315", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:10:26+03:00", + "Odds": [ + { + "id": "807193833", + "odds": "10.000", + "name": "Virgil van Dijk", + "handicap": "" + }, + { + "id": "807193986", + "odds": "11.000", + "name": "Luis Diaz", + "handicap": "" + }, + { + "id": "661805323", + "odds": "1.380", + "name": "FT Result: Liverpool", + "handicap": "" + }, + { + "id": "807192225", + "odds": "1.666", + "name": "Mohamed Salah to Score", + "handicap": "" + }, + { + "id": "807197558", + "odds": "2.750", + "name": "Mohamed Salah to Assist", + "handicap": "" + }, + { + "id": "804656664", + "odds": "2.000", + "name": "HT: Liverpool \u2013 FT: Liverpool", + "handicap": "" + }, + { + "id": "819075054", + "odds": "1.666", + "name": "Mohamed Salah: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819074957", + "odds": "2.200", + "name": "Cody Gakpo: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819081389", + "odds": "1.444", + "name": "Eberechi Eze: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819453064", + "odds": "1.250", + "name": "Luis Diaz: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819075012", + "odds": "1.533", + "name": "Dominik Szoboszlai: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "804658978", + "odds": "3.000", + "name": "Liverpool to Win to Nil", + "handicap": "" + }, + { + "id": "818998267", + "odds": "1.222", + "name": "Most Corners: Liverpool", + "handicap": "" + }, + { + "id": "819451925", + "odds": "1.300", + "name": "Most Shots on Target: Liverpool", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:13:08+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977001", + "FI": "174206898", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:13:02+03:00", + "Odds": [ + { + "id": "810769529", + "odds": "7.000", + "name": "Robert Lewandowski", + "handicap": "" + }, + { + "id": "810770215", + "odds": "9.500", + "name": "Lamine Yamal", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.050", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283162", + "odds": "2.000", + "name": "Robert Lewandowski: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810767797", + "odds": "2.100", + "name": "Robert Lewandowski to Score", + "handicap": "" + }, + { + "id": "810764064", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818280046", + "odds": "2.250", + "name": "Gorka Guruzeta: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818338019", + "odds": "2.750", + "name": "Lamine Yamal: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713503841", + "odds": "2.050", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283150", + "odds": "2.000", + "name": "Raphinha: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810774636", + "odds": "1.800", + "name": "Lamine Yamal to Score or Assist", + "handicap": "" + }, + { + "id": "713503825", + "odds": "3.300", + "name": "FT Result: Athletic Bilbao", + "handicap": "" + }, + { + "id": "810774497", + "odds": "2.200", + "name": "Oihan Sancet to Score or Assist", + "handicap": "" + }, + { + "id": "813208230", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:13:31+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9929184", + "FI": "174363978", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:12:23+03:00", + "Odds": [ + { + "id": "774550908", + "odds": "21.000", + "name": "Antony", + "handicap": "" + }, + { + "id": "774550887", + "odds": "15.000", + "name": "Nicolas Jackson", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734591996", + "odds": "1.833", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "774549605", + "odds": "2.300", + "name": "Cole Palmer to Score", + "handicap": "" + }, + { + "id": "774549558", + "odds": "2.875", + "name": "Nicolas Jackson to Score", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734590525", + "odds": "2.000", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:13:39+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9924545", + "FI": "174307725", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:06:57+03:00", + "Odds": [ + { + "id": "726811888", + "odds": "13.000", + "name": "Lautaro Martinez", + "handicap": "" + }, + { + "id": "726811982", + "odds": "11.000", + "name": "Khvicha Kvaratskhelia", + "handicap": "" + }, + { + "id": "726816128", + "odds": "1.666", + "name": "PSG to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811208", + "odds": "3.250", + "name": "Bradley Barcola to Score", + "handicap": "" + }, + { + "id": "726806476", + "odds": "1.909", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "726816130", + "odds": "2.200", + "name": "Inter Milan to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811216", + "odds": "3.250", + "name": "Marcus Thuram to Score", + "handicap": "" + }, + { + "id": "726807442", + "odds": "1.700", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "726816349", + "odds": "2.250", + "name": "Lautaro Martinez to Score or Assist", + "handicap": "" + }, + { + "id": "726816313", + "odds": "2.000", + "name": "Khvicha Kvaratskhelia to Score or Assist", + "handicap": "" + }, + { + "id": "726816123", + "odds": "2.250", + "name": "PSG to Win in 90 Mins", + "handicap": "" + }, + { + "id": "726807627", + "odds": "3.400", + "name": "PSG to Score in Both Halves", + "handicap": "" + }, + { + "id": "726811207", + "odds": "4.000", + "name": "Desire Doue to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:15:56+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:10:41+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "17.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810815575", + "odds": "1.833", + "name": "HT: Leganes \u2013 FT: Leganes", + "handicap": "" + }, + { + "id": "810816336", + "odds": "2.000", + "name": "Leganes to Score in Both Halves", + "handicap": "" + }, + { + "id": "810822897", + "odds": "3.000", + "name": "Juan Cruz to Score", + "handicap": "" + }, + { + "id": "810816138", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "2.000", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "8.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:16:05+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:01:48+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818223413", + "odds": "3.000", + "name": "Antoniu Roca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810882878", + "odds": "2.300", + "name": "Eduardo Exposito to Score or Assist", + "handicap": "" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "7.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:16:05+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:01:48+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818223413", + "odds": "3.000", + "name": "Antoniu Roca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810882878", + "odds": "2.300", + "name": "Eduardo Exposito to Score or Assist", + "handicap": "" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "7.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:16:45+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:10:13+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.375", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.615", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.100", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.333", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.200", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.400", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.100", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "2.000", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:16:50+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:16:34+03:00", + "Odds": [ + { + "id": "810801158", + "odds": "9.000", + "name": "Williot Swedberg", + "handicap": "" + }, + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234792", + "odds": "1.833", + "name": "Fernando Lopez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235097", + "odds": "1.400", + "name": "Williot Swedberg: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810796354", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818233069", + "odds": "2.375", + "name": "Moya Borja Mayoral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818272629", + "odds": "3.500", + "name": "Pablo Duran: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.200", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:16:50+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:16:34+03:00", + "Odds": [ + { + "id": "810801158", + "odds": "9.000", + "name": "Williot Swedberg", + "handicap": "" + }, + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234792", + "odds": "1.833", + "name": "Fernando Lopez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235097", + "odds": "1.400", + "name": "Williot Swedberg: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810796354", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818233069", + "odds": "2.375", + "name": "Moya Borja Mayoral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818272629", + "odds": "3.500", + "name": "Pablo Duran: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.200", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:16:57+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:15:15+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "4.000", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.500", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.300", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.250", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.750", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.333", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.000", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.200", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:16:57+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:15:15+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "4.000", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.500", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.300", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.250", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.750", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.333", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.000", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.200", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:19:05+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9016963", + "FI": "173826315", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:13:11+03:00", + "Odds": [ + { + "id": "807193833", + "odds": "10.000", + "name": "Virgil van Dijk", + "handicap": "" + }, + { + "id": "807193986", + "odds": "11.000", + "name": "Luis Diaz", + "handicap": "" + }, + { + "id": "661805323", + "odds": "1.380", + "name": "FT Result: Liverpool", + "handicap": "" + }, + { + "id": "807192225", + "odds": "1.666", + "name": "Mohamed Salah to Score", + "handicap": "" + }, + { + "id": "807197558", + "odds": "2.750", + "name": "Mohamed Salah to Assist", + "handicap": "" + }, + { + "id": "804656664", + "odds": "2.000", + "name": "HT: Liverpool \u2013 FT: Liverpool", + "handicap": "" + }, + { + "id": "819075054", + "odds": "1.666", + "name": "Mohamed Salah: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819074957", + "odds": "2.200", + "name": "Cody Gakpo: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819081389", + "odds": "1.444", + "name": "Eberechi Eze: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819453064", + "odds": "1.250", + "name": "Luis Diaz: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819075012", + "odds": "1.533", + "name": "Dominik Szoboszlai: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "804658978", + "odds": "3.000", + "name": "Liverpool to Win to Nil", + "handicap": "" + }, + { + "id": "818998267", + "odds": "1.222", + "name": "Most Corners: Liverpool", + "handicap": "" + }, + { + "id": "819451925", + "odds": "1.300", + "name": "Most Shots on Target: Liverpool", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:20:35+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977001", + "FI": "174206898", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:19:30+03:00", + "Odds": [ + { + "id": "810769529", + "odds": "7.000", + "name": "Robert Lewandowski", + "handicap": "" + }, + { + "id": "810770215", + "odds": "9.500", + "name": "Lamine Yamal", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.050", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283162", + "odds": "2.000", + "name": "Robert Lewandowski: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810767797", + "odds": "2.100", + "name": "Robert Lewandowski to Score", + "handicap": "" + }, + { + "id": "810764064", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818280046", + "odds": "2.250", + "name": "Gorka Guruzeta: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818338019", + "odds": "2.750", + "name": "Lamine Yamal: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713503841", + "odds": "2.050", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283150", + "odds": "2.000", + "name": "Raphinha: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810774636", + "odds": "1.800", + "name": "Lamine Yamal to Score or Assist", + "handicap": "" + }, + { + "id": "713503825", + "odds": "3.300", + "name": "FT Result: Athletic Bilbao", + "handicap": "" + }, + { + "id": "810774497", + "odds": "2.200", + "name": "Oihan Sancet to Score or Assist", + "handicap": "" + }, + { + "id": "813208230", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:20:53+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9929184", + "FI": "174363978", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:14:17+03:00", + "Odds": [ + { + "id": "774550908", + "odds": "21.000", + "name": "Antony", + "handicap": "" + }, + { + "id": "774550887", + "odds": "15.000", + "name": "Nicolas Jackson", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734591996", + "odds": "1.833", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "774549605", + "odds": "2.300", + "name": "Cole Palmer to Score", + "handicap": "" + }, + { + "id": "774549558", + "odds": "2.875", + "name": "Nicolas Jackson to Score", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734590525", + "odds": "2.000", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:20:57+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9924545", + "FI": "174307725", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:20:44+03:00", + "Odds": [ + { + "id": "726811888", + "odds": "13.000", + "name": "Lautaro Martinez", + "handicap": "" + }, + { + "id": "726811982", + "odds": "11.000", + "name": "Khvicha Kvaratskhelia", + "handicap": "" + }, + { + "id": "726816128", + "odds": "1.666", + "name": "PSG to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811208", + "odds": "3.250", + "name": "Bradley Barcola to Score", + "handicap": "" + }, + { + "id": "726806476", + "odds": "1.909", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "726816130", + "odds": "2.200", + "name": "Inter Milan to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811216", + "odds": "3.250", + "name": "Marcus Thuram to Score", + "handicap": "" + }, + { + "id": "726807442", + "odds": "1.700", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "726816349", + "odds": "2.250", + "name": "Lautaro Martinez to Score or Assist", + "handicap": "" + }, + { + "id": "726816313", + "odds": "2.000", + "name": "Khvicha Kvaratskhelia to Score or Assist", + "handicap": "" + }, + { + "id": "726816123", + "odds": "2.250", + "name": "PSG to Win in 90 Mins", + "handicap": "" + }, + { + "id": "726807627", + "odds": "3.400", + "name": "PSG to Score in Both Halves", + "handicap": "" + }, + { + "id": "726811207", + "odds": "4.000", + "name": "Desire Doue to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:31:06+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:26:43+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "17.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810815575", + "odds": "1.833", + "name": "HT: Leganes \u2013 FT: Leganes", + "handicap": "" + }, + { + "id": "810816336", + "odds": "2.000", + "name": "Leganes to Score in Both Halves", + "handicap": "" + }, + { + "id": "810822897", + "odds": "3.000", + "name": "Juan Cruz to Score", + "handicap": "" + }, + { + "id": "810816138", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "2.000", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "8.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:31:08+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:30:20+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818223413", + "odds": "2.750", + "name": "Antoniu Roca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810882878", + "odds": "2.300", + "name": "Eduardo Exposito to Score or Assist", + "handicap": "" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "7.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:31:08+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:30:20+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818223413", + "odds": "2.750", + "name": "Antoniu Roca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810882878", + "odds": "2.300", + "name": "Eduardo Exposito to Score or Assist", + "handicap": "" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "7.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:31:27+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:30:39+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.375", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.666", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.100", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.333", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.200", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.400", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.100", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "2.000", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:31:30+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:30:19+03:00", + "Odds": [ + { + "id": "810801158", + "odds": "9.000", + "name": "Williot Swedberg", + "handicap": "" + }, + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234792", + "odds": "1.833", + "name": "Fernando Lopez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235097", + "odds": "1.400", + "name": "Williot Swedberg: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810796354", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818233069", + "odds": "2.375", + "name": "Moya Borja Mayoral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818272629", + "odds": "3.500", + "name": "Pablo Duran: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.200", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:31:30+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:30:19+03:00", + "Odds": [ + { + "id": "810801158", + "odds": "9.000", + "name": "Williot Swedberg", + "handicap": "" + }, + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234792", + "odds": "1.833", + "name": "Fernando Lopez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235097", + "odds": "1.400", + "name": "Williot Swedberg: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810796354", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818233069", + "odds": "2.375", + "name": "Moya Borja Mayoral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818272629", + "odds": "3.500", + "name": "Pablo Duran: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.200", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:31:33+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:30:15+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "4.000", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.500", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.300", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.250", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.750", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.333", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.000", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.200", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:31:33+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:30:15+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "4.000", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.500", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.300", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.250", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.750", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.333", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.000", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.200", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:32:37+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:30:50+03:00", + "Odds": [ + { + "id": "810813776", + "odds": "9.000", + "name": "Alexander Sorloth", + "handicap": "" + }, + { + "id": "810813006", + "odds": "9.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257809", + "odds": "2.100", + "name": "Julian Alvarez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810899950", + "odds": "1.666", + "name": "Julian Alvarez to Score or Assist", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "810900002", + "odds": "1.727", + "name": "Alexander Sorloth to Score or Assist", + "handicap": "" + }, + { + "id": "818257762", + "odds": "2.100", + "name": "Alexander Sorloth: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810806697", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818257811", + "odds": "2.750", + "name": "Samuel Lino: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818306182", + "odds": "3.250", + "name": "Cristhian Stuani: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "4.200", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:32:37+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:30:50+03:00", + "Odds": [ + { + "id": "810813776", + "odds": "9.000", + "name": "Alexander Sorloth", + "handicap": "" + }, + { + "id": "810813006", + "odds": "9.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257809", + "odds": "2.100", + "name": "Julian Alvarez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810899950", + "odds": "1.666", + "name": "Julian Alvarez to Score or Assist", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "810900002", + "odds": "1.727", + "name": "Alexander Sorloth to Score or Assist", + "handicap": "" + }, + { + "id": "818257762", + "odds": "2.100", + "name": "Alexander Sorloth: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810806697", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818257811", + "odds": "2.750", + "name": "Samuel Lino: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818306182", + "odds": "3.250", + "name": "Cristhian Stuani: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "4.200", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:33:18+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9016963", + "FI": "173826315", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:31:01+03:00", + "Odds": [ + { + "id": "807193833", + "odds": "10.000", + "name": "Virgil van Dijk", + "handicap": "" + }, + { + "id": "807193986", + "odds": "11.000", + "name": "Luis Diaz", + "handicap": "" + }, + { + "id": "661805323", + "odds": "1.380", + "name": "FT Result: Liverpool", + "handicap": "" + }, + { + "id": "807192225", + "odds": "1.666", + "name": "Mohamed Salah to Score", + "handicap": "" + }, + { + "id": "807197558", + "odds": "2.750", + "name": "Mohamed Salah to Assist", + "handicap": "" + }, + { + "id": "804656664", + "odds": "2.000", + "name": "HT: Liverpool \u2013 FT: Liverpool", + "handicap": "" + }, + { + "id": "819075054", + "odds": "1.666", + "name": "Mohamed Salah: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819074957", + "odds": "2.200", + "name": "Cody Gakpo: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819081389", + "odds": "1.444", + "name": "Eberechi Eze: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819453064", + "odds": "1.250", + "name": "Luis Diaz: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819075012", + "odds": "1.533", + "name": "Dominik Szoboszlai: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "804658978", + "odds": "3.000", + "name": "Liverpool to Win to Nil", + "handicap": "" + }, + { + "id": "818998267", + "odds": "1.222", + "name": "Most Corners: Liverpool", + "handicap": "" + }, + { + "id": "819451925", + "odds": "1.300", + "name": "Most Shots on Target: Liverpool", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:34:56+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977001", + "FI": "174206898", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:29:41+03:00", + "Odds": [ + { + "id": "810769529", + "odds": "7.000", + "name": "Robert Lewandowski", + "handicap": "" + }, + { + "id": "810770215", + "odds": "9.500", + "name": "Lamine Yamal", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.050", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283162", + "odds": "2.000", + "name": "Robert Lewandowski: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810767797", + "odds": "2.100", + "name": "Robert Lewandowski to Score", + "handicap": "" + }, + { + "id": "810764064", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818280046", + "odds": "2.250", + "name": "Gorka Guruzeta: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818338019", + "odds": "2.750", + "name": "Lamine Yamal: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713503841", + "odds": "2.050", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283150", + "odds": "2.000", + "name": "Raphinha: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810774636", + "odds": "1.800", + "name": "Lamine Yamal to Score or Assist", + "handicap": "" + }, + { + "id": "713503825", + "odds": "3.300", + "name": "FT Result: Athletic Bilbao", + "handicap": "" + }, + { + "id": "810774497", + "odds": "2.200", + "name": "Oihan Sancet to Score or Assist", + "handicap": "" + }, + { + "id": "813208230", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:35:30+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9929184", + "FI": "174363978", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:34:51+03:00", + "Odds": [ + { + "id": "774550908", + "odds": "21.000", + "name": "Antony", + "handicap": "" + }, + { + "id": "774550887", + "odds": "15.000", + "name": "Nicolas Jackson", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734591996", + "odds": "1.833", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "774549605", + "odds": "2.300", + "name": "Cole Palmer to Score", + "handicap": "" + }, + { + "id": "774549558", + "odds": "2.875", + "name": "Nicolas Jackson to Score", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734590525", + "odds": "2.000", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:35:36+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9924545", + "FI": "174307725", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:30:21+03:00", + "Odds": [ + { + "id": "726811888", + "odds": "13.000", + "name": "Lautaro Martinez", + "handicap": "" + }, + { + "id": "726811982", + "odds": "11.000", + "name": "Khvicha Kvaratskhelia", + "handicap": "" + }, + { + "id": "726816128", + "odds": "1.666", + "name": "PSG to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811208", + "odds": "3.250", + "name": "Bradley Barcola to Score", + "handicap": "" + }, + { + "id": "726806476", + "odds": "1.909", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "726816130", + "odds": "2.200", + "name": "Inter Milan to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811216", + "odds": "3.250", + "name": "Marcus Thuram to Score", + "handicap": "" + }, + { + "id": "726807442", + "odds": "1.700", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "726816349", + "odds": "2.250", + "name": "Lautaro Martinez to Score or Assist", + "handicap": "" + }, + { + "id": "726816313", + "odds": "2.000", + "name": "Khvicha Kvaratskhelia to Score or Assist", + "handicap": "" + }, + { + "id": "726816123", + "odds": "2.250", + "name": "PSG to Win in 90 Mins", + "handicap": "" + }, + { + "id": "726807627", + "odds": "3.400", + "name": "PSG to Score in Both Halves", + "handicap": "" + }, + { + "id": "726811207", + "odds": "4.000", + "name": "Desire Doue to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:46:17+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:44:55+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "17.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810815575", + "odds": "1.833", + "name": "HT: Leganes \u2013 FT: Leganes", + "handicap": "" + }, + { + "id": "810816336", + "odds": "2.000", + "name": "Leganes to Score in Both Halves", + "handicap": "" + }, + { + "id": "810822897", + "odds": "3.000", + "name": "Juan Cruz to Score", + "handicap": "" + }, + { + "id": "810816138", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "2.000", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "8.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:46:28+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:42:31+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818223413", + "odds": "2.750", + "name": "Antoniu Roca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810882878", + "odds": "2.300", + "name": "Eduardo Exposito to Score or Assist", + "handicap": "" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "7.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:46:28+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:42:31+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818223413", + "odds": "2.750", + "name": "Antoniu Roca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810882878", + "odds": "2.300", + "name": "Eduardo Exposito to Score or Assist", + "handicap": "" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "7.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:46:47+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:45:23+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.375", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.666", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.100", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.333", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.200", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.400", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.100", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "2.000", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:46:56+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:45:45+03:00", + "Odds": [ + { + "id": "810801158", + "odds": "9.000", + "name": "Williot Swedberg", + "handicap": "" + }, + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234792", + "odds": "1.833", + "name": "Fernando Lopez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235097", + "odds": "1.400", + "name": "Williot Swedberg: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810796354", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818233069", + "odds": "2.375", + "name": "Moya Borja Mayoral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818272629", + "odds": "3.500", + "name": "Pablo Duran: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.200", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:46:56+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:45:45+03:00", + "Odds": [ + { + "id": "810801158", + "odds": "9.000", + "name": "Williot Swedberg", + "handicap": "" + }, + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234792", + "odds": "1.833", + "name": "Fernando Lopez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235097", + "odds": "1.400", + "name": "Williot Swedberg: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810796354", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818233069", + "odds": "2.375", + "name": "Moya Borja Mayoral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818272629", + "odds": "3.500", + "name": "Pablo Duran: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.200", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:46:57+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:45:56+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "4.000", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.500", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.300", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.250", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.750", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.333", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.000", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.200", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:46:57+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:45:56+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "4.000", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.500", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.300", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.250", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.750", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.333", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.000", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.200", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.400", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:48:08+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:43:38+03:00", + "Odds": [ + { + "id": "810813776", + "odds": "9.000", + "name": "Alexander Sorloth", + "handicap": "" + }, + { + "id": "810813006", + "odds": "9.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257809", + "odds": "2.250", + "name": "Julian Alvarez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810899950", + "odds": "1.666", + "name": "Julian Alvarez to Score or Assist", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "810900002", + "odds": "1.727", + "name": "Alexander Sorloth to Score or Assist", + "handicap": "" + }, + { + "id": "818257762", + "odds": "2.100", + "name": "Alexander Sorloth: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810806697", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306182", + "odds": "3.000", + "name": "Cristhian Stuani: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "4.200", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:48:08+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:43:38+03:00", + "Odds": [ + { + "id": "810813776", + "odds": "9.000", + "name": "Alexander Sorloth", + "handicap": "" + }, + { + "id": "810813006", + "odds": "9.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257809", + "odds": "2.250", + "name": "Julian Alvarez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810899950", + "odds": "1.666", + "name": "Julian Alvarez to Score or Assist", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.833", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "810900002", + "odds": "1.727", + "name": "Alexander Sorloth to Score or Assist", + "handicap": "" + }, + { + "id": "818257762", + "odds": "2.100", + "name": "Alexander Sorloth: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810806697", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306182", + "odds": "3.000", + "name": "Cristhian Stuani: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "4.200", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:48:33+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9016963", + "FI": "173826315", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:48:27+03:00", + "Odds": [ + { + "id": "807193833", + "odds": "10.000", + "name": "Virgil van Dijk", + "handicap": "" + }, + { + "id": "807193986", + "odds": "11.000", + "name": "Luis Diaz", + "handicap": "" + }, + { + "id": "661805323", + "odds": "1.380", + "name": "FT Result: Liverpool", + "handicap": "" + }, + { + "id": "807192225", + "odds": "1.666", + "name": "Mohamed Salah to Score", + "handicap": "" + }, + { + "id": "807197558", + "odds": "2.750", + "name": "Mohamed Salah to Assist", + "handicap": "" + }, + { + "id": "804656664", + "odds": "2.000", + "name": "HT: Liverpool \u2013 FT: Liverpool", + "handicap": "" + }, + { + "id": "819075054", + "odds": "1.666", + "name": "Mohamed Salah: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819074957", + "odds": "2.200", + "name": "Cody Gakpo: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819081389", + "odds": "1.444", + "name": "Eberechi Eze: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819453064", + "odds": "1.250", + "name": "Luis Diaz: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819075012", + "odds": "1.533", + "name": "Dominik Szoboszlai: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "804658978", + "odds": "3.000", + "name": "Liverpool to Win to Nil", + "handicap": "" + }, + { + "id": "818998267", + "odds": "1.222", + "name": "Most Corners: Liverpool", + "handicap": "" + }, + { + "id": "819451925", + "odds": "1.300", + "name": "Most Shots on Target: Liverpool", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:49:50+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977001", + "FI": "174206898", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:42:48+03:00", + "Odds": [ + { + "id": "810769529", + "odds": "7.000", + "name": "Robert Lewandowski", + "handicap": "" + }, + { + "id": "810770215", + "odds": "9.500", + "name": "Lamine Yamal", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.050", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283162", + "odds": "2.000", + "name": "Robert Lewandowski: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810767797", + "odds": "2.100", + "name": "Robert Lewandowski to Score", + "handicap": "" + }, + { + "id": "810764064", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818280046", + "odds": "2.250", + "name": "Gorka Guruzeta: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818338019", + "odds": "2.750", + "name": "Lamine Yamal: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713503841", + "odds": "2.050", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283150", + "odds": "2.000", + "name": "Raphinha: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810774636", + "odds": "1.800", + "name": "Lamine Yamal to Score or Assist", + "handicap": "" + }, + { + "id": "713503825", + "odds": "3.300", + "name": "FT Result: Athletic Bilbao", + "handicap": "" + }, + { + "id": "810774497", + "odds": "2.200", + "name": "Oihan Sancet to Score or Assist", + "handicap": "" + }, + { + "id": "813208230", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:50:07+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9929184", + "FI": "174363978", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:46:04+03:00", + "Odds": [ + { + "id": "774550908", + "odds": "21.000", + "name": "Antony", + "handicap": "" + }, + { + "id": "774550887", + "odds": "15.000", + "name": "Nicolas Jackson", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734591996", + "odds": "1.833", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "774549605", + "odds": "2.300", + "name": "Cole Palmer to Score", + "handicap": "" + }, + { + "id": "774549558", + "odds": "2.875", + "name": "Nicolas Jackson to Score", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734590525", + "odds": "2.000", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-21T14:50:14+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9924545", + "FI": "174307725", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T14:49:04+03:00", + "Odds": [ + { + "id": "726811888", + "odds": "13.000", + "name": "Lautaro Martinez", + "handicap": "" + }, + { + "id": "726811982", + "odds": "11.000", + "name": "Khvicha Kvaratskhelia", + "handicap": "" + }, + { + "id": "726816128", + "odds": "1.666", + "name": "PSG to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811208", + "odds": "3.250", + "name": "Bradley Barcola to Score", + "handicap": "" + }, + { + "id": "726806476", + "odds": "1.909", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "726816130", + "odds": "2.200", + "name": "Inter Milan to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811216", + "odds": "3.250", + "name": "Marcus Thuram to Score", + "handicap": "" + }, + { + "id": "726807442", + "odds": "1.700", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "726816349", + "odds": "2.250", + "name": "Lautaro Martinez to Score or Assist", + "handicap": "" + }, + { + "id": "726816313", + "odds": "2.000", + "name": "Khvicha Kvaratskhelia to Score or Assist", + "handicap": "" + }, + { + "id": "726816123", + "odds": "2.250", + "name": "PSG to Win in 90 Mins", + "handicap": "" + }, + { + "id": "726807627", + "odds": "3.400", + "name": "PSG to Score in Both Halves", + "handicap": "" + }, + { + "id": "726811207", + "odds": "4.000", + "name": "Desire Doue to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T14:00:22+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9929089", + "FI": "174362707", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-21T21:58:38+03:00", + "Odds": [ + { + "id": "774543385", + "odds": "15.000", + "name": "Dominic Solanke", + "handicap": "" + }, + { + "id": "774543427", + "odds": "13.000", + "name": "Bruno Fernandes", + "handicap": "" + }, + { + "id": "822010633", + "odds": "1.300", + "name": "Bruno Fernandes to Commit 1+ Fouls", + "handicap": "0.5" + }, + { + "id": "806206511", + "odds": "3.500", + "name": "Bruno Fernandes: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "805978001", + "odds": "2.000", + "name": "Bruno Fernandes: 3+ Tackles", + "handicap": "2.5" + }, + { + "id": "806168003", + "odds": "4.333", + "name": "Pape Sarr - Over 0.5 Shots on Target Outside the Box", + "handicap": "0.5" + }, + { + "id": "806169155", + "odds": "7.000", + "name": "Casemiro - Over 0.5 Shots on Target Outside the Box", + "handicap": "0.5" + }, + { + "id": "806206590", + "odds": "5.000", + "name": "Rasmus Hojlund: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806206604", + "odds": "3.500", + "name": "Richarlison: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806167980", + "odds": "4.500", + "name": "Brennan Johnson - Over 0.5 Shots on Target Outside the Box", + "handicap": "0.5" + }, + { + "id": "806169253", + "odds": "2.100", + "name": "Bruno Fernandes - Over 0.5 Shots on Target Outside the Box", + "handicap": "0.5" + }, + { + "id": "734413335", + "odds": "2.000", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "806167980", + "odds": "4.500", + "name": "Brennan Johnson - Over 0.5 Shots on Target Outside the Box", + "handicap": "0.5" + }, + { + "id": "806169220", + "odds": "4.500", + "name": "Mason Mount - Over 0.5 Shots on Target Outside the Box", + "handicap": "0.5" + }, + { + "id": "734414114", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "734417986", + "odds": "1.615", + "name": "Man Utd to Lift the Trophy", + "handicap": "" + }, + { + "id": "798594399", + "odds": "1.952", + "name": "Most Corners: Man Utd", + "handicap": "" + }, + { + "id": "806194735", + "odds": "1.727", + "name": "Most Shots on Target: Man Utd", + "handicap": "" + }, + { + "id": "734414114", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "798598236", + "odds": "1.500", + "name": "Both Teams to Receive 2+ Cards", + "handicap": "" + }, + { + "id": "798601377", + "odds": "1.285", + "name": "Over 3 Corners for Tottenham", + "handicap": "3" + }, + { + "id": "798601999", + "odds": "1.250", + "name": "Over 3 Corners for Man Utd", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T14:01:13+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T13:57:41+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "15.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810815575", + "odds": "1.833", + "name": "HT: Leganes \u2013 FT: Leganes", + "handicap": "" + }, + { + "id": "810816336", + "odds": "2.000", + "name": "Leganes to Score in Both Halves", + "handicap": "" + }, + { + "id": "810822897", + "odds": "2.875", + "name": "Juan Cruz to Score", + "handicap": "" + }, + { + "id": "810816138", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "9.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T14:01:16+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T13:57:28+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818223413", + "odds": "2.750", + "name": "Antoniu Roca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810882878", + "odds": "2.300", + "name": "Eduardo Exposito to Score or Assist", + "handicap": "" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.000", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T14:01:16+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T13:57:28+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818223413", + "odds": "2.750", + "name": "Antoniu Roca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810882878", + "odds": "2.300", + "name": "Eduardo Exposito to Score or Assist", + "handicap": "" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.000", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T14:01:25+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T13:58:49+03:00", + "Odds": [ + { + "id": "810801158", + "odds": "9.000", + "name": "Williot Swedberg", + "handicap": "" + }, + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234792", + "odds": "2.000", + "name": "Fernando Lopez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235097", + "odds": "1.400", + "name": "Williot Swedberg: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810796354", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818233069", + "odds": "2.375", + "name": "Moya Borja Mayoral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818272629", + "odds": "3.500", + "name": "Pablo Duran: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.500", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T14:01:25+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T13:58:49+03:00", + "Odds": [ + { + "id": "810801158", + "odds": "9.000", + "name": "Williot Swedberg", + "handicap": "" + }, + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234792", + "odds": "2.000", + "name": "Fernando Lopez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235097", + "odds": "1.400", + "name": "Williot Swedberg: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810796354", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818233069", + "odds": "2.375", + "name": "Moya Borja Mayoral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818272629", + "odds": "3.500", + "name": "Pablo Duran: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.500", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T14:01:31+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T13:58:22+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "4.000", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.250", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T14:01:31+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T13:58:22+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "4.000", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.250", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T14:01:45+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T14:00:59+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.350", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.615", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.000", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.100", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.100", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "2.000", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T14:02:24+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289266", + "FI": "174218989", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T13:56:37+03:00", + "Odds": [ + { + "id": "806593420", + "odds": "21.000", + "name": "Jacob Murrell", + "handicap": "" + }, + { + "id": "806592362", + "odds": "9.500", + "name": "Emil Forsberg", + "handicap": "" + }, + { + "id": "714859495", + "odds": "2.550", + "name": "FT Result: DC United", + "handicap": "" + }, + { + "id": "812266209", + "odds": "1.666", + "name": "Jared Stroud: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812266213", + "odds": "2.500", + "name": "Joao Peglow: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859497", + "odds": "2.700", + "name": "FT Result: New York Red Bulls", + "handicap": "" + }, + { + "id": "812268463", + "odds": "1.444", + "name": "Eric Maxim Choupo-Moting: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812268537", + "odds": "1.800", + "name": "Wikelman Carmona: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859495", + "odds": "2.550", + "name": "FT Result: DC United", + "handicap": "" + }, + { + "id": "806585492", + "odds": "1.900", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "827339685", + "odds": "1.833", + "name": "Most Corners: DC United", + "handicap": "" + }, + { + "id": "714859497", + "odds": "2.700", + "name": "FT Result: New York Red Bulls", + "handicap": "" + }, + { + "id": "827346880", + "odds": "1.500", + "name": "Over 3 Corners for New York Red Bulls", + "handicap": "3" + }, + { + "id": "806585492", + "odds": "1.900", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T14:02:24+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289266", + "FI": "174218989", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T13:56:37+03:00", + "Odds": [ + { + "id": "806593420", + "odds": "21.000", + "name": "Jacob Murrell", + "handicap": "" + }, + { + "id": "806592362", + "odds": "9.500", + "name": "Emil Forsberg", + "handicap": "" + }, + { + "id": "714859495", + "odds": "2.550", + "name": "FT Result: DC United", + "handicap": "" + }, + { + "id": "812266209", + "odds": "1.666", + "name": "Jared Stroud: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812266213", + "odds": "2.500", + "name": "Joao Peglow: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859497", + "odds": "2.700", + "name": "FT Result: New York Red Bulls", + "handicap": "" + }, + { + "id": "812268463", + "odds": "1.444", + "name": "Eric Maxim Choupo-Moting: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812268537", + "odds": "1.800", + "name": "Wikelman Carmona: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859495", + "odds": "2.550", + "name": "FT Result: DC United", + "handicap": "" + }, + { + "id": "806585492", + "odds": "1.900", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "827339685", + "odds": "1.833", + "name": "Most Corners: DC United", + "handicap": "" + }, + { + "id": "714859497", + "odds": "2.700", + "name": "FT Result: New York Red Bulls", + "handicap": "" + }, + { + "id": "827346880", + "odds": "1.500", + "name": "Over 3 Corners for New York Red Bulls", + "handicap": "3" + }, + { + "id": "806585492", + "odds": "1.900", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T14:02:32+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289267", + "FI": "174218987", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T14:01:17+03:00", + "Odds": [ + { + "id": "806548682", + "odds": "13.000", + "name": "Wilfried Zaha", + "handicap": "" + }, + { + "id": "806547960", + "odds": "19.000", + "name": "Jacen Russell-Rowe", + "handicap": "" + }, + { + "id": "714859478", + "odds": "2.700", + "name": "FT Result: Charlotte FC", + "handicap": "" + }, + { + "id": "812225920", + "odds": "1.400", + "name": "Liel Abada: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812481096", + "odds": "1.363", + "name": "Patrick Agyemang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859480", + "odds": "2.500", + "name": "FT Result: Columbus Crew", + "handicap": "" + }, + { + "id": "812228823", + "odds": "1.500", + "name": "Daniel Gazdag: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812228831", + "odds": "2.625", + "name": "Diego Rossi: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "827337512", + "odds": "2.100", + "name": "Over 4 Corners for Charlotte FC", + "handicap": "4" + }, + { + "id": "827337557", + "odds": "1.833", + "name": "Over 4 Corners for Columbus Crew", + "handicap": "4" + }, + { + "id": "806542309", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "812481093", + "odds": "3.000", + "name": "Liel Abada: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "816983630", + "odds": "1.333", + "name": "Diego Rossi: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "806544053", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T14:02:50+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289262", + "FI": "174219002", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T14:00:44+03:00", + "Odds": [ + { + "id": "806670446", + "odds": "13.000", + "name": "Tani Oluwaseyi", + "handicap": "" + }, + { + "id": "806655131", + "odds": "9.500", + "name": "Minnesota United 2-1", + "handicap": "" + }, + { + "id": "714859773", + "odds": "1.727", + "name": "FT Result: Minnesota United", + "handicap": "" + }, + { + "id": "812331324", + "odds": "1.800", + "name": "Kelvin Yeboah: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812331345", + "odds": "2.375", + "name": "Tani Oluwaseyi: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806655293", + "odds": "2.050", + "name": "Draw or Austin FC", + "handicap": "" + }, + { + "id": "812335148", + "odds": "1.571", + "name": "Myrto Uzuni: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812334820", + "odds": "1.615", + "name": "Brandon Vazquez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "827362447", + "odds": "1.533", + "name": "Over 4 Corners for Minnesota United", + "handicap": "4" + }, + { + "id": "827362563", + "odds": "2.200", + "name": "Over 4 Corners for Austin FC", + "handicap": "4" + }, + { + "id": "806655241", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "806655104", + "odds": "2.625", + "name": "HT: Minnesota United \u2013 FT: Minnesota United", + "handicap": "" + }, + { + "id": "827360459", + "odds": "1.615", + "name": "Most Corners: Minnesota United", + "handicap": "" + }, + { + "id": "806963379", + "odds": "1.800", + "name": "Kelvin Yeboah to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T14:03:02+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289261", + "FI": "174219004", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T13:59:21+03:00", + "Odds": [ + { + "id": "806742909", + "odds": "12.000", + "name": "Joao Klauss", + "handicap": "" + }, + { + "id": "806741536", + "odds": "8.500", + "name": "Darren Yapi", + "handicap": "" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812508432", + "odds": "3.000", + "name": "Kevin Cabral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806733943", + "odds": "1.909", + "name": "Draw or St. Louis City SC", + "handicap": "" + }, + { + "id": "812362704", + "odds": "1.444", + "name": "Cedric Teuchert: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812362834", + "odds": "1.500", + "name": "Marcel Hartel: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812508349", + "odds": "3.250", + "name": "Cedric Teuchert: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806737965", + "odds": "1.571", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "827381382", + "odds": "1.250", + "name": "Over 3 Corners for Colorado Rapids", + "handicap": "3" + }, + { + "id": "807040642", + "odds": "2.100", + "name": "Darren Yapi to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T14:03:09+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289260", + "FI": "174219006", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T14:01:33+03:00", + "Odds": [ + { + "id": "806753712", + "odds": "8.500", + "name": "Brian White", + "handicap": "" + }, + { + "id": "806753521", + "odds": "7.000", + "name": "William Agada", + "handicap": "" + }, + { + "id": "714859829", + "odds": "2.500", + "name": "FT Result: Real Salt Lake", + "handicap": "" + }, + { + "id": "812514424", + "odds": "1.333", + "name": "William Agada: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812377943", + "odds": "1.400", + "name": "Diogo Goncalves: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859831", + "odds": "2.600", + "name": "FT Result: Vancouver Whitecaps", + "handicap": "" + }, + { + "id": "812380351", + "odds": "2.100", + "name": "Pedro Vite: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380265", + "odds": "2.750", + "name": "Brian White: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "827384577", + "odds": "1.666", + "name": "Over 4 Corners for Real Salt Lake", + "handicap": "4" + }, + { + "id": "827384725", + "odds": "1.909", + "name": "Over 4 Corners for Vancouver Whitecaps", + "handicap": "4" + }, + { + "id": "806747601", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "812377945", + "odds": "1.833", + "name": "Dominik Marczuk: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380239", + "odds": "2.250", + "name": "Ali Ahmed: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "806749654", + "odds": "1.750", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T14:03:18+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T13:54:38+03:00", + "Odds": [ + { + "id": "810813776", + "odds": "9.000", + "name": "Alexander Sorloth", + "handicap": "" + }, + { + "id": "810813006", + "odds": "8.500", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.909", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257809", + "odds": "2.250", + "name": "Julian Alvarez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810899950", + "odds": "1.800", + "name": "Julian Alvarez to Score or Assist", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.909", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "810900002", + "odds": "1.727", + "name": "Alexander Sorloth to Score or Assist", + "handicap": "" + }, + { + "id": "818257762", + "odds": "2.100", + "name": "Alexander Sorloth: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810806697", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306182", + "odds": "3.000", + "name": "Cristhian Stuani: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "3.800", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T14:03:18+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T13:54:38+03:00", + "Odds": [ + { + "id": "810813776", + "odds": "9.000", + "name": "Alexander Sorloth", + "handicap": "" + }, + { + "id": "810813006", + "odds": "8.500", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.909", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257809", + "odds": "2.250", + "name": "Julian Alvarez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810899950", + "odds": "1.800", + "name": "Julian Alvarez to Score or Assist", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.909", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "810900002", + "odds": "1.727", + "name": "Alexander Sorloth to Score or Assist", + "handicap": "" + }, + { + "id": "818257762", + "odds": "2.100", + "name": "Alexander Sorloth: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810806697", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306182", + "odds": "3.000", + "name": "Cristhian Stuani: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "3.800", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T17:16:12+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:14:26+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "3.000", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T17:16:33+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:07:07+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.350", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.615", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.000", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.100", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.100", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T17:16:40+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:12:23+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.500", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T17:17:09+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:16:02+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "3.750", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.250", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.375", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T17:17:27+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289267", + "FI": "174218987", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:11:45+03:00", + "Odds": [ + { + "id": "806548682", + "odds": "13.000", + "name": "Wilfried Zaha", + "handicap": "" + }, + { + "id": "806547960", + "odds": "19.000", + "name": "Jacen Russell-Rowe", + "handicap": "" + }, + { + "id": "714859478", + "odds": "2.700", + "name": "FT Result: Charlotte FC", + "handicap": "" + }, + { + "id": "812225920", + "odds": "1.400", + "name": "Liel Abada: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812481096", + "odds": "1.363", + "name": "Patrick Agyemang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859480", + "odds": "2.500", + "name": "FT Result: Columbus Crew", + "handicap": "" + }, + { + "id": "812228823", + "odds": "1.500", + "name": "Daniel Gazdag: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812228831", + "odds": "2.625", + "name": "Diego Rossi: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "827337512", + "odds": "2.100", + "name": "Over 4 Corners for Charlotte FC", + "handicap": "4" + }, + { + "id": "827337557", + "odds": "1.833", + "name": "Over 4 Corners for Columbus Crew", + "handicap": "4" + }, + { + "id": "806542309", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "812481093", + "odds": "3.000", + "name": "Liel Abada: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "816983630", + "odds": "1.333", + "name": "Diego Rossi: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "806544053", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T17:17:35+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289266", + "FI": "174218989", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:10:19+03:00", + "Odds": [ + { + "id": "806593420", + "odds": "21.000", + "name": "Jacob Murrell", + "handicap": "" + }, + { + "id": "806592362", + "odds": "9.500", + "name": "Emil Forsberg", + "handicap": "" + }, + { + "id": "714859495", + "odds": "2.550", + "name": "FT Result: DC United", + "handicap": "" + }, + { + "id": "812266209", + "odds": "1.666", + "name": "Jared Stroud: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812266213", + "odds": "2.500", + "name": "Joao Peglow: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859497", + "odds": "2.700", + "name": "FT Result: New York Red Bulls", + "handicap": "" + }, + { + "id": "812268463", + "odds": "1.444", + "name": "Eric Maxim Choupo-Moting: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812268537", + "odds": "1.800", + "name": "Wikelman Carmona: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859495", + "odds": "2.550", + "name": "FT Result: DC United", + "handicap": "" + }, + { + "id": "806585492", + "odds": "1.900", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "827339685", + "odds": "1.833", + "name": "Most Corners: DC United", + "handicap": "" + }, + { + "id": "714859497", + "odds": "2.700", + "name": "FT Result: New York Red Bulls", + "handicap": "" + }, + { + "id": "827346880", + "odds": "1.500", + "name": "Over 3 Corners for New York Red Bulls", + "handicap": "3" + }, + { + "id": "806585492", + "odds": "1.900", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T17:17:35+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289266", + "FI": "174218989", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:10:19+03:00", + "Odds": [ + { + "id": "806593420", + "odds": "21.000", + "name": "Jacob Murrell", + "handicap": "" + }, + { + "id": "806592362", + "odds": "9.500", + "name": "Emil Forsberg", + "handicap": "" + }, + { + "id": "714859495", + "odds": "2.550", + "name": "FT Result: DC United", + "handicap": "" + }, + { + "id": "812266209", + "odds": "1.666", + "name": "Jared Stroud: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812266213", + "odds": "2.500", + "name": "Joao Peglow: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859497", + "odds": "2.700", + "name": "FT Result: New York Red Bulls", + "handicap": "" + }, + { + "id": "812268463", + "odds": "1.444", + "name": "Eric Maxim Choupo-Moting: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812268537", + "odds": "1.800", + "name": "Wikelman Carmona: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859495", + "odds": "2.550", + "name": "FT Result: DC United", + "handicap": "" + }, + { + "id": "806585492", + "odds": "1.900", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "827339685", + "odds": "1.833", + "name": "Most Corners: DC United", + "handicap": "" + }, + { + "id": "714859497", + "odds": "2.700", + "name": "FT Result: New York Red Bulls", + "handicap": "" + }, + { + "id": "827346880", + "odds": "1.500", + "name": "Over 3 Corners for New York Red Bulls", + "handicap": "3" + }, + { + "id": "806585492", + "odds": "1.900", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T17:18:21+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289262", + "FI": "174219002", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:17:13+03:00", + "Odds": [ + { + "id": "806670446", + "odds": "13.000", + "name": "Tani Oluwaseyi", + "handicap": "" + }, + { + "id": "806655131", + "odds": "9.500", + "name": "Minnesota United 2-1", + "handicap": "" + }, + { + "id": "714859773", + "odds": "1.727", + "name": "FT Result: Minnesota United", + "handicap": "" + }, + { + "id": "812331324", + "odds": "1.800", + "name": "Kelvin Yeboah: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812331345", + "odds": "2.375", + "name": "Tani Oluwaseyi: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806655293", + "odds": "2.050", + "name": "Draw or Austin FC", + "handicap": "" + }, + { + "id": "812335148", + "odds": "1.571", + "name": "Myrto Uzuni: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812334820", + "odds": "1.571", + "name": "Brandon Vazquez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "827362447", + "odds": "1.533", + "name": "Over 4 Corners for Minnesota United", + "handicap": "4" + }, + { + "id": "827362563", + "odds": "2.200", + "name": "Over 4 Corners for Austin FC", + "handicap": "4" + }, + { + "id": "806655241", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "806655104", + "odds": "2.625", + "name": "HT: Minnesota United \u2013 FT: Minnesota United", + "handicap": "" + }, + { + "id": "827360459", + "odds": "1.615", + "name": "Most Corners: Minnesota United", + "handicap": "" + }, + { + "id": "806963379", + "odds": "1.800", + "name": "Kelvin Yeboah to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T17:18:35+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289261", + "FI": "174219004", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:16:48+03:00", + "Odds": [ + { + "id": "806742909", + "odds": "12.000", + "name": "Joao Klauss", + "handicap": "" + }, + { + "id": "806741536", + "odds": "8.500", + "name": "Darren Yapi", + "handicap": "" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812508432", + "odds": "3.000", + "name": "Kevin Cabral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806733943", + "odds": "1.909", + "name": "Draw or St. Louis City SC", + "handicap": "" + }, + { + "id": "812362704", + "odds": "1.444", + "name": "Cedric Teuchert: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812362834", + "odds": "1.500", + "name": "Marcel Hartel: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812508349", + "odds": "3.250", + "name": "Cedric Teuchert: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806737965", + "odds": "1.571", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "827381382", + "odds": "1.250", + "name": "Over 3 Corners for Colorado Rapids", + "handicap": "3" + }, + { + "id": "807040642", + "odds": "2.100", + "name": "Darren Yapi to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T17:18:35+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289260", + "FI": "174219006", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:12:01+03:00", + "Odds": [ + { + "id": "806753712", + "odds": "8.500", + "name": "Brian White", + "handicap": "" + }, + { + "id": "806753521", + "odds": "7.000", + "name": "William Agada", + "handicap": "" + }, + { + "id": "714859829", + "odds": "2.500", + "name": "FT Result: Real Salt Lake", + "handicap": "" + }, + { + "id": "812514424", + "odds": "1.333", + "name": "William Agada: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812377943", + "odds": "1.400", + "name": "Diogo Goncalves: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859831", + "odds": "2.600", + "name": "FT Result: Vancouver Whitecaps", + "handicap": "" + }, + { + "id": "812380351", + "odds": "2.100", + "name": "Pedro Vite: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380265", + "odds": "2.750", + "name": "Brian White: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "827384577", + "odds": "1.666", + "name": "Over 4 Corners for Real Salt Lake", + "handicap": "4" + }, + { + "id": "827384725", + "odds": "1.909", + "name": "Over 4 Corners for Vancouver Whitecaps", + "handicap": "4" + }, + { + "id": "806747601", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "812377945", + "odds": "1.833", + "name": "Dominik Marczuk: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380239", + "odds": "2.250", + "name": "Ali Ahmed: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "806749654", + "odds": "1.750", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T17:18:48+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:08:15+03:00", + "Odds": [ + { + "id": "810813006", + "odds": "7.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "810805461", + "odds": "13.000", + "name": "Atletico Madrid 2-0", + "handicap": "" + }, + { + "id": "713506844", + "odds": "3.500", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713506855", + "odds": "2.000", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257779", + "odds": "2.750", + "name": "Antoine Griezmann: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257773", + "odds": "2.750", + "name": "Angel Correa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "3.500", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "832763395", + "odds": "1.363", + "name": "Cristhian Stuani: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818254988", + "odds": "1.444", + "name": "Viktor Tsygankov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257791", + "odds": "1.833", + "name": "Conor Gallagher: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306498", + "odds": "1.400", + "name": "Antoine Griezmann: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T17:18:48+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:08:15+03:00", + "Odds": [ + { + "id": "810813006", + "odds": "7.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "810805461", + "odds": "13.000", + "name": "Atletico Madrid 2-0", + "handicap": "" + }, + { + "id": "713506844", + "odds": "3.500", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713506855", + "odds": "2.000", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257779", + "odds": "2.750", + "name": "Antoine Griezmann: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257773", + "odds": "2.750", + "name": "Angel Correa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "3.500", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "832763395", + "odds": "1.363", + "name": "Cristhian Stuani: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818254988", + "odds": "1.444", + "name": "Viktor Tsygankov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257791", + "odds": "1.833", + "name": "Conor Gallagher: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306498", + "odds": "1.400", + "name": "Antoine Griezmann: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T17:45:01+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9975311", + "FI": "174947318", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:44:16+03:00", + "Odds": [ + { + "id": "817009524", + "odds": "5.500", + "name": "Mexx Meerdink", + "handicap": "" + }, + { + "id": "817005544", + "odds": "12.000", + "name": "AZ 3-1", + "handicap": "" + }, + { + "id": "813187547", + "odds": "1.363", + "name": "FT Result: AZ", + "handicap": "" + }, + { + "id": "817005611", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "817008924", + "odds": "2.600", + "name": "Ernest Poku to Score", + "handicap": "" + }, + { + "id": "817005622", + "odds": "3.000", + "name": "Draw or Heerenveen", + "handicap": "" + }, + { + "id": "817831149", + "odds": "1.833", + "name": "Milos Lukovic: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817831114", + "odds": "2.000", + "name": "Jacob Trenskow: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817005829", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "817831128", + "odds": "2.625", + "name": "Levi Smans: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817840797", + "odds": "1.333", + "name": "Ruben van Bommel: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817828962", + "odds": "2.375", + "name": "Sven Mijnans: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "817026245", + "odds": "3.750", + "name": "Sven Mijnans to Assist", + "handicap": "" + }, + { + "id": "817008919", + "odds": "2.750", + "name": "Sven Mijnans to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T17:45:09+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9975310", + "FI": "174947324", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:45:03+03:00", + "Odds": [ + { + "id": "817020783", + "odds": "7.000", + "name": "Ricky van Wolfswinkel", + "handicap": "" + }, + { + "id": "817020896", + "odds": "8.500", + "name": "Sem Steijn", + "handicap": "" + }, + { + "id": "813187813", + "odds": "1.700", + "name": "FT Result: FC Twente", + "handicap": "" + }, + { + "id": "817030231", + "odds": "3.400", + "name": "Sem Steijn to Assist", + "handicap": "" + }, + { + "id": "817020347", + "odds": "2.100", + "name": "Sem Steijn to Score", + "handicap": "" + }, + { + "id": "817013372", + "odds": "2.100", + "name": "Draw or NEC", + "handicap": "" + }, + { + "id": "817837995", + "odds": "1.666", + "name": "Bryan Linssen: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817030440", + "odds": "3.200", + "name": "Bryan Linssen to Score or Assist", + "handicap": "" + }, + { + "id": "813187813", + "odds": "1.700", + "name": "FT Result: FC Twente", + "handicap": "" + }, + { + "id": "817014682", + "odds": "2.500", + "name": "FC Twente to Score in Both Halves", + "handicap": "" + }, + { + "id": "817020297", + "odds": "3.250", + "name": "Michel Vlap to Score", + "handicap": "" + }, + { + "id": "817013307", + "odds": "2.750", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "817030420", + "odds": "1.833", + "name": "Ricky van Wolfswinkel to Score or Assist", + "handicap": "" + }, + { + "id": "817030396", + "odds": "3.400", + "name": "Sami Ouaissa to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T17:45:26+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977002", + "FI": "174206901", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:36:07+03:00", + "Odds": [ + { + "id": "810834176", + "odds": "13.000", + "name": "Valencia 2-1", + "handicap": "" + }, + { + "id": "810843474", + "odds": "7.000", + "name": "Hugo Duro", + "handicap": "" + }, + { + "id": "713504058", + "odds": "3.500", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "818205392", + "odds": "1.333", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818145409", + "odds": "1.615", + "name": "Luis Rioja: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504056", + "odds": "2.000", + "name": "FT Result: Real Betis", + "handicap": "" + }, + { + "id": "818142082", + "odds": "2.375", + "name": "Juan Hernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818142073", + "odds": "1.444", + "name": "Jesus Rodriguez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.500", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "810835604", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813193941", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "818142127", + "odds": "2.100", + "name": "Silva William Carvalho: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818205392", + "odds": "1.333", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810835604", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T17:45:49+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:34:20+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "15.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810816138", + "odds": "2.050", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "9.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "818234653", + "odds": "1.285", + "name": "Yan Diomande: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:00:21+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9975311", + "FI": "174947318", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:49:38+03:00", + "Odds": [ + { + "id": "817009524", + "odds": "5.500", + "name": "Mexx Meerdink", + "handicap": "" + }, + { + "id": "817005544", + "odds": "12.000", + "name": "AZ 3-1", + "handicap": "" + }, + { + "id": "813187547", + "odds": "1.363", + "name": "FT Result: AZ", + "handicap": "" + }, + { + "id": "817005611", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "817008924", + "odds": "2.600", + "name": "Ernest Poku to Score", + "handicap": "" + }, + { + "id": "817005622", + "odds": "3.000", + "name": "Draw or Heerenveen", + "handicap": "" + }, + { + "id": "817831149", + "odds": "1.833", + "name": "Milos Lukovic: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817831114", + "odds": "2.000", + "name": "Jacob Trenskow: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817005829", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "817831128", + "odds": "2.625", + "name": "Levi Smans: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817840797", + "odds": "1.333", + "name": "Ruben van Bommel: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817828962", + "odds": "2.375", + "name": "Sven Mijnans: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "817026245", + "odds": "3.750", + "name": "Sven Mijnans to Assist", + "handicap": "" + }, + { + "id": "817008919", + "odds": "2.750", + "name": "Sven Mijnans to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:00:27+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9975310", + "FI": "174947324", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:49:18+03:00", + "Odds": [ + { + "id": "817020783", + "odds": "7.000", + "name": "Ricky van Wolfswinkel", + "handicap": "" + }, + { + "id": "817020896", + "odds": "8.500", + "name": "Sem Steijn", + "handicap": "" + }, + { + "id": "813187813", + "odds": "1.700", + "name": "FT Result: FC Twente", + "handicap": "" + }, + { + "id": "817030231", + "odds": "3.400", + "name": "Sem Steijn to Assist", + "handicap": "" + }, + { + "id": "817020347", + "odds": "2.100", + "name": "Sem Steijn to Score", + "handicap": "" + }, + { + "id": "817013372", + "odds": "2.100", + "name": "Draw or NEC", + "handicap": "" + }, + { + "id": "817837995", + "odds": "1.666", + "name": "Bryan Linssen: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817030440", + "odds": "3.200", + "name": "Bryan Linssen to Score or Assist", + "handicap": "" + }, + { + "id": "813187813", + "odds": "1.700", + "name": "FT Result: FC Twente", + "handicap": "" + }, + { + "id": "817014682", + "odds": "2.500", + "name": "FC Twente to Score in Both Halves", + "handicap": "" + }, + { + "id": "817020297", + "odds": "3.250", + "name": "Michel Vlap to Score", + "handicap": "" + }, + { + "id": "817013307", + "odds": "2.750", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "817030420", + "odds": "1.833", + "name": "Ricky van Wolfswinkel to Score or Assist", + "handicap": "" + }, + { + "id": "817030396", + "odds": "3.400", + "name": "Sami Ouaissa to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:00:37+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977002", + "FI": "174206901", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:57:58+03:00", + "Odds": [ + { + "id": "810834176", + "odds": "13.000", + "name": "Valencia 2-1", + "handicap": "" + }, + { + "id": "810843474", + "odds": "7.000", + "name": "Hugo Duro", + "handicap": "" + }, + { + "id": "713504058", + "odds": "3.500", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "818205392", + "odds": "1.333", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818145409", + "odds": "1.615", + "name": "Luis Rioja: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504056", + "odds": "2.000", + "name": "FT Result: Real Betis", + "handicap": "" + }, + { + "id": "818142082", + "odds": "2.375", + "name": "Juan Hernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818142073", + "odds": "1.500", + "name": "Jesus Rodriguez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.500", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "810835604", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813193941", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "818142127", + "odds": "2.100", + "name": "Silva William Carvalho: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818205392", + "odds": "1.333", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810835604", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:01:14+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:55:04+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "15.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810816138", + "odds": "2.050", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "9.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "818234653", + "odds": "1.285", + "name": "Yan Diomande: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:01:16+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:58:53+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "3.000", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:01:16+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:58:53+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "3.000", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:01:27+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9757324", + "FI": "172433912", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T17:59:26+03:00", + "Odds": [ + { + "id": "817868646", + "odds": "4.250", + "name": "Ousmane Dembele", + "handicap": "" + }, + { + "id": "467772639", + "odds": "8.000", + "name": "PSG 3-0", + "handicap": "" + }, + { + "id": "467774766", + "odds": "2.100", + "name": "PSG to win by 3+ Goals", + "handicap": "" + }, + { + "id": "818472444", + "odds": "1.800", + "name": "Bradley Barcola: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818472520", + "odds": "1.615", + "name": "Khvicha Kvaratskhelia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467775416", + "odds": "2.000", + "name": "PSG to Win Both Halves", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818524895", + "odds": "3.400", + "name": "Fabian Ruiz: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467772622", + "odds": "1.500", + "name": "HT: PSG \u2013 FT: PSG", + "handicap": "" + }, + { + "id": "818979031", + "odds": "1.055", + "name": "Most Shots on Target: PSG", + "handicap": "" + }, + { + "id": "818977802", + "odds": "1.533", + "name": "Most Cards: Reims", + "handicap": "" + }, + { + "id": "467772737", + "odds": "1.909", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "467773042", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818525451", + "odds": "9.000", + "name": "Theoson Siebatcheu: 2+ Shots on Target", + "handicap": "1.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:30:25+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9975311", + "FI": "174947318", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T18:24:35+03:00", + "Odds": [ + { + "id": "817009524", + "odds": "5.500", + "name": "Mexx Meerdink", + "handicap": "" + }, + { + "id": "817005544", + "odds": "12.000", + "name": "AZ 3-1", + "handicap": "" + }, + { + "id": "813187547", + "odds": "1.363", + "name": "FT Result: AZ", + "handicap": "" + }, + { + "id": "817005611", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "817008924", + "odds": "2.600", + "name": "Ernest Poku to Score", + "handicap": "" + }, + { + "id": "817005622", + "odds": "3.000", + "name": "Draw or Heerenveen", + "handicap": "" + }, + { + "id": "817831149", + "odds": "1.833", + "name": "Milos Lukovic: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817831114", + "odds": "2.000", + "name": "Jacob Trenskow: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817005829", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "817831128", + "odds": "2.625", + "name": "Levi Smans: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817840797", + "odds": "1.333", + "name": "Ruben van Bommel: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817828962", + "odds": "2.375", + "name": "Sven Mijnans: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "817026245", + "odds": "3.750", + "name": "Sven Mijnans to Assist", + "handicap": "" + }, + { + "id": "817008919", + "odds": "2.750", + "name": "Sven Mijnans to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:30:33+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9975310", + "FI": "174947324", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T18:18:11+03:00", + "Odds": [ + { + "id": "817020783", + "odds": "7.000", + "name": "Ricky van Wolfswinkel", + "handicap": "" + }, + { + "id": "817020896", + "odds": "8.500", + "name": "Sem Steijn", + "handicap": "" + }, + { + "id": "813187813", + "odds": "1.700", + "name": "FT Result: FC Twente", + "handicap": "" + }, + { + "id": "817030231", + "odds": "3.400", + "name": "Sem Steijn to Assist", + "handicap": "" + }, + { + "id": "817020347", + "odds": "2.100", + "name": "Sem Steijn to Score", + "handicap": "" + }, + { + "id": "817013372", + "odds": "2.100", + "name": "Draw or NEC", + "handicap": "" + }, + { + "id": "817837995", + "odds": "1.666", + "name": "Bryan Linssen: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817030440", + "odds": "3.200", + "name": "Bryan Linssen to Score or Assist", + "handicap": "" + }, + { + "id": "813187813", + "odds": "1.700", + "name": "FT Result: FC Twente", + "handicap": "" + }, + { + "id": "817014682", + "odds": "2.500", + "name": "FC Twente to Score in Both Halves", + "handicap": "" + }, + { + "id": "817020297", + "odds": "3.250", + "name": "Michel Vlap to Score", + "handicap": "" + }, + { + "id": "817013307", + "odds": "2.750", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "817030420", + "odds": "1.833", + "name": "Ricky van Wolfswinkel to Score or Assist", + "handicap": "" + }, + { + "id": "817030396", + "odds": "3.400", + "name": "Sami Ouaissa to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:30:54+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977002", + "FI": "174206901", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T18:29:17+03:00", + "Odds": [ + { + "id": "810834176", + "odds": "13.000", + "name": "Valencia 2-1", + "handicap": "" + }, + { + "id": "810843474", + "odds": "7.000", + "name": "Hugo Duro", + "handicap": "" + }, + { + "id": "713504058", + "odds": "3.500", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "818205392", + "odds": "1.333", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818145409", + "odds": "1.615", + "name": "Luis Rioja: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504056", + "odds": "2.000", + "name": "FT Result: Real Betis", + "handicap": "" + }, + { + "id": "818142082", + "odds": "2.375", + "name": "Juan Hernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818142073", + "odds": "1.500", + "name": "Jesus Rodriguez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.500", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "810835604", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813193941", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "818142127", + "odds": "2.100", + "name": "Silva William Carvalho: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818205392", + "odds": "1.333", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810835604", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:31:31+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T18:27:18+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "3.000", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:31:31+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T18:27:18+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "3.000", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:31:39+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T18:30:57+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "15.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810816138", + "odds": "2.050", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "9.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "818234653", + "odds": "1.285", + "name": "Yan Diomande: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:31:52+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T18:28:46+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.500", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:31:52+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T18:28:46+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.500", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:31:58+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T18:28:03+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "3.750", + "name": "2", + "handicap": "" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.250", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.375", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:32:09+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T18:18:52+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.350", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.615", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.000", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.100", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.100", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:32:17+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9757324", + "FI": "172433912", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T18:30:11+03:00", + "Odds": [ + { + "id": "817868646", + "odds": "4.250", + "name": "Ousmane Dembele", + "handicap": "" + }, + { + "id": "467772639", + "odds": "8.000", + "name": "PSG 3-0", + "handicap": "" + }, + { + "id": "467774766", + "odds": "2.100", + "name": "PSG to win by 3+ Goals", + "handicap": "" + }, + { + "id": "818472444", + "odds": "1.800", + "name": "Bradley Barcola: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818472520", + "odds": "1.615", + "name": "Khvicha Kvaratskhelia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467775416", + "odds": "2.000", + "name": "PSG to Win Both Halves", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818524895", + "odds": "3.400", + "name": "Fabian Ruiz: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467772622", + "odds": "1.500", + "name": "HT: PSG \u2013 FT: PSG", + "handicap": "" + }, + { + "id": "818979031", + "odds": "1.055", + "name": "Most Shots on Target: PSG", + "handicap": "" + }, + { + "id": "818977802", + "odds": "1.533", + "name": "Most Cards: Reims", + "handicap": "" + }, + { + "id": "467772737", + "odds": "1.909", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "467773042", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818525451", + "odds": "9.000", + "name": "Theoson Siebatcheu: 2+ Shots on Target", + "handicap": "1.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-22T18:33:02+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289267", + "FI": "174218987", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T18:28:07+03:00", + "Odds": [ + { + "id": "806548682", + "odds": "13.000", + "name": "Wilfried Zaha", + "handicap": "" + }, + { + "id": "806547960", + "odds": "19.000", + "name": "Jacen Russell-Rowe", + "handicap": "" + }, + { + "id": "714859478", + "odds": "2.700", + "name": "FT Result: Charlotte FC", + "handicap": "" + }, + { + "id": "812225920", + "odds": "1.400", + "name": "Liel Abada: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812481096", + "odds": "1.363", + "name": "Patrick Agyemang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859480", + "odds": "2.500", + "name": "FT Result: Columbus Crew", + "handicap": "" + }, + { + "id": "812228823", + "odds": "1.500", + "name": "Daniel Gazdag: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812228831", + "odds": "2.625", + "name": "Diego Rossi: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "827337512", + "odds": "2.100", + "name": "Over 4 Corners for Charlotte FC", + "handicap": "4" + }, + { + "id": "827337557", + "odds": "1.833", + "name": "Over 4 Corners for Columbus Crew", + "handicap": "4" + }, + { + "id": "806542309", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "812481093", + "odds": "3.000", + "name": "Liel Abada: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "816983630", + "odds": "1.333", + "name": "Diego Rossi: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "806544053", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:00:09+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9975311", + "FI": "174947318", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T19:43:57+03:00", + "Odds": [ + { + "id": "817009524", + "odds": "5.500", + "name": "Mexx Meerdink", + "handicap": "" + }, + { + "id": "817005544", + "odds": "12.000", + "name": "AZ 3-1", + "handicap": "" + }, + { + "id": "813187547", + "odds": "1.300", + "name": "FT Result: AZ", + "handicap": "" + }, + { + "id": "817005611", + "odds": "2.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "817008924", + "odds": "2.400", + "name": "Ernest Poku to Score", + "handicap": "" + }, + { + "id": "817005622", + "odds": "3.400", + "name": "Draw or Heerenveen", + "handicap": "" + }, + { + "id": "817831149", + "odds": "2.100", + "name": "Milos Lukovic: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817831114", + "odds": "2.375", + "name": "Jacob Trenskow: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817005829", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "817831128", + "odds": "3.000", + "name": "Levi Smans: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817840797", + "odds": "1.250", + "name": "Ruben van Bommel: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817828962", + "odds": "2.375", + "name": "Sven Mijnans: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "817026245", + "odds": "3.750", + "name": "Sven Mijnans to Assist", + "handicap": "" + }, + { + "id": "817008919", + "odds": "2.750", + "name": "Sven Mijnans to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:00:13+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9975310", + "FI": "174947324", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-22T21:58:44+03:00", + "Odds": [ + { + "id": "817020783", + "odds": "7.000", + "name": "Ricky van Wolfswinkel", + "handicap": "" + }, + { + "id": "817020896", + "odds": "8.500", + "name": "Sem Steijn", + "handicap": "" + }, + { + "id": "813187813", + "odds": "1.727", + "name": "FT Result: FC Twente", + "handicap": "" + }, + { + "id": "817030231", + "odds": "3.400", + "name": "Sem Steijn to Assist", + "handicap": "" + }, + { + "id": "817020347", + "odds": "2.100", + "name": "Sem Steijn to Score", + "handicap": "" + }, + { + "id": "817013372", + "odds": "2.050", + "name": "Draw or NEC", + "handicap": "" + }, + { + "id": "817837995", + "odds": "1.615", + "name": "Bryan Linssen: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "817030440", + "odds": "2.875", + "name": "Bryan Linssen to Score or Assist", + "handicap": "" + }, + { + "id": "813187813", + "odds": "1.727", + "name": "FT Result: FC Twente", + "handicap": "" + }, + { + "id": "817014682", + "odds": "2.500", + "name": "FC Twente to Score in Both Halves", + "handicap": "" + }, + { + "id": "817020297", + "odds": "3.200", + "name": "Michel Vlap to Score", + "handicap": "" + }, + { + "id": "817013307", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "817030420", + "odds": "1.800", + "name": "Ricky van Wolfswinkel to Score or Assist", + "handicap": "" + }, + { + "id": "817030396", + "odds": "3.250", + "name": "Sami Ouaissa to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:00:49+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977002", + "FI": "174206901", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T14:50:44+03:00", + "Odds": [ + { + "id": "810834176", + "odds": "13.000", + "name": "Valencia 2-1", + "handicap": "" + }, + { + "id": "810843474", + "odds": "8.000", + "name": "Hugo Duro", + "handicap": "" + }, + { + "id": "713504056", + "odds": "1.950", + "name": "FT Result: Real Betis", + "handicap": "" + }, + { + "id": "818142082", + "odds": "2.375", + "name": "Juan Hernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818142073", + "odds": "1.444", + "name": "Jesus Rodriguez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.600", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "818205392", + "odds": "1.333", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818145409", + "odds": "1.533", + "name": "Luis Rioja: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.600", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "810835604", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813193941", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "818142127", + "odds": "2.100", + "name": "Silva William Carvalho: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818205392", + "odds": "1.333", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810835604", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:15:15+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977002", + "FI": "174206901", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:12:14+03:00", + "Odds": [ + { + "id": "810834176", + "odds": "13.000", + "name": "Valencia 2-1", + "handicap": "" + }, + { + "id": "810843474", + "odds": "8.000", + "name": "Hugo Duro", + "handicap": "" + }, + { + "id": "713504056", + "odds": "1.950", + "name": "FT Result: Real Betis", + "handicap": "" + }, + { + "id": "818142082", + "odds": "2.375", + "name": "Juan Hernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818142073", + "odds": "1.444", + "name": "Jesus Rodriguez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.600", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "818205392", + "odds": "1.333", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818145409", + "odds": "1.533", + "name": "Luis Rioja: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.600", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "810835604", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813193941", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "818142127", + "odds": "2.100", + "name": "Silva William Carvalho: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818205392", + "odds": "1.333", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810835604", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:15:49+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8826418", + "FI": "174588296", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:10:44+03:00", + "Odds": [ + { + "id": "819956646", + "odds": "1.500", + "name": "Alexandru Maxim: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037294", + "odds": "2.600", + "name": "FT Result: Gaziantep FK", + "handicap": "" + }, + { + "id": "819311085", + "odds": "2.100", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819959543", + "odds": "2.375", + "name": "Joia Nuno Da Costa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037306", + "odds": "2.375", + "name": "FT Result: Kasimpasa", + "handicap": "" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820280304", + "odds": "1.363", + "name": "Aytac Kara: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819315041", + "odds": "3.750", + "name": "Over 4 Goals", + "handicap": "4" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:16:02+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:10:36+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "15.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "818234653", + "odds": "1.285", + "name": "Yan Diomande: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810816138", + "odds": "2.050", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "9.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:16:14+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:14:39+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "2.750", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505983", + "odds": "1.380", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.000", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:16:14+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:14:39+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "2.750", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505983", + "odds": "1.380", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.000", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:16:24+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9757324", + "FI": "172433912", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:16:07+03:00", + "Odds": [ + { + "id": "817868646", + "odds": "4.250", + "name": "Ousmane Dembele", + "handicap": "" + }, + { + "id": "467772639", + "odds": "8.000", + "name": "PSG 3-0", + "handicap": "" + }, + { + "id": "467774766", + "odds": "2.050", + "name": "PSG to win by 3+ Goals", + "handicap": "" + }, + { + "id": "818472444", + "odds": "1.800", + "name": "Bradley Barcola: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818472520", + "odds": "1.571", + "name": "Khvicha Kvaratskhelia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467775416", + "odds": "2.000", + "name": "PSG to Win Both Halves", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818524895", + "odds": "3.250", + "name": "Fabian Ruiz: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467772622", + "odds": "1.500", + "name": "HT: PSG \u2013 FT: PSG", + "handicap": "" + }, + { + "id": "818979031", + "odds": "1.055", + "name": "Most Shots on Target: PSG", + "handicap": "" + }, + { + "id": "818977802", + "odds": "1.533", + "name": "Most Cards: Reims", + "handicap": "" + }, + { + "id": "467772737", + "odds": "1.833", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "467773042", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818525451", + "odds": "10.000", + "name": "Theoson Siebatcheu: 2+ Shots on Target", + "handicap": "1.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:16:38+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:10:37+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.350", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.615", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.000", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.100", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.100", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:16:46+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:14:36+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:16:46+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:14:36+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:16:52+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:14:19+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "3.750", + "name": "2", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.250", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.375", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:18:34+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289262", + "FI": "174219002", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:16:18+03:00", + "Odds": [ + { + "id": "806670446", + "odds": "13.000", + "name": "Tani Oluwaseyi", + "handicap": "" + }, + { + "id": "806655131", + "odds": "9.500", + "name": "Minnesota United 2-1", + "handicap": "" + }, + { + "id": "714859773", + "odds": "1.727", + "name": "FT Result: Minnesota United", + "handicap": "" + }, + { + "id": "812331324", + "odds": "1.800", + "name": "Kelvin Yeboah: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812331345", + "odds": "2.375", + "name": "Tani Oluwaseyi: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806655293", + "odds": "2.050", + "name": "Draw or Austin FC", + "handicap": "" + }, + { + "id": "812335148", + "odds": "1.571", + "name": "Myrto Uzuni: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812334820", + "odds": "1.571", + "name": "Brandon Vazquez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "827362447", + "odds": "1.533", + "name": "Over 4 Corners for Minnesota United", + "handicap": "4" + }, + { + "id": "827362563", + "odds": "2.200", + "name": "Over 4 Corners for Austin FC", + "handicap": "4" + }, + { + "id": "806655241", + "odds": "1.950", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "806655104", + "odds": "2.625", + "name": "HT: Minnesota United \u2013 FT: Minnesota United", + "handicap": "" + }, + { + "id": "827360459", + "odds": "1.615", + "name": "Most Corners: Minnesota United", + "handicap": "" + }, + { + "id": "806963379", + "odds": "1.800", + "name": "Kelvin Yeboah to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:18:41+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289261", + "FI": "174219004", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:14:57+03:00", + "Odds": [ + { + "id": "806742909", + "odds": "12.000", + "name": "Joao Klauss", + "handicap": "" + }, + { + "id": "806741536", + "odds": "8.500", + "name": "Darren Yapi", + "handicap": "" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812508432", + "odds": "3.000", + "name": "Kevin Cabral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806733943", + "odds": "1.909", + "name": "Draw or St. Louis City SC", + "handicap": "" + }, + { + "id": "812362704", + "odds": "1.444", + "name": "Cedric Teuchert: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812362834", + "odds": "1.500", + "name": "Marcel Hartel: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812508349", + "odds": "3.250", + "name": "Cedric Teuchert: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806737965", + "odds": "1.600", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "827381382", + "odds": "1.250", + "name": "Over 3 Corners for Colorado Rapids", + "handicap": "3" + }, + { + "id": "807040642", + "odds": "2.100", + "name": "Darren Yapi to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:18:49+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289260", + "FI": "174219006", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:18:22+03:00", + "Odds": [ + { + "id": "806753712", + "odds": "8.500", + "name": "Brian White", + "handicap": "" + }, + { + "id": "806753521", + "odds": "7.000", + "name": "William Agada", + "handicap": "" + }, + { + "id": "714859829", + "odds": "2.500", + "name": "FT Result: Real Salt Lake", + "handicap": "" + }, + { + "id": "812514424", + "odds": "1.333", + "name": "William Agada: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812377943", + "odds": "1.400", + "name": "Diogo Goncalves: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859831", + "odds": "2.600", + "name": "FT Result: Vancouver Whitecaps", + "handicap": "" + }, + { + "id": "812380351", + "odds": "2.100", + "name": "Pedro Vite: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380265", + "odds": "2.750", + "name": "Brian White: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "827384577", + "odds": "1.666", + "name": "Over 4 Corners for Real Salt Lake", + "handicap": "4" + }, + { + "id": "827384725", + "odds": "1.909", + "name": "Over 4 Corners for Vancouver Whitecaps", + "handicap": "4" + }, + { + "id": "806747601", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "812377945", + "odds": "1.833", + "name": "Dominik Marczuk: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380239", + "odds": "2.250", + "name": "Ali Ahmed: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "806749654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:19:02+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T14:59:15+03:00", + "Odds": [ + { + "id": "810813006", + "odds": "8.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "810805461", + "odds": "12.000", + "name": "Atletico Madrid 2-0", + "handicap": "" + }, + { + "id": "713506844", + "odds": "3.800", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713506855", + "odds": "1.909", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257779", + "odds": "2.625", + "name": "Antoine Griezmann: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257773", + "odds": "2.625", + "name": "Angel Correa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "3.800", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "832763395", + "odds": "1.400", + "name": "Cristhian Stuani: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818254988", + "odds": "1.444", + "name": "Viktor Tsygankov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257791", + "odds": "1.833", + "name": "Conor Gallagher: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306498", + "odds": "1.363", + "name": "Antoine Griezmann: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:19:02+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T14:59:15+03:00", + "Odds": [ + { + "id": "810813006", + "odds": "8.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "810805461", + "odds": "12.000", + "name": "Atletico Madrid 2-0", + "handicap": "" + }, + { + "id": "713506844", + "odds": "3.800", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713506855", + "odds": "1.909", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257779", + "odds": "2.625", + "name": "Antoine Griezmann: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257773", + "odds": "2.625", + "name": "Angel Correa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "3.800", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "832763395", + "odds": "1.400", + "name": "Cristhian Stuani: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818254988", + "odds": "1.444", + "name": "Viktor Tsygankov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257791", + "odds": "1.833", + "name": "Conor Gallagher: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306498", + "odds": "1.363", + "name": "Antoine Griezmann: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:20:40+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822035", + "FI": "174588284", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T14:51:43+03:00", + "Odds": [ + { + "id": "820312223", + "odds": "3.400", + "name": "Duckens Nazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997827", + "odds": "1.500", + "name": "Gokdeniz Bayrakdar: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997755", + "odds": "1.666", + "name": "Alredo Fredy: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036662", + "odds": "1.950", + "name": "FT Result: Bodrum FK", + "handicap": "" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:20:40+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822035", + "FI": "174588284", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T14:51:43+03:00", + "Odds": [ + { + "id": "820312223", + "odds": "3.400", + "name": "Duckens Nazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997827", + "odds": "1.500", + "name": "Gokdeniz Bayrakdar: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997755", + "odds": "1.666", + "name": "Alredo Fredy: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036662", + "odds": "1.950", + "name": "FT Result: Bodrum FK", + "handicap": "" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:20:47+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822034", + "FI": "174588286", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:18:19+03:00", + "Odds": [ + { + "id": "820006660", + "odds": "1.571", + "name": "Mehmet Nayir: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036764", + "odds": "2.800", + "name": "FT Result: Konyaspor", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820321024", + "odds": "3.000", + "name": "Andraz Sporar: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036767", + "odds": "2.250", + "name": "FT Result: Alanyaspor", + "handicap": "" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820009298", + "odds": "1.666", + "name": "Eui-Jo Hwang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:20:47+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822034", + "FI": "174588286", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:18:19+03:00", + "Odds": [ + { + "id": "820006660", + "odds": "1.571", + "name": "Mehmet Nayir: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036764", + "odds": "2.800", + "name": "FT Result: Konyaspor", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820321024", + "odds": "3.000", + "name": "Andraz Sporar: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036767", + "odds": "2.250", + "name": "FT Result: Alanyaspor", + "handicap": "" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820009298", + "odds": "1.666", + "name": "Eui-Jo Hwang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:20:57+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8840198", + "FI": "174588288", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:04:33+03:00", + "Odds": [ + { + "id": "820021777", + "odds": "1.500", + "name": "Oleksandr Zubkov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036883", + "odds": "2.250", + "name": "FT Result: Trabzonspor", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820021638", + "odds": "1.727", + "name": "Anthony Nwakaeme: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820336294", + "odds": "3.400", + "name": "Landry Dimata: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036888", + "odds": "2.800", + "name": "FT Result: Samsunspor", + "handicap": "" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:20:57+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8840198", + "FI": "174588288", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:04:33+03:00", + "Odds": [ + { + "id": "820021777", + "odds": "1.500", + "name": "Oleksandr Zubkov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036883", + "odds": "2.250", + "name": "FT Result: Trabzonspor", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820021638", + "odds": "1.727", + "name": "Anthony Nwakaeme: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820336294", + "odds": "3.400", + "name": "Landry Dimata: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036888", + "odds": "2.800", + "name": "FT Result: Samsunspor", + "handicap": "" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:21:02+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982903", + "FI": "174588280", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:19:08+03:00", + "Odds": [ + { + "id": "820343994", + "odds": "1.300", + "name": "Ciro Immobile: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819945189", + "odds": "2.200", + "name": "Rafa Silva: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819945232", + "odds": "2.625", + "name": "Joao Mario: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819344587", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819348703", + "odds": "1.666", + "name": "Ciro Immobile to Score", + "handicap": "" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:21:02+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982903", + "FI": "174588280", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:19:08+03:00", + "Odds": [ + { + "id": "820343994", + "odds": "1.300", + "name": "Ciro Immobile: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819945189", + "odds": "2.200", + "name": "Rafa Silva: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819945232", + "odds": "2.625", + "name": "Joao Mario: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819344587", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819348703", + "odds": "1.666", + "name": "Ciro Immobile to Score", + "handicap": "" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:22:51+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977001", + "FI": "174206898", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:21:26+03:00", + "Odds": [ + { + "id": "810769529", + "odds": "6.500", + "name": "Robert Lewandowski", + "handicap": "" + }, + { + "id": "810770215", + "odds": "6.500", + "name": "Lamine Yamal", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.100", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283162", + "odds": "1.833", + "name": "Robert Lewandowski: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810767797", + "odds": "1.909", + "name": "Robert Lewandowski to Score", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.100", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283150", + "odds": "2.000", + "name": "Raphinha: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810774636", + "odds": "1.571", + "name": "Lamine Yamal to Score or Assist", + "handicap": "" + }, + { + "id": "713503825", + "odds": "3.200", + "name": "FT Result: Athletic Bilbao", + "handicap": "" + }, + { + "id": "810774497", + "odds": "2.200", + "name": "Oihan Sancet to Score or Assist", + "handicap": "" + }, + { + "id": "813208230", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "827038436", + "odds": "1.400", + "name": "Over 3 Corners for Athletic Bilbao", + "handicap": "3" + }, + { + "id": "827038961", + "odds": "1.444", + "name": "Over 3 Corners for Barcelona", + "handicap": "3" + }, + { + "id": "810764064", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:23:00+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9288599", + "FI": "174219011", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:22:34+03:00", + "Odds": [ + { + "id": "806795106", + "odds": "13.000", + "name": "Alonso Martinez", + "handicap": "" + }, + { + "id": "806793895", + "odds": "15.000", + "name": "Hugo Cuypers", + "handicap": "" + }, + { + "id": "714860035", + "odds": "1.950", + "name": "FT Result: New York City FC", + "handicap": "" + }, + { + "id": "812414097", + "odds": "1.500", + "name": "Julian Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812414089", + "odds": "1.727", + "name": "Hannes Wolf: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714860037", + "odds": "3.600", + "name": "FT Result: Chicago Fire", + "handicap": "" + }, + { + "id": "812415639", + "odds": "1.615", + "name": "Brian Gutierrez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812415683", + "odds": "1.571", + "name": "Jonathan Bamba: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812875983", + "odds": "1.500", + "name": "Over 8 Corners", + "handicap": "8.0" + }, + { + "id": "806787411", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "806786217", + "odds": "2.375", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "714860035", + "odds": "1.950", + "name": "FT Result: New York City FC", + "handicap": "" + }, + { + "id": "806792787", + "odds": "3.100", + "name": "Julian Fernandez to Score", + "handicap": "" + }, + { + "id": "827388794", + "odds": "1.615", + "name": "Most Corners: New York City FC", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:23:07+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289259", + "FI": "174219015", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:22:34+03:00", + "Odds": [ + { + "id": "806822225", + "odds": "15.000", + "name": "Emmanuel Latte Lath", + "handicap": "" + }, + { + "id": "806820954", + "odds": "9.000", + "name": "Ferreira Evander", + "handicap": "" + }, + { + "id": "714860470", + "odds": "2.400", + "name": "FT Result: Atlanta United", + "handicap": "" + }, + { + "id": "812421030", + "odds": "1.571", + "name": "Miguel Almiron: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812420959", + "odds": "1.444", + "name": "Aleksey Miranchuk: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714860473", + "odds": "2.700", + "name": "FT Result: FC Cincinnati", + "handicap": "" + }, + { + "id": "812886421", + "odds": "1.363", + "name": "Luca Orellano: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812886731", + "odds": "1.285", + "name": "Ahoueke Denkey: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812885974", + "odds": "1.500", + "name": "Over 8 Corners", + "handicap": "8.0" + }, + { + "id": "806814209", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "806812506", + "odds": "2.500", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "812424314", + "odds": "2.625", + "name": "Luca Orellano: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812887182", + "odds": "3.000", + "name": "Saba Lobzhanidze: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806814209", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:23:12+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8826752", + "FI": "174588282", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:13:50+03:00", + "Odds": [ + { + "id": "820350480", + "odds": "1.300", + "name": "Youssef En Nesyri: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "820042485", + "odds": "1.571", + "name": "Conceicao Talisca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036542", + "odds": "1.222", + "name": "FT Result: Fenerbahce", + "handicap": "" + }, + { + "id": "819432775", + "odds": "1.500", + "name": "Youssef En Nesyri to Score", + "handicap": "" + }, + { + "id": "819430970", + "odds": "2.100", + "name": "Fenerbahce \u0026 Yes", + "handicap": "" + }, + { + "id": "819428625", + "odds": "2.250", + "name": "Over 4 Goals", + "handicap": "4" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:23:19+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9929184", + "FI": "174363978", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:23:10+03:00", + "Odds": [ + { + "id": "774550908", + "odds": "21.000", + "name": "Antony", + "handicap": "" + }, + { + "id": "774550887", + "odds": "15.000", + "name": "Nicolas Jackson", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734591996", + "odds": "1.833", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "774549605", + "odds": "2.300", + "name": "Cole Palmer to Score", + "handicap": "" + }, + { + "id": "774549558", + "odds": "2.875", + "name": "Nicolas Jackson to Score", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734590525", + "odds": "2.000", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:23:30+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9924545", + "FI": "174307725", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:18:54+03:00", + "Odds": [ + { + "id": "726811888", + "odds": "13.000", + "name": "Lautaro Martinez", + "handicap": "" + }, + { + "id": "726811982", + "odds": "11.000", + "name": "Khvicha Kvaratskhelia", + "handicap": "" + }, + { + "id": "726816128", + "odds": "1.615", + "name": "PSG to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811208", + "odds": "3.250", + "name": "Bradley Barcola to Score", + "handicap": "" + }, + { + "id": "726806476", + "odds": "1.909", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "726816130", + "odds": "2.300", + "name": "Inter Milan to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811216", + "odds": "3.250", + "name": "Marcus Thuram to Score", + "handicap": "" + }, + { + "id": "726807442", + "odds": "1.750", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "726816349", + "odds": "2.300", + "name": "Lautaro Martinez to Score or Assist", + "handicap": "" + }, + { + "id": "726816313", + "odds": "2.000", + "name": "Khvicha Kvaratskhelia to Score or Assist", + "handicap": "" + }, + { + "id": "726816123", + "odds": "2.250", + "name": "PSG to Win in 90 Mins", + "handicap": "" + }, + { + "id": "726807627", + "odds": "3.400", + "name": "PSG to Score in Both Halves", + "handicap": "" + }, + { + "id": "726811207", + "odds": "4.000", + "name": "Desire Doue to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:30:40+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977002", + "FI": "174206901", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:28:36+03:00", + "Odds": [ + { + "id": "810834176", + "odds": "13.000", + "name": "Valencia 2-1", + "handicap": "" + }, + { + "id": "810843474", + "odds": "8.000", + "name": "Hugo Duro", + "handicap": "" + }, + { + "id": "713504056", + "odds": "1.950", + "name": "FT Result: Real Betis", + "handicap": "" + }, + { + "id": "818142082", + "odds": "2.375", + "name": "Juan Hernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818142073", + "odds": "1.444", + "name": "Jesus Rodriguez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.600", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "818205392", + "odds": "1.333", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818145409", + "odds": "1.533", + "name": "Luis Rioja: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.600", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "810835604", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813193941", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "818142127", + "odds": "2.100", + "name": "Silva William Carvalho: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818205392", + "odds": "1.333", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810835604", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:30:53+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982904", + "FI": "174588290", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:28:09+03:00", + "Odds": [ + { + "id": "820264609", + "odds": "1.400", + "name": "Umut Bozok: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037000", + "odds": "1.900", + "name": "FT Result: Eyupspor", + "handicap": "" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820243702", + "odds": "1.444", + "name": "Emre Mor: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819301876", + "odds": "5.500", + "name": "Over 4 Goals", + "handicap": "4" + }, + { + "id": "820264669", + "odds": "3.400", + "name": "Adolfo Gaich: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037006", + "odds": "3.700", + "name": "FT Result: Antalyaspor", + "handicap": "" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:31:16+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8826418", + "FI": "174588296", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:24:59+03:00", + "Odds": [ + { + "id": "819956646", + "odds": "1.500", + "name": "Alexandru Maxim: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037294", + "odds": "2.600", + "name": "FT Result: Gaziantep FK", + "handicap": "" + }, + { + "id": "819311085", + "odds": "2.100", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819959543", + "odds": "2.375", + "name": "Joia Nuno Da Costa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037306", + "odds": "2.375", + "name": "FT Result: Kasimpasa", + "handicap": "" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820280304", + "odds": "1.363", + "name": "Aytac Kara: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819315041", + "odds": "3.750", + "name": "Over 4 Goals", + "handicap": "4" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:31:29+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:25:18+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "15.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "818234653", + "odds": "1.285", + "name": "Yan Diomande: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810816138", + "odds": "2.050", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "9.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:31:37+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:30:44+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "2.750", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505983", + "odds": "1.380", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.000", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:31:37+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:30:44+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "2.750", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505983", + "odds": "1.380", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.000", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:31:57+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9757324", + "FI": "172433912", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:29:40+03:00", + "Odds": [ + { + "id": "817868646", + "odds": "4.250", + "name": "Ousmane Dembele", + "handicap": "" + }, + { + "id": "467772639", + "odds": "8.000", + "name": "PSG 3-0", + "handicap": "" + }, + { + "id": "467774766", + "odds": "2.050", + "name": "PSG to win by 3+ Goals", + "handicap": "" + }, + { + "id": "818472444", + "odds": "1.800", + "name": "Bradley Barcola: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818472520", + "odds": "1.571", + "name": "Khvicha Kvaratskhelia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467775416", + "odds": "2.000", + "name": "PSG to Win Both Halves", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818524895", + "odds": "3.250", + "name": "Fabian Ruiz: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467772622", + "odds": "1.500", + "name": "HT: PSG \u2013 FT: PSG", + "handicap": "" + }, + { + "id": "818979031", + "odds": "1.055", + "name": "Most Shots on Target: PSG", + "handicap": "" + }, + { + "id": "818977802", + "odds": "1.533", + "name": "Most Cards: Reims", + "handicap": "" + }, + { + "id": "467772737", + "odds": "1.833", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "467773042", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818525451", + "odds": "10.000", + "name": "Theoson Siebatcheu: 2+ Shots on Target", + "handicap": "1.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:32:03+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:17:12+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.350", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.615", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.000", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.100", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.100", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:32:12+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:31:01+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:32:12+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:31:01+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:32:19+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:32:04+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "3.750", + "name": "2", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.250", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.375", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:32:19+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:32:04+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "3.750", + "name": "2", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.250", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.375", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:33:37+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289262", + "FI": "174219002", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:30:59+03:00", + "Odds": [ + { + "id": "806670446", + "odds": "13.000", + "name": "Tani Oluwaseyi", + "handicap": "" + }, + { + "id": "806655131", + "odds": "9.500", + "name": "Minnesota United 2-1", + "handicap": "" + }, + { + "id": "714859773", + "odds": "1.727", + "name": "FT Result: Minnesota United", + "handicap": "" + }, + { + "id": "812331324", + "odds": "1.800", + "name": "Kelvin Yeboah: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812331345", + "odds": "2.375", + "name": "Tani Oluwaseyi: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806655293", + "odds": "2.050", + "name": "Draw or Austin FC", + "handicap": "" + }, + { + "id": "812335148", + "odds": "1.571", + "name": "Myrto Uzuni: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812334820", + "odds": "1.571", + "name": "Brandon Vazquez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "827362447", + "odds": "1.533", + "name": "Over 4 Corners for Minnesota United", + "handicap": "4" + }, + { + "id": "827362563", + "odds": "2.200", + "name": "Over 4 Corners for Austin FC", + "handicap": "4" + }, + { + "id": "806655241", + "odds": "1.950", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "806655104", + "odds": "2.625", + "name": "HT: Minnesota United \u2013 FT: Minnesota United", + "handicap": "" + }, + { + "id": "827360459", + "odds": "1.615", + "name": "Most Corners: Minnesota United", + "handicap": "" + }, + { + "id": "806963379", + "odds": "1.800", + "name": "Kelvin Yeboah to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:33:48+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289261", + "FI": "174219004", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:29:56+03:00", + "Odds": [ + { + "id": "806742909", + "odds": "12.000", + "name": "Joao Klauss", + "handicap": "" + }, + { + "id": "806741536", + "odds": "8.500", + "name": "Darren Yapi", + "handicap": "" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812508432", + "odds": "3.000", + "name": "Kevin Cabral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806733943", + "odds": "1.909", + "name": "Draw or St. Louis City SC", + "handicap": "" + }, + { + "id": "812362704", + "odds": "1.444", + "name": "Cedric Teuchert: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812362834", + "odds": "1.500", + "name": "Marcel Hartel: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812508349", + "odds": "3.250", + "name": "Cedric Teuchert: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806737965", + "odds": "1.600", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "827381382", + "odds": "1.250", + "name": "Over 3 Corners for Colorado Rapids", + "handicap": "3" + }, + { + "id": "807040642", + "odds": "2.100", + "name": "Darren Yapi to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:33:55+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289260", + "FI": "174219006", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:22:51+03:00", + "Odds": [ + { + "id": "806753712", + "odds": "8.500", + "name": "Brian White", + "handicap": "" + }, + { + "id": "806753521", + "odds": "7.000", + "name": "William Agada", + "handicap": "" + }, + { + "id": "714859829", + "odds": "2.500", + "name": "FT Result: Real Salt Lake", + "handicap": "" + }, + { + "id": "812514424", + "odds": "1.333", + "name": "William Agada: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812377943", + "odds": "1.400", + "name": "Diogo Goncalves: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859831", + "odds": "2.600", + "name": "FT Result: Vancouver Whitecaps", + "handicap": "" + }, + { + "id": "812380351", + "odds": "2.100", + "name": "Pedro Vite: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380265", + "odds": "2.750", + "name": "Brian White: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "827384577", + "odds": "1.666", + "name": "Over 4 Corners for Real Salt Lake", + "handicap": "4" + }, + { + "id": "827384725", + "odds": "1.909", + "name": "Over 4 Corners for Vancouver Whitecaps", + "handicap": "4" + }, + { + "id": "806747601", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "812377945", + "odds": "1.833", + "name": "Dominik Marczuk: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380239", + "odds": "2.250", + "name": "Ali Ahmed: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "806749654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:34:11+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:28:25+03:00", + "Odds": [ + { + "id": "810813006", + "odds": "8.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "810805461", + "odds": "12.000", + "name": "Atletico Madrid 2-0", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.950", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257779", + "odds": "2.750", + "name": "Antoine Griezmann: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257773", + "odds": "2.750", + "name": "Angel Correa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "832763395", + "odds": "1.400", + "name": "Cristhian Stuani: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818254988", + "odds": "1.444", + "name": "Viktor Tsygankov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257791", + "odds": "1.833", + "name": "Conor Gallagher: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306498", + "odds": "1.400", + "name": "Antoine Griezmann: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:34:11+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:28:25+03:00", + "Odds": [ + { + "id": "810813006", + "odds": "8.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "810805461", + "odds": "12.000", + "name": "Atletico Madrid 2-0", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.950", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257779", + "odds": "2.750", + "name": "Antoine Griezmann: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257773", + "odds": "2.750", + "name": "Angel Correa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "832763395", + "odds": "1.400", + "name": "Cristhian Stuani: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818254988", + "odds": "1.444", + "name": "Viktor Tsygankov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257791", + "odds": "1.833", + "name": "Conor Gallagher: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306498", + "odds": "1.400", + "name": "Antoine Griezmann: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:36:16+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822035", + "FI": "174588284", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:25:07+03:00", + "Odds": [ + { + "id": "820312223", + "odds": "3.400", + "name": "Duckens Nazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997827", + "odds": "1.500", + "name": "Gokdeniz Bayrakdar: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997755", + "odds": "1.666", + "name": "Alredo Fredy: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036662", + "odds": "1.950", + "name": "FT Result: Bodrum FK", + "handicap": "" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:36:16+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822035", + "FI": "174588284", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:25:07+03:00", + "Odds": [ + { + "id": "820312223", + "odds": "3.400", + "name": "Duckens Nazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997827", + "odds": "1.500", + "name": "Gokdeniz Bayrakdar: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997755", + "odds": "1.666", + "name": "Alredo Fredy: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036662", + "odds": "1.950", + "name": "FT Result: Bodrum FK", + "handicap": "" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:36:24+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822034", + "FI": "174588286", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:34:09+03:00", + "Odds": [ + { + "id": "820006660", + "odds": "1.571", + "name": "Mehmet Nayir: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036764", + "odds": "2.800", + "name": "FT Result: Konyaspor", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820321024", + "odds": "3.000", + "name": "Andraz Sporar: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036767", + "odds": "2.250", + "name": "FT Result: Alanyaspor", + "handicap": "" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820009298", + "odds": "1.666", + "name": "Eui-Jo Hwang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:36:24+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822034", + "FI": "174588286", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:34:09+03:00", + "Odds": [ + { + "id": "820006660", + "odds": "1.571", + "name": "Mehmet Nayir: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036764", + "odds": "2.800", + "name": "FT Result: Konyaspor", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820321024", + "odds": "3.000", + "name": "Andraz Sporar: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036767", + "odds": "2.250", + "name": "FT Result: Alanyaspor", + "handicap": "" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820009298", + "odds": "1.666", + "name": "Eui-Jo Hwang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:36:28+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8840198", + "FI": "174588288", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:21:57+03:00", + "Odds": [ + { + "id": "820021777", + "odds": "1.500", + "name": "Oleksandr Zubkov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036883", + "odds": "2.250", + "name": "FT Result: Trabzonspor", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820021638", + "odds": "1.727", + "name": "Anthony Nwakaeme: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820336294", + "odds": "3.400", + "name": "Landry Dimata: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036888", + "odds": "2.800", + "name": "FT Result: Samsunspor", + "handicap": "" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:36:28+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8840198", + "FI": "174588288", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:21:57+03:00", + "Odds": [ + { + "id": "820021777", + "odds": "1.500", + "name": "Oleksandr Zubkov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036883", + "odds": "2.250", + "name": "FT Result: Trabzonspor", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820021638", + "odds": "1.727", + "name": "Anthony Nwakaeme: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820336294", + "odds": "3.400", + "name": "Landry Dimata: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036888", + "odds": "2.800", + "name": "FT Result: Samsunspor", + "handicap": "" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:36:39+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982903", + "FI": "174588280", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:24:07+03:00", + "Odds": [ + { + "id": "820343994", + "odds": "1.300", + "name": "Ciro Immobile: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819945189", + "odds": "2.200", + "name": "Rafa Silva: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819945232", + "odds": "2.625", + "name": "Joao Mario: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819344587", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819348703", + "odds": "1.666", + "name": "Ciro Immobile to Score", + "handicap": "" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:36:39+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982903", + "FI": "174588280", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:24:07+03:00", + "Odds": [ + { + "id": "820343994", + "odds": "1.300", + "name": "Ciro Immobile: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819945189", + "odds": "2.200", + "name": "Rafa Silva: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819945232", + "odds": "2.625", + "name": "Joao Mario: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819344587", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819348703", + "odds": "1.666", + "name": "Ciro Immobile to Score", + "handicap": "" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:37:30+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977001", + "FI": "174206898", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:35:05+03:00", + "Odds": [ + { + "id": "810769529", + "odds": "6.500", + "name": "Robert Lewandowski", + "handicap": "" + }, + { + "id": "810770215", + "odds": "6.500", + "name": "Lamine Yamal", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.100", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283162", + "odds": "1.833", + "name": "Robert Lewandowski: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810767797", + "odds": "1.909", + "name": "Robert Lewandowski to Score", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.100", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283150", + "odds": "2.000", + "name": "Raphinha: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810774636", + "odds": "1.571", + "name": "Lamine Yamal to Score or Assist", + "handicap": "" + }, + { + "id": "713503825", + "odds": "3.200", + "name": "FT Result: Athletic Bilbao", + "handicap": "" + }, + { + "id": "810774497", + "odds": "2.200", + "name": "Oihan Sancet to Score or Assist", + "handicap": "" + }, + { + "id": "813208230", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "827038436", + "odds": "1.400", + "name": "Over 3 Corners for Athletic Bilbao", + "handicap": "3" + }, + { + "id": "827038961", + "odds": "1.444", + "name": "Over 3 Corners for Barcelona", + "handicap": "3" + }, + { + "id": "810764064", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:37:38+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9288599", + "FI": "174219011", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:31:03+03:00", + "Odds": [ + { + "id": "806795106", + "odds": "13.000", + "name": "Alonso Martinez", + "handicap": "" + }, + { + "id": "806793895", + "odds": "15.000", + "name": "Hugo Cuypers", + "handicap": "" + }, + { + "id": "714860035", + "odds": "1.950", + "name": "FT Result: New York City FC", + "handicap": "" + }, + { + "id": "812414097", + "odds": "1.500", + "name": "Julian Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812414089", + "odds": "1.727", + "name": "Hannes Wolf: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714860037", + "odds": "3.600", + "name": "FT Result: Chicago Fire", + "handicap": "" + }, + { + "id": "812415639", + "odds": "1.615", + "name": "Brian Gutierrez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812415683", + "odds": "1.571", + "name": "Jonathan Bamba: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812875983", + "odds": "1.500", + "name": "Over 8 Corners", + "handicap": "8.0" + }, + { + "id": "806787411", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "806786217", + "odds": "2.375", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "714860035", + "odds": "1.950", + "name": "FT Result: New York City FC", + "handicap": "" + }, + { + "id": "806792787", + "odds": "3.100", + "name": "Julian Fernandez to Score", + "handicap": "" + }, + { + "id": "827388794", + "odds": "1.615", + "name": "Most Corners: New York City FC", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:37:53+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289259", + "FI": "174219015", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:28:43+03:00", + "Odds": [ + { + "id": "806822225", + "odds": "15.000", + "name": "Emmanuel Latte Lath", + "handicap": "" + }, + { + "id": "806820954", + "odds": "9.000", + "name": "Ferreira Evander", + "handicap": "" + }, + { + "id": "714860470", + "odds": "2.400", + "name": "FT Result: Atlanta United", + "handicap": "" + }, + { + "id": "812421030", + "odds": "1.571", + "name": "Miguel Almiron: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812420959", + "odds": "1.444", + "name": "Aleksey Miranchuk: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714860473", + "odds": "2.700", + "name": "FT Result: FC Cincinnati", + "handicap": "" + }, + { + "id": "812886421", + "odds": "1.363", + "name": "Luca Orellano: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812886731", + "odds": "1.285", + "name": "Ahoueke Denkey: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812885974", + "odds": "1.500", + "name": "Over 8 Corners", + "handicap": "8.0" + }, + { + "id": "806814209", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "806812506", + "odds": "2.500", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "812424314", + "odds": "2.625", + "name": "Luca Orellano: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812887182", + "odds": "3.000", + "name": "Saba Lobzhanidze: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806814209", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:38:01+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8826752", + "FI": "174588282", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:34:59+03:00", + "Odds": [ + { + "id": "820350480", + "odds": "1.300", + "name": "Youssef En Nesyri: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "820042485", + "odds": "1.571", + "name": "Conceicao Talisca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036542", + "odds": "1.222", + "name": "FT Result: Fenerbahce", + "handicap": "" + }, + { + "id": "819432775", + "odds": "1.500", + "name": "Youssef En Nesyri to Score", + "handicap": "" + }, + { + "id": "819430970", + "odds": "2.100", + "name": "Fenerbahce \u0026 Yes", + "handicap": "" + }, + { + "id": "819428625", + "odds": "2.250", + "name": "Over 4 Goals", + "handicap": "4" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:38:08+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9929184", + "FI": "174363978", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:32:56+03:00", + "Odds": [ + { + "id": "774550908", + "odds": "21.000", + "name": "Antony", + "handicap": "" + }, + { + "id": "774550887", + "odds": "15.000", + "name": "Nicolas Jackson", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734591996", + "odds": "1.833", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "774549605", + "odds": "2.300", + "name": "Cole Palmer to Score", + "handicap": "" + }, + { + "id": "774549558", + "odds": "2.875", + "name": "Nicolas Jackson to Score", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734590525", + "odds": "2.000", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:38:20+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9924545", + "FI": "174307725", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:18:54+03:00", + "Odds": [ + { + "id": "726811888", + "odds": "13.000", + "name": "Lautaro Martinez", + "handicap": "" + }, + { + "id": "726811982", + "odds": "11.000", + "name": "Khvicha Kvaratskhelia", + "handicap": "" + }, + { + "id": "726816128", + "odds": "1.615", + "name": "PSG to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811208", + "odds": "3.250", + "name": "Bradley Barcola to Score", + "handicap": "" + }, + { + "id": "726806476", + "odds": "1.909", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "726816130", + "odds": "2.300", + "name": "Inter Milan to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811216", + "odds": "3.250", + "name": "Marcus Thuram to Score", + "handicap": "" + }, + { + "id": "726807442", + "odds": "1.750", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "726816349", + "odds": "2.300", + "name": "Lautaro Martinez to Score or Assist", + "handicap": "" + }, + { + "id": "726816313", + "odds": "2.000", + "name": "Khvicha Kvaratskhelia to Score or Assist", + "handicap": "" + }, + { + "id": "726816123", + "odds": "2.250", + "name": "PSG to Win in 90 Mins", + "handicap": "" + }, + { + "id": "726807627", + "odds": "3.400", + "name": "PSG to Score in Both Halves", + "handicap": "" + }, + { + "id": "726811207", + "odds": "4.000", + "name": "Desire Doue to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:45:17+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977002", + "FI": "174206901", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:40:09+03:00", + "Odds": [ + { + "id": "810834176", + "odds": "13.000", + "name": "Valencia 2-1", + "handicap": "" + }, + { + "id": "810843474", + "odds": "8.000", + "name": "Hugo Duro", + "handicap": "" + }, + { + "id": "713504056", + "odds": "1.950", + "name": "FT Result: Real Betis", + "handicap": "" + }, + { + "id": "818142082", + "odds": "2.375", + "name": "Juan Hernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818142073", + "odds": "1.444", + "name": "Jesus Rodriguez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.600", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "818205392", + "odds": "1.333", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818145409", + "odds": "1.533", + "name": "Luis Rioja: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.600", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "810835604", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813193941", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "818142127", + "odds": "2.100", + "name": "Silva William Carvalho: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818205392", + "odds": "1.333", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810835604", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:45:24+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982904", + "FI": "174588290", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:42:26+03:00", + "Odds": [ + { + "id": "820264609", + "odds": "1.400", + "name": "Umut Bozok: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037000", + "odds": "1.900", + "name": "FT Result: Eyupspor", + "handicap": "" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820243702", + "odds": "1.444", + "name": "Emre Mor: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819301876", + "odds": "5.500", + "name": "Over 4 Goals", + "handicap": "4" + }, + { + "id": "820264669", + "odds": "3.400", + "name": "Adolfo Gaich: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037006", + "odds": "3.700", + "name": "FT Result: Antalyaspor", + "handicap": "" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:46:01+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8826418", + "FI": "174588296", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:45:39+03:00", + "Odds": [ + { + "id": "819956646", + "odds": "1.500", + "name": "Alexandru Maxim: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037294", + "odds": "2.600", + "name": "FT Result: Gaziantep FK", + "handicap": "" + }, + { + "id": "819311085", + "odds": "2.100", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819959543", + "odds": "2.375", + "name": "Joia Nuno Da Costa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037306", + "odds": "2.375", + "name": "FT Result: Kasimpasa", + "handicap": "" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820280304", + "odds": "1.363", + "name": "Aytac Kara: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819315041", + "odds": "3.750", + "name": "Over 4 Goals", + "handicap": "4" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:46:09+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:44:17+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "15.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "818234653", + "odds": "1.285", + "name": "Yan Diomande: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810816138", + "odds": "2.050", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "9.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:46:22+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:43:17+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "2.750", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505983", + "odds": "1.380", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.000", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:46:22+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:43:17+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.500", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "2.750", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505983", + "odds": "1.380", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.000", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:46:38+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9757324", + "FI": "172433912", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:46:21+03:00", + "Odds": [ + { + "id": "817868646", + "odds": "4.250", + "name": "Ousmane Dembele", + "handicap": "" + }, + { + "id": "467772639", + "odds": "8.000", + "name": "PSG 3-0", + "handicap": "" + }, + { + "id": "467774766", + "odds": "2.050", + "name": "PSG to win by 3+ Goals", + "handicap": "" + }, + { + "id": "818472444", + "odds": "1.800", + "name": "Bradley Barcola: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818472520", + "odds": "1.571", + "name": "Khvicha Kvaratskhelia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467775416", + "odds": "2.000", + "name": "PSG to Win Both Halves", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818524895", + "odds": "3.250", + "name": "Fabian Ruiz: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467772622", + "odds": "1.500", + "name": "HT: PSG \u2013 FT: PSG", + "handicap": "" + }, + { + "id": "818979031", + "odds": "1.055", + "name": "Most Shots on Target: PSG", + "handicap": "" + }, + { + "id": "818977802", + "odds": "1.533", + "name": "Most Cards: Reims", + "handicap": "" + }, + { + "id": "467772737", + "odds": "1.833", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "467773042", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818525451", + "odds": "10.000", + "name": "Theoson Siebatcheu: 2+ Shots on Target", + "handicap": "1.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:46:41+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:44:06+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.350", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.615", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.000", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.100", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.100", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:46:47+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:46:32+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:46:47+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:46:32+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:46:54+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:46:19+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "3.750", + "name": "2", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.250", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.375", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:46:54+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:46:19+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "3.750", + "name": "2", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.250", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.375", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:48:58+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289262", + "FI": "174219002", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:45:03+03:00", + "Odds": [ + { + "id": "806670446", + "odds": "13.000", + "name": "Tani Oluwaseyi", + "handicap": "" + }, + { + "id": "806655131", + "odds": "9.500", + "name": "Minnesota United 2-1", + "handicap": "" + }, + { + "id": "714859773", + "odds": "1.727", + "name": "FT Result: Minnesota United", + "handicap": "" + }, + { + "id": "812331324", + "odds": "1.800", + "name": "Kelvin Yeboah: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812331345", + "odds": "2.375", + "name": "Tani Oluwaseyi: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806655293", + "odds": "2.050", + "name": "Draw or Austin FC", + "handicap": "" + }, + { + "id": "812335148", + "odds": "1.571", + "name": "Myrto Uzuni: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812334820", + "odds": "1.571", + "name": "Brandon Vazquez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "827362447", + "odds": "1.533", + "name": "Over 4 Corners for Minnesota United", + "handicap": "4" + }, + { + "id": "827362563", + "odds": "2.200", + "name": "Over 4 Corners for Austin FC", + "handicap": "4" + }, + { + "id": "806655241", + "odds": "1.950", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "806655104", + "odds": "2.625", + "name": "HT: Minnesota United \u2013 FT: Minnesota United", + "handicap": "" + }, + { + "id": "827360459", + "odds": "1.615", + "name": "Most Corners: Minnesota United", + "handicap": "" + }, + { + "id": "806963379", + "odds": "1.800", + "name": "Kelvin Yeboah to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:49:04+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289261", + "FI": "174219004", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:44:43+03:00", + "Odds": [ + { + "id": "806742909", + "odds": "12.000", + "name": "Joao Klauss", + "handicap": "" + }, + { + "id": "806741536", + "odds": "8.500", + "name": "Darren Yapi", + "handicap": "" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812508432", + "odds": "3.000", + "name": "Kevin Cabral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806733943", + "odds": "1.909", + "name": "Draw or St. Louis City SC", + "handicap": "" + }, + { + "id": "812362704", + "odds": "1.444", + "name": "Cedric Teuchert: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812362834", + "odds": "1.500", + "name": "Marcel Hartel: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812508349", + "odds": "3.250", + "name": "Cedric Teuchert: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806737965", + "odds": "1.600", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "827381382", + "odds": "1.250", + "name": "Over 3 Corners for Colorado Rapids", + "handicap": "3" + }, + { + "id": "807040642", + "odds": "2.100", + "name": "Darren Yapi to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:49:11+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289260", + "FI": "174219006", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:44:54+03:00", + "Odds": [ + { + "id": "806753712", + "odds": "8.500", + "name": "Brian White", + "handicap": "" + }, + { + "id": "806753521", + "odds": "7.000", + "name": "William Agada", + "handicap": "" + }, + { + "id": "714859829", + "odds": "2.500", + "name": "FT Result: Real Salt Lake", + "handicap": "" + }, + { + "id": "812514424", + "odds": "1.333", + "name": "William Agada: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812377943", + "odds": "1.400", + "name": "Diogo Goncalves: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859831", + "odds": "2.600", + "name": "FT Result: Vancouver Whitecaps", + "handicap": "" + }, + { + "id": "812380351", + "odds": "2.100", + "name": "Pedro Vite: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380265", + "odds": "2.750", + "name": "Brian White: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "827384577", + "odds": "1.666", + "name": "Over 4 Corners for Real Salt Lake", + "handicap": "4" + }, + { + "id": "827384725", + "odds": "1.909", + "name": "Over 4 Corners for Vancouver Whitecaps", + "handicap": "4" + }, + { + "id": "806747601", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "812377945", + "odds": "1.833", + "name": "Dominik Marczuk: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380239", + "odds": "2.250", + "name": "Ali Ahmed: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "806749654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:49:23+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:45:38+03:00", + "Odds": [ + { + "id": "810813006", + "odds": "8.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "810805461", + "odds": "12.000", + "name": "Atletico Madrid 2-0", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.950", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257779", + "odds": "2.750", + "name": "Antoine Griezmann: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257773", + "odds": "2.750", + "name": "Angel Correa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257791", + "odds": "1.833", + "name": "Conor Gallagher: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306498", + "odds": "1.400", + "name": "Antoine Griezmann: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "832763395", + "odds": "1.400", + "name": "Cristhian Stuani: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818254988", + "odds": "1.444", + "name": "Viktor Tsygankov: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:49:23+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:45:38+03:00", + "Odds": [ + { + "id": "810813006", + "odds": "8.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "810805461", + "odds": "12.000", + "name": "Atletico Madrid 2-0", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.950", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257779", + "odds": "2.750", + "name": "Antoine Griezmann: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257773", + "odds": "2.750", + "name": "Angel Correa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257791", + "odds": "1.833", + "name": "Conor Gallagher: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306498", + "odds": "1.400", + "name": "Antoine Griezmann: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "832763395", + "odds": "1.400", + "name": "Cristhian Stuani: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818254988", + "odds": "1.444", + "name": "Viktor Tsygankov: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:52:02+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822035", + "FI": "174588284", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:47:42+03:00", + "Odds": [ + { + "id": "820312223", + "odds": "3.400", + "name": "Duckens Nazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997827", + "odds": "1.500", + "name": "Gokdeniz Bayrakdar: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997755", + "odds": "1.666", + "name": "Alredo Fredy: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036662", + "odds": "1.950", + "name": "FT Result: Bodrum FK", + "handicap": "" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:52:02+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822035", + "FI": "174588284", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:47:42+03:00", + "Odds": [ + { + "id": "820312223", + "odds": "3.400", + "name": "Duckens Nazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997827", + "odds": "1.500", + "name": "Gokdeniz Bayrakdar: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997755", + "odds": "1.666", + "name": "Alredo Fredy: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036662", + "odds": "1.950", + "name": "FT Result: Bodrum FK", + "handicap": "" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:52:13+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822034", + "FI": "174588286", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:50:07+03:00", + "Odds": [ + { + "id": "820006660", + "odds": "1.571", + "name": "Mehmet Nayir: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036764", + "odds": "2.800", + "name": "FT Result: Konyaspor", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820321024", + "odds": "3.000", + "name": "Andraz Sporar: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036767", + "odds": "2.250", + "name": "FT Result: Alanyaspor", + "handicap": "" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820009298", + "odds": "1.666", + "name": "Eui-Jo Hwang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:52:13+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822034", + "FI": "174588286", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:50:07+03:00", + "Odds": [ + { + "id": "820006660", + "odds": "1.571", + "name": "Mehmet Nayir: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036764", + "odds": "2.800", + "name": "FT Result: Konyaspor", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820321024", + "odds": "3.000", + "name": "Andraz Sporar: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036767", + "odds": "2.250", + "name": "FT Result: Alanyaspor", + "handicap": "" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820009298", + "odds": "1.666", + "name": "Eui-Jo Hwang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:52:21+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8840198", + "FI": "174588288", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:48:34+03:00", + "Odds": [ + { + "id": "820021777", + "odds": "1.500", + "name": "Oleksandr Zubkov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036883", + "odds": "2.250", + "name": "FT Result: Trabzonspor", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820021638", + "odds": "1.727", + "name": "Anthony Nwakaeme: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820336294", + "odds": "3.400", + "name": "Landry Dimata: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036888", + "odds": "2.800", + "name": "FT Result: Samsunspor", + "handicap": "" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:52:21+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8840198", + "FI": "174588288", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:48:34+03:00", + "Odds": [ + { + "id": "820021777", + "odds": "1.500", + "name": "Oleksandr Zubkov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036883", + "odds": "2.250", + "name": "FT Result: Trabzonspor", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820021638", + "odds": "1.727", + "name": "Anthony Nwakaeme: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820336294", + "odds": "3.400", + "name": "Landry Dimata: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036888", + "odds": "2.800", + "name": "FT Result: Samsunspor", + "handicap": "" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:52:30+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982903", + "FI": "174588280", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:50:33+03:00", + "Odds": [ + { + "id": "820343994", + "odds": "1.300", + "name": "Ciro Immobile: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819945189", + "odds": "2.200", + "name": "Rafa Silva: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819945232", + "odds": "2.625", + "name": "Joao Mario: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819344587", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819348703", + "odds": "1.666", + "name": "Ciro Immobile to Score", + "handicap": "" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T15:52:30+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982903", + "FI": "174588280", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:50:33+03:00", + "Odds": [ + { + "id": "820343994", + "odds": "1.300", + "name": "Ciro Immobile: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819945189", + "odds": "2.200", + "name": "Rafa Silva: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819945232", + "odds": "2.625", + "name": "Joao Mario: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819344587", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819348703", + "odds": "1.666", + "name": "Ciro Immobile to Score", + "handicap": "" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:15:22+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977002", + "FI": "174206901", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:12:25+03:00", + "Odds": [ + { + "id": "810834176", + "odds": "13.000", + "name": "Valencia 2-1", + "handicap": "" + }, + { + "id": "810843474", + "odds": "7.000", + "name": "Hugo Duro", + "handicap": "" + }, + { + "id": "713504056", + "odds": "2.000", + "name": "FT Result: Real Betis", + "handicap": "" + }, + { + "id": "818142082", + "odds": "2.375", + "name": "Juan Hernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818142073", + "odds": "1.444", + "name": "Jesus Rodriguez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.500", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "818205392", + "odds": "1.300", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818145409", + "odds": "1.533", + "name": "Luis Rioja: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.500", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "810835604", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813193941", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "818142127", + "odds": "2.100", + "name": "Silva William Carvalho: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818205392", + "odds": "1.300", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810835604", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:15:32+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982904", + "FI": "174588290", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:11:22+03:00", + "Odds": [ + { + "id": "820264609", + "odds": "1.400", + "name": "Umut Bozok: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037000", + "odds": "1.900", + "name": "FT Result: Eyupspor", + "handicap": "" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820243702", + "odds": "1.444", + "name": "Emre Mor: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819301876", + "odds": "5.500", + "name": "Over 4 Goals", + "handicap": "4" + }, + { + "id": "820264669", + "odds": "3.400", + "name": "Adolfo Gaich: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037006", + "odds": "3.700", + "name": "FT Result: Antalyaspor", + "handicap": "" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:16:01+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8826418", + "FI": "174588296", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T15:51:38+03:00", + "Odds": [ + { + "id": "819956646", + "odds": "1.500", + "name": "Alexandru Maxim: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037294", + "odds": "2.600", + "name": "FT Result: Gaziantep FK", + "handicap": "" + }, + { + "id": "819311085", + "odds": "2.100", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819959543", + "odds": "2.375", + "name": "Joia Nuno Da Costa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037306", + "odds": "2.375", + "name": "FT Result: Kasimpasa", + "handicap": "" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820280304", + "odds": "1.363", + "name": "Aytac Kara: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819315041", + "odds": "3.750", + "name": "Over 4 Goals", + "handicap": "4" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:30:23+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977002", + "FI": "174206901", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:12:25+03:00", + "Odds": [ + { + "id": "810834176", + "odds": "13.000", + "name": "Valencia 2-1", + "handicap": "" + }, + { + "id": "810843474", + "odds": "7.000", + "name": "Hugo Duro", + "handicap": "" + }, + { + "id": "713504056", + "odds": "2.000", + "name": "FT Result: Real Betis", + "handicap": "" + }, + { + "id": "818142082", + "odds": "2.375", + "name": "Juan Hernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818142073", + "odds": "1.444", + "name": "Jesus Rodriguez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.500", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "818205392", + "odds": "1.300", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818145409", + "odds": "1.533", + "name": "Luis Rioja: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.500", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "810835604", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813193941", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "818142127", + "odds": "2.100", + "name": "Silva William Carvalho: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818205392", + "odds": "1.300", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810835604", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:30:28+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982904", + "FI": "174588290", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:29:56+03:00", + "Odds": [ + { + "id": "820264609", + "odds": "1.400", + "name": "Umut Bozok: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037000", + "odds": "1.900", + "name": "FT Result: Eyupspor", + "handicap": "" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820243702", + "odds": "1.444", + "name": "Emre Mor: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819301876", + "odds": "5.500", + "name": "Over 4 Goals", + "handicap": "4" + }, + { + "id": "820264669", + "odds": "3.400", + "name": "Adolfo Gaich: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037006", + "odds": "3.700", + "name": "FT Result: Antalyaspor", + "handicap": "" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:30:52+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8826418", + "FI": "174588296", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:30:30+03:00", + "Odds": [ + { + "id": "819956646", + "odds": "1.500", + "name": "Alexandru Maxim: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037294", + "odds": "2.600", + "name": "FT Result: Gaziantep FK", + "handicap": "" + }, + { + "id": "819311085", + "odds": "2.100", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819959543", + "odds": "2.375", + "name": "Joia Nuno Da Costa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037306", + "odds": "2.375", + "name": "FT Result: Kasimpasa", + "handicap": "" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820280304", + "odds": "1.363", + "name": "Aytac Kara: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819315041", + "odds": "3.750", + "name": "Over 4 Goals", + "handicap": "4" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:31:09+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:29:40+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "15.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "818234653", + "odds": "1.285", + "name": "Yan Diomande: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810816138", + "odds": "2.050", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "9.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:31:17+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:28:47+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "3.000", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:31:17+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:28:47+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "3.000", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:31:30+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9757324", + "FI": "172433912", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:29:08+03:00", + "Odds": [ + { + "id": "817868646", + "odds": "4.250", + "name": "Ousmane Dembele", + "handicap": "" + }, + { + "id": "467772639", + "odds": "8.000", + "name": "PSG 3-0", + "handicap": "" + }, + { + "id": "467774766", + "odds": "2.050", + "name": "PSG to win by 3+ Goals", + "handicap": "" + }, + { + "id": "818472444", + "odds": "1.800", + "name": "Bradley Barcola: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818472520", + "odds": "1.571", + "name": "Khvicha Kvaratskhelia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467775416", + "odds": "2.000", + "name": "PSG to Win Both Halves", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818524895", + "odds": "3.250", + "name": "Fabian Ruiz: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467772622", + "odds": "1.500", + "name": "HT: PSG \u2013 FT: PSG", + "handicap": "" + }, + { + "id": "818979031", + "odds": "1.055", + "name": "Most Shots on Target: PSG", + "handicap": "" + }, + { + "id": "818977802", + "odds": "1.533", + "name": "Most Cards: Reims", + "handicap": "" + }, + { + "id": "467772737", + "odds": "1.833", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "467773042", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818525451", + "odds": "10.000", + "name": "Theoson Siebatcheu: 2+ Shots on Target", + "handicap": "1.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:31:31+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:20:41+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.350", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.615", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.000", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.100", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.100", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:31:42+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:27:17+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:31:42+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:27:17+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:32:08+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:13:49+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "3.750", + "name": "2", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.250", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.375", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:32:08+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:13:49+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "3.750", + "name": "2", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.250", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "2.000", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.250", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.222", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.375", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:34:08+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289262", + "FI": "174219002", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:26:45+03:00", + "Odds": [ + { + "id": "806670446", + "odds": "13.000", + "name": "Tani Oluwaseyi", + "handicap": "" + }, + { + "id": "806655131", + "odds": "9.500", + "name": "Minnesota United 2-1", + "handicap": "" + }, + { + "id": "714859773", + "odds": "1.727", + "name": "FT Result: Minnesota United", + "handicap": "" + }, + { + "id": "812331324", + "odds": "1.800", + "name": "Kelvin Yeboah: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812331345", + "odds": "2.375", + "name": "Tani Oluwaseyi: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806655293", + "odds": "2.050", + "name": "Draw or Austin FC", + "handicap": "" + }, + { + "id": "812335148", + "odds": "1.571", + "name": "Myrto Uzuni: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812334820", + "odds": "1.571", + "name": "Brandon Vazquez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "827362447", + "odds": "1.533", + "name": "Over 4 Corners for Minnesota United", + "handicap": "4" + }, + { + "id": "827362563", + "odds": "2.200", + "name": "Over 4 Corners for Austin FC", + "handicap": "4" + }, + { + "id": "806655241", + "odds": "1.950", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "806655104", + "odds": "2.625", + "name": "HT: Minnesota United \u2013 FT: Minnesota United", + "handicap": "" + }, + { + "id": "827360459", + "odds": "1.615", + "name": "Most Corners: Minnesota United", + "handicap": "" + }, + { + "id": "806963379", + "odds": "1.800", + "name": "Kelvin Yeboah to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:34:16+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289261", + "FI": "174219004", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:25:37+03:00", + "Odds": [ + { + "id": "806742909", + "odds": "12.000", + "name": "Joao Klauss", + "handicap": "" + }, + { + "id": "806741536", + "odds": "8.500", + "name": "Darren Yapi", + "handicap": "" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812508432", + "odds": "3.000", + "name": "Kevin Cabral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806733943", + "odds": "1.909", + "name": "Draw or St. Louis City SC", + "handicap": "" + }, + { + "id": "812362704", + "odds": "1.444", + "name": "Cedric Teuchert: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812362834", + "odds": "1.500", + "name": "Marcel Hartel: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812508349", + "odds": "3.250", + "name": "Cedric Teuchert: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806737965", + "odds": "1.600", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "827381382", + "odds": "1.250", + "name": "Over 3 Corners for Colorado Rapids", + "handicap": "3" + }, + { + "id": "807040642", + "odds": "2.100", + "name": "Darren Yapi to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:34:19+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289260", + "FI": "174219006", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:24:46+03:00", + "Odds": [ + { + "id": "806753712", + "odds": "8.500", + "name": "Brian White", + "handicap": "" + }, + { + "id": "806753521", + "odds": "7.000", + "name": "William Agada", + "handicap": "" + }, + { + "id": "714859829", + "odds": "2.500", + "name": "FT Result: Real Salt Lake", + "handicap": "" + }, + { + "id": "812514424", + "odds": "1.333", + "name": "William Agada: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812377943", + "odds": "1.400", + "name": "Diogo Goncalves: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859831", + "odds": "2.600", + "name": "FT Result: Vancouver Whitecaps", + "handicap": "" + }, + { + "id": "812380351", + "odds": "2.100", + "name": "Pedro Vite: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380265", + "odds": "2.750", + "name": "Brian White: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "827384577", + "odds": "1.666", + "name": "Over 4 Corners for Real Salt Lake", + "handicap": "4" + }, + { + "id": "827384725", + "odds": "1.909", + "name": "Over 4 Corners for Vancouver Whitecaps", + "handicap": "4" + }, + { + "id": "806747601", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "812377945", + "odds": "1.833", + "name": "Dominik Marczuk: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380239", + "odds": "2.250", + "name": "Ali Ahmed: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "806749654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:34:45+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:34:13+03:00", + "Odds": [ + { + "id": "810813006", + "odds": "8.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "810805461", + "odds": "12.000", + "name": "Atletico Madrid 2-0", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.950", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257779", + "odds": "2.750", + "name": "Antoine Griezmann: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257773", + "odds": "2.750", + "name": "Angel Correa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257791", + "odds": "1.833", + "name": "Conor Gallagher: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306498", + "odds": "1.400", + "name": "Antoine Griezmann: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "832763395", + "odds": "1.400", + "name": "Cristhian Stuani: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818254988", + "odds": "1.444", + "name": "Viktor Tsygankov: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:34:45+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:34:13+03:00", + "Odds": [ + { + "id": "810813006", + "odds": "8.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "810805461", + "odds": "12.000", + "name": "Atletico Madrid 2-0", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.950", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257779", + "odds": "2.750", + "name": "Antoine Griezmann: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257773", + "odds": "2.750", + "name": "Angel Correa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257791", + "odds": "1.833", + "name": "Conor Gallagher: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306498", + "odds": "1.400", + "name": "Antoine Griezmann: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "832763395", + "odds": "1.400", + "name": "Cristhian Stuani: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818254988", + "odds": "1.444", + "name": "Viktor Tsygankov: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:36:39+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822035", + "FI": "174588284", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:36:29+03:00", + "Odds": [ + { + "id": "820312223", + "odds": "3.400", + "name": "Duckens Nazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997827", + "odds": "1.500", + "name": "Gokdeniz Bayrakdar: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997755", + "odds": "1.666", + "name": "Alredo Fredy: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036662", + "odds": "1.950", + "name": "FT Result: Bodrum FK", + "handicap": "" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:36:39+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822035", + "FI": "174588284", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:36:29+03:00", + "Odds": [ + { + "id": "820312223", + "odds": "3.400", + "name": "Duckens Nazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997827", + "odds": "1.500", + "name": "Gokdeniz Bayrakdar: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997755", + "odds": "1.666", + "name": "Alredo Fredy: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036662", + "odds": "1.950", + "name": "FT Result: Bodrum FK", + "handicap": "" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:36:46+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822034", + "FI": "174588286", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:22:39+03:00", + "Odds": [ + { + "id": "820006660", + "odds": "1.571", + "name": "Mehmet Nayir: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036764", + "odds": "2.800", + "name": "FT Result: Konyaspor", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820321024", + "odds": "3.000", + "name": "Andraz Sporar: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036767", + "odds": "2.250", + "name": "FT Result: Alanyaspor", + "handicap": "" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820009298", + "odds": "1.666", + "name": "Eui-Jo Hwang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:36:46+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822034", + "FI": "174588286", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:22:39+03:00", + "Odds": [ + { + "id": "820006660", + "odds": "1.571", + "name": "Mehmet Nayir: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036764", + "odds": "2.800", + "name": "FT Result: Konyaspor", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820321024", + "odds": "3.000", + "name": "Andraz Sporar: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036767", + "odds": "2.250", + "name": "FT Result: Alanyaspor", + "handicap": "" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820009298", + "odds": "1.666", + "name": "Eui-Jo Hwang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:36:56+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8840198", + "FI": "174588288", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:30:30+03:00", + "Odds": [ + { + "id": "820021777", + "odds": "1.500", + "name": "Oleksandr Zubkov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036883", + "odds": "2.250", + "name": "FT Result: Trabzonspor", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820021638", + "odds": "1.727", + "name": "Anthony Nwakaeme: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820336294", + "odds": "3.400", + "name": "Landry Dimata: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036888", + "odds": "2.800", + "name": "FT Result: Samsunspor", + "handicap": "" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:36:56+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8840198", + "FI": "174588288", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:30:30+03:00", + "Odds": [ + { + "id": "820021777", + "odds": "1.500", + "name": "Oleksandr Zubkov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036883", + "odds": "2.250", + "name": "FT Result: Trabzonspor", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820021638", + "odds": "1.727", + "name": "Anthony Nwakaeme: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820336294", + "odds": "3.400", + "name": "Landry Dimata: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036888", + "odds": "2.800", + "name": "FT Result: Samsunspor", + "handicap": "" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:36:57+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982903", + "FI": "174588280", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:34:14+03:00", + "Odds": [ + { + "id": "820343994", + "odds": "1.300", + "name": "Ciro Immobile: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819945189", + "odds": "2.200", + "name": "Rafa Silva: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819945232", + "odds": "2.625", + "name": "Joao Mario: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819344587", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819348703", + "odds": "1.666", + "name": "Ciro Immobile to Score", + "handicap": "" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:36:57+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982903", + "FI": "174588280", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:34:14+03:00", + "Odds": [ + { + "id": "820343994", + "odds": "1.300", + "name": "Ciro Immobile: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819945189", + "odds": "2.200", + "name": "Rafa Silva: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819945232", + "odds": "2.625", + "name": "Joao Mario: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819344587", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819348703", + "odds": "1.666", + "name": "Ciro Immobile to Score", + "handicap": "" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:37:48+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977001", + "FI": "174206898", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:28:41+03:00", + "Odds": [ + { + "id": "810769529", + "odds": "6.500", + "name": "Robert Lewandowski", + "handicap": "" + }, + { + "id": "810770215", + "odds": "6.500", + "name": "Lamine Yamal", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.100", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283162", + "odds": "1.833", + "name": "Robert Lewandowski: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810767797", + "odds": "1.909", + "name": "Robert Lewandowski to Score", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.100", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283150", + "odds": "2.000", + "name": "Raphinha: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810774636", + "odds": "1.571", + "name": "Lamine Yamal to Score or Assist", + "handicap": "" + }, + { + "id": "713503825", + "odds": "3.200", + "name": "FT Result: Athletic Bilbao", + "handicap": "" + }, + { + "id": "810774497", + "odds": "2.200", + "name": "Oihan Sancet to Score or Assist", + "handicap": "" + }, + { + "id": "813208230", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "827038436", + "odds": "1.400", + "name": "Over 3 Corners for Athletic Bilbao", + "handicap": "3" + }, + { + "id": "827038961", + "odds": "1.444", + "name": "Over 3 Corners for Barcelona", + "handicap": "3" + }, + { + "id": "810764064", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:37:54+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9288599", + "FI": "174219011", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:33:02+03:00", + "Odds": [ + { + "id": "806795106", + "odds": "13.000", + "name": "Alonso Martinez", + "handicap": "" + }, + { + "id": "806793895", + "odds": "15.000", + "name": "Hugo Cuypers", + "handicap": "" + }, + { + "id": "714860035", + "odds": "1.950", + "name": "FT Result: New York City FC", + "handicap": "" + }, + { + "id": "812414097", + "odds": "1.500", + "name": "Julian Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812414089", + "odds": "1.727", + "name": "Hannes Wolf: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714860037", + "odds": "3.600", + "name": "FT Result: Chicago Fire", + "handicap": "" + }, + { + "id": "812415639", + "odds": "1.615", + "name": "Brian Gutierrez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812415683", + "odds": "1.571", + "name": "Jonathan Bamba: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812875983", + "odds": "1.500", + "name": "Over 8 Corners", + "handicap": "8.0" + }, + { + "id": "806787411", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "806786217", + "odds": "2.375", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "714860035", + "odds": "1.950", + "name": "FT Result: New York City FC", + "handicap": "" + }, + { + "id": "806792787", + "odds": "3.100", + "name": "Julian Fernandez to Score", + "handicap": "" + }, + { + "id": "827388794", + "odds": "1.615", + "name": "Most Corners: New York City FC", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:37:56+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289259", + "FI": "174219015", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:19:23+03:00", + "Odds": [ + { + "id": "806822225", + "odds": "15.000", + "name": "Emmanuel Latte Lath", + "handicap": "" + }, + { + "id": "806820954", + "odds": "9.000", + "name": "Ferreira Evander", + "handicap": "" + }, + { + "id": "714860470", + "odds": "2.400", + "name": "FT Result: Atlanta United", + "handicap": "" + }, + { + "id": "812421030", + "odds": "1.571", + "name": "Miguel Almiron: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812420959", + "odds": "1.444", + "name": "Aleksey Miranchuk: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714860473", + "odds": "2.700", + "name": "FT Result: FC Cincinnati", + "handicap": "" + }, + { + "id": "812886421", + "odds": "1.363", + "name": "Luca Orellano: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812886731", + "odds": "1.285", + "name": "Ahoueke Denkey: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812885974", + "odds": "1.500", + "name": "Over 8 Corners", + "handicap": "8.0" + }, + { + "id": "806814209", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "806812506", + "odds": "2.500", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "812424314", + "odds": "2.625", + "name": "Luca Orellano: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812887182", + "odds": "3.000", + "name": "Saba Lobzhanidze: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806814209", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:38:03+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8826752", + "FI": "174588282", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:35:05+03:00", + "Odds": [ + { + "id": "820350480", + "odds": "1.300", + "name": "Youssef En Nesyri: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "820042485", + "odds": "1.571", + "name": "Conceicao Talisca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036542", + "odds": "1.222", + "name": "FT Result: Fenerbahce", + "handicap": "" + }, + { + "id": "819432775", + "odds": "1.500", + "name": "Youssef En Nesyri to Score", + "handicap": "" + }, + { + "id": "819430970", + "odds": "2.100", + "name": "Fenerbahce \u0026 Yes", + "handicap": "" + }, + { + "id": "819428625", + "odds": "2.250", + "name": "Over 4 Goals", + "handicap": "4" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:38:08+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9929184", + "FI": "174363978", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:36:40+03:00", + "Odds": [ + { + "id": "774550908", + "odds": "21.000", + "name": "Antony", + "handicap": "" + }, + { + "id": "774550887", + "odds": "15.000", + "name": "Nicolas Jackson", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734591996", + "odds": "1.833", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "774549605", + "odds": "2.300", + "name": "Cole Palmer to Score", + "handicap": "" + }, + { + "id": "774549558", + "odds": "2.875", + "name": "Nicolas Jackson to Score", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734590525", + "odds": "2.000", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:38:32+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9924545", + "FI": "174307725", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:33:20+03:00", + "Odds": [ + { + "id": "726811888", + "odds": "13.000", + "name": "Lautaro Martinez", + "handicap": "" + }, + { + "id": "726811982", + "odds": "11.000", + "name": "Khvicha Kvaratskhelia", + "handicap": "" + }, + { + "id": "726816128", + "odds": "1.615", + "name": "PSG to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811208", + "odds": "3.250", + "name": "Bradley Barcola to Score", + "handicap": "" + }, + { + "id": "726806476", + "odds": "1.909", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "726816130", + "odds": "2.300", + "name": "Inter Milan to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811216", + "odds": "3.250", + "name": "Marcus Thuram to Score", + "handicap": "" + }, + { + "id": "726807442", + "odds": "1.750", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "726816349", + "odds": "2.300", + "name": "Lautaro Martinez to Score or Assist", + "handicap": "" + }, + { + "id": "726816313", + "odds": "2.000", + "name": "Khvicha Kvaratskhelia to Score or Assist", + "handicap": "" + }, + { + "id": "726816123", + "odds": "2.250", + "name": "PSG to Win in 90 Mins", + "handicap": "" + }, + { + "id": "726807627", + "odds": "3.400", + "name": "PSG to Score in Both Halves", + "handicap": "" + }, + { + "id": "726811207", + "odds": "4.000", + "name": "Desire Doue to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:45:23+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977002", + "FI": "174206901", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:42:21+03:00", + "Odds": [ + { + "id": "810834176", + "odds": "13.000", + "name": "Valencia 2-1", + "handicap": "" + }, + { + "id": "810843474", + "odds": "7.000", + "name": "Hugo Duro", + "handicap": "" + }, + { + "id": "713504056", + "odds": "2.000", + "name": "FT Result: Real Betis", + "handicap": "" + }, + { + "id": "818142082", + "odds": "2.375", + "name": "Juan Hernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818142073", + "odds": "1.444", + "name": "Jesus Rodriguez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.500", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "818205392", + "odds": "1.300", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818145409", + "odds": "1.533", + "name": "Luis Rioja: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.500", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "810835604", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813193941", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "818142127", + "odds": "2.100", + "name": "Silva William Carvalho: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818205392", + "odds": "1.300", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810835604", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:45:26+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982904", + "FI": "174588290", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:36:30+03:00", + "Odds": [ + { + "id": "820264609", + "odds": "1.400", + "name": "Umut Bozok: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037000", + "odds": "1.900", + "name": "FT Result: Eyupspor", + "handicap": "" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820243702", + "odds": "1.444", + "name": "Emre Mor: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819301876", + "odds": "5.500", + "name": "Over 4 Goals", + "handicap": "4" + }, + { + "id": "820264669", + "odds": "3.400", + "name": "Adolfo Gaich: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037006", + "odds": "3.700", + "name": "FT Result: Antalyaspor", + "handicap": "" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:46:07+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8826418", + "FI": "174588296", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:44:59+03:00", + "Odds": [ + { + "id": "819956646", + "odds": "1.500", + "name": "Alexandru Maxim: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037294", + "odds": "2.600", + "name": "FT Result: Gaziantep FK", + "handicap": "" + }, + { + "id": "819311085", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819959543", + "odds": "2.375", + "name": "Joia Nuno Da Costa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037306", + "odds": "2.375", + "name": "FT Result: Kasimpasa", + "handicap": "" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820280304", + "odds": "1.363", + "name": "Aytac Kara: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819315041", + "odds": "3.750", + "name": "Over 4 Goals", + "handicap": "4" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:46:24+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:45:50+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "15.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "818234653", + "odds": "1.285", + "name": "Yan Diomande: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810816138", + "odds": "2.050", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "9.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:46:28+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:41:18+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "3.000", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:46:28+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:41:18+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "3.000", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T16:46:47+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9757324", + "FI": "172433912", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:42:57+03:00", + "Odds": [ + { + "id": "817868646", + "odds": "4.250", + "name": "Ousmane Dembele", + "handicap": "" + }, + { + "id": "467772639", + "odds": "8.000", + "name": "PSG 3-0", + "handicap": "" + }, + { + "id": "467774766", + "odds": "2.050", + "name": "PSG to win by 3+ Goals", + "handicap": "" + }, + { + "id": "818472444", + "odds": "1.800", + "name": "Bradley Barcola: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818472520", + "odds": "1.571", + "name": "Khvicha Kvaratskhelia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467775416", + "odds": "2.000", + "name": "PSG to Win Both Halves", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818524895", + "odds": "3.250", + "name": "Fabian Ruiz: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467772622", + "odds": "1.500", + "name": "HT: PSG \u2013 FT: PSG", + "handicap": "" + }, + { + "id": "818979031", + "odds": "1.055", + "name": "Most Shots on Target: PSG", + "handicap": "" + }, + { + "id": "818977802", + "odds": "1.533", + "name": "Most Cards: Reims", + "handicap": "" + }, + { + "id": "467772737", + "odds": "1.833", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "467773042", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818525451", + "odds": "10.000", + "name": "Theoson Siebatcheu: 2+ Shots on Target", + "handicap": "1.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:00:34+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982904", + "FI": "174588290", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:36:30+03:00", + "Odds": [ + { + "id": "820264609", + "odds": "1.400", + "name": "Umut Bozok: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037000", + "odds": "1.900", + "name": "FT Result: Eyupspor", + "handicap": "" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820243702", + "odds": "1.444", + "name": "Emre Mor: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819301876", + "odds": "5.500", + "name": "Over 4 Goals", + "handicap": "4" + }, + { + "id": "820264669", + "odds": "3.400", + "name": "Adolfo Gaich: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037006", + "odds": "3.700", + "name": "FT Result: Antalyaspor", + "handicap": "" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:01:03+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8826418", + "FI": "174588296", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:58:52+03:00", + "Odds": [ + { + "id": "819956646", + "odds": "1.500", + "name": "Alexandru Maxim: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037294", + "odds": "2.600", + "name": "FT Result: Gaziantep FK", + "handicap": "" + }, + { + "id": "819311085", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819959543", + "odds": "2.375", + "name": "Joia Nuno Da Costa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037306", + "odds": "2.375", + "name": "FT Result: Kasimpasa", + "handicap": "" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820280304", + "odds": "1.363", + "name": "Aytac Kara: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819315041", + "odds": "3.750", + "name": "Over 4 Goals", + "handicap": "4" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:01:20+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:57:58+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "15.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "818234653", + "odds": "1.285", + "name": "Yan Diomande: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810816138", + "odds": "2.050", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "9.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:01:29+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:57:20+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "3.000", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:01:29+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:57:20+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "3.000", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:01:41+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9757324", + "FI": "172433912", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:57:16+03:00", + "Odds": [ + { + "id": "817868646", + "odds": "4.250", + "name": "Ousmane Dembele", + "handicap": "" + }, + { + "id": "467772639", + "odds": "8.000", + "name": "PSG 3-0", + "handicap": "" + }, + { + "id": "467774766", + "odds": "2.050", + "name": "PSG to win by 3+ Goals", + "handicap": "" + }, + { + "id": "818472444", + "odds": "1.800", + "name": "Bradley Barcola: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818472520", + "odds": "1.571", + "name": "Khvicha Kvaratskhelia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467775416", + "odds": "2.000", + "name": "PSG to Win Both Halves", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818524895", + "odds": "3.250", + "name": "Fabian Ruiz: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467772622", + "odds": "1.500", + "name": "HT: PSG \u2013 FT: PSG", + "handicap": "" + }, + { + "id": "818979031", + "odds": "1.055", + "name": "Most Shots on Target: PSG", + "handicap": "" + }, + { + "id": "818977802", + "odds": "1.533", + "name": "Most Cards: Reims", + "handicap": "" + }, + { + "id": "467772737", + "odds": "1.833", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "467773042", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818525451", + "odds": "10.000", + "name": "Theoson Siebatcheu: 2+ Shots on Target", + "handicap": "1.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:01:54+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:01:41+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.350", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.615", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.000", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.100", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.100", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:02:04+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:49:19+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:02:04+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:49:19+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:02:13+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:50:23+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "3.750", + "name": "2", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.200", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "1.909", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.000", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.200", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:02:13+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:50:23+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "3.750", + "name": "2", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.200", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "1.909", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.000", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.200", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:03:30+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289262", + "FI": "174219002", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:56:42+03:00", + "Odds": [ + { + "id": "806670446", + "odds": "13.000", + "name": "Tani Oluwaseyi", + "handicap": "" + }, + { + "id": "806655131", + "odds": "9.500", + "name": "Minnesota United 2-1", + "handicap": "" + }, + { + "id": "714859773", + "odds": "1.727", + "name": "FT Result: Minnesota United", + "handicap": "" + }, + { + "id": "812331324", + "odds": "1.800", + "name": "Kelvin Yeboah: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812331345", + "odds": "2.375", + "name": "Tani Oluwaseyi: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806655293", + "odds": "2.050", + "name": "Draw or Austin FC", + "handicap": "" + }, + { + "id": "812335148", + "odds": "1.571", + "name": "Myrto Uzuni: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812334820", + "odds": "1.571", + "name": "Brandon Vazquez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "827362447", + "odds": "1.533", + "name": "Over 4 Corners for Minnesota United", + "handicap": "4" + }, + { + "id": "827362563", + "odds": "2.200", + "name": "Over 4 Corners for Austin FC", + "handicap": "4" + }, + { + "id": "806655241", + "odds": "1.950", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "806655104", + "odds": "2.625", + "name": "HT: Minnesota United \u2013 FT: Minnesota United", + "handicap": "" + }, + { + "id": "827360459", + "odds": "1.615", + "name": "Most Corners: Minnesota United", + "handicap": "" + }, + { + "id": "806963379", + "odds": "1.800", + "name": "Kelvin Yeboah to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:04:04+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289261", + "FI": "174219004", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:03:34+03:00", + "Odds": [ + { + "id": "806742909", + "odds": "12.000", + "name": "Joao Klauss", + "handicap": "" + }, + { + "id": "806741536", + "odds": "8.500", + "name": "Darren Yapi", + "handicap": "" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812508432", + "odds": "3.000", + "name": "Kevin Cabral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806733943", + "odds": "1.909", + "name": "Draw or St. Louis City SC", + "handicap": "" + }, + { + "id": "812362704", + "odds": "1.444", + "name": "Cedric Teuchert: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812362834", + "odds": "1.500", + "name": "Marcel Hartel: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812508349", + "odds": "3.250", + "name": "Cedric Teuchert: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806737965", + "odds": "1.600", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "827381382", + "odds": "1.250", + "name": "Over 3 Corners for Colorado Rapids", + "handicap": "3" + }, + { + "id": "807040642", + "odds": "2.100", + "name": "Darren Yapi to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:04:17+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289260", + "FI": "174219006", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:00:00+03:00", + "Odds": [ + { + "id": "806753712", + "odds": "8.500", + "name": "Brian White", + "handicap": "" + }, + { + "id": "806753521", + "odds": "7.000", + "name": "William Agada", + "handicap": "" + }, + { + "id": "714859829", + "odds": "2.500", + "name": "FT Result: Real Salt Lake", + "handicap": "" + }, + { + "id": "812514424", + "odds": "1.333", + "name": "William Agada: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812377943", + "odds": "1.400", + "name": "Diogo Goncalves: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859831", + "odds": "2.600", + "name": "FT Result: Vancouver Whitecaps", + "handicap": "" + }, + { + "id": "812380351", + "odds": "2.100", + "name": "Pedro Vite: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380265", + "odds": "2.750", + "name": "Brian White: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "827384577", + "odds": "1.666", + "name": "Over 4 Corners for Real Salt Lake", + "handicap": "4" + }, + { + "id": "827384725", + "odds": "1.909", + "name": "Over 4 Corners for Vancouver Whitecaps", + "handicap": "4" + }, + { + "id": "806747601", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "812377945", + "odds": "1.833", + "name": "Dominik Marczuk: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380239", + "odds": "2.250", + "name": "Ali Ahmed: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "806749654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:04:37+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:02:01+03:00", + "Odds": [ + { + "id": "810813006", + "odds": "8.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "810805461", + "odds": "12.000", + "name": "Atletico Madrid 2-0", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.950", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257779", + "odds": "2.750", + "name": "Antoine Griezmann: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257773", + "odds": "2.750", + "name": "Angel Correa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257791", + "odds": "1.833", + "name": "Conor Gallagher: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306498", + "odds": "1.400", + "name": "Antoine Griezmann: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "832763395", + "odds": "1.400", + "name": "Cristhian Stuani: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818254988", + "odds": "1.444", + "name": "Viktor Tsygankov: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:04:37+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:02:01+03:00", + "Odds": [ + { + "id": "810813006", + "odds": "8.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "810805461", + "odds": "12.000", + "name": "Atletico Madrid 2-0", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.950", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257779", + "odds": "2.750", + "name": "Antoine Griezmann: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257773", + "odds": "2.750", + "name": "Angel Correa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257791", + "odds": "1.833", + "name": "Conor Gallagher: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306498", + "odds": "1.400", + "name": "Antoine Griezmann: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "832763395", + "odds": "1.400", + "name": "Cristhian Stuani: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818254988", + "odds": "1.444", + "name": "Viktor Tsygankov: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:06:24+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822035", + "FI": "174588284", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:02:15+03:00", + "Odds": [ + { + "id": "820312223", + "odds": "3.400", + "name": "Duckens Nazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997827", + "odds": "1.500", + "name": "Gokdeniz Bayrakdar: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997755", + "odds": "1.666", + "name": "Alredo Fredy: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036662", + "odds": "1.950", + "name": "FT Result: Bodrum FK", + "handicap": "" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:06:24+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822035", + "FI": "174588284", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:02:15+03:00", + "Odds": [ + { + "id": "820312223", + "odds": "3.400", + "name": "Duckens Nazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997827", + "odds": "1.500", + "name": "Gokdeniz Bayrakdar: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997755", + "odds": "1.666", + "name": "Alredo Fredy: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036662", + "odds": "1.950", + "name": "FT Result: Bodrum FK", + "handicap": "" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:06:31+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822034", + "FI": "174588286", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:05:59+03:00", + "Odds": [ + { + "id": "820006660", + "odds": "1.571", + "name": "Mehmet Nayir: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036764", + "odds": "2.800", + "name": "FT Result: Konyaspor", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820321024", + "odds": "3.000", + "name": "Andraz Sporar: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036767", + "odds": "2.250", + "name": "FT Result: Alanyaspor", + "handicap": "" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820009298", + "odds": "1.666", + "name": "Eui-Jo Hwang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:06:31+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822034", + "FI": "174588286", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:05:59+03:00", + "Odds": [ + { + "id": "820006660", + "odds": "1.571", + "name": "Mehmet Nayir: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036764", + "odds": "2.800", + "name": "FT Result: Konyaspor", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820321024", + "odds": "3.000", + "name": "Andraz Sporar: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036767", + "odds": "2.250", + "name": "FT Result: Alanyaspor", + "handicap": "" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820009298", + "odds": "1.666", + "name": "Eui-Jo Hwang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:06:49+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8840198", + "FI": "174588288", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:56:58+03:00", + "Odds": [ + { + "id": "820021777", + "odds": "1.500", + "name": "Oleksandr Zubkov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036883", + "odds": "2.250", + "name": "FT Result: Trabzonspor", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820021638", + "odds": "1.727", + "name": "Anthony Nwakaeme: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820336294", + "odds": "3.400", + "name": "Landry Dimata: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036888", + "odds": "2.800", + "name": "FT Result: Samsunspor", + "handicap": "" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:06:49+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8840198", + "FI": "174588288", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T16:56:58+03:00", + "Odds": [ + { + "id": "820021777", + "odds": "1.500", + "name": "Oleksandr Zubkov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036883", + "odds": "2.250", + "name": "FT Result: Trabzonspor", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820021638", + "odds": "1.727", + "name": "Anthony Nwakaeme: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820336294", + "odds": "3.400", + "name": "Landry Dimata: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036888", + "odds": "2.800", + "name": "FT Result: Samsunspor", + "handicap": "" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:07:09+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982903", + "FI": "174588280", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:02:44+03:00", + "Odds": [ + { + "id": "820343994", + "odds": "1.300", + "name": "Ciro Immobile: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819945189", + "odds": "2.200", + "name": "Rafa Silva: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819945232", + "odds": "2.625", + "name": "Joao Mario: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819344587", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819348703", + "odds": "1.666", + "name": "Ciro Immobile to Score", + "handicap": "" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:07:09+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982903", + "FI": "174588280", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:02:44+03:00", + "Odds": [ + { + "id": "820343994", + "odds": "1.300", + "name": "Ciro Immobile: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819945189", + "odds": "2.200", + "name": "Rafa Silva: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819945232", + "odds": "2.625", + "name": "Joao Mario: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819344587", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819348703", + "odds": "1.666", + "name": "Ciro Immobile to Score", + "handicap": "" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:08:06+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977001", + "FI": "174206898", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:05:47+03:00", + "Odds": [ + { + "id": "810769529", + "odds": "6.500", + "name": "Robert Lewandowski", + "handicap": "" + }, + { + "id": "810770215", + "odds": "6.500", + "name": "Lamine Yamal", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.100", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283162", + "odds": "1.833", + "name": "Robert Lewandowski: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810767797", + "odds": "1.909", + "name": "Robert Lewandowski to Score", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.100", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283150", + "odds": "2.000", + "name": "Raphinha: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810774636", + "odds": "1.571", + "name": "Lamine Yamal to Score or Assist", + "handicap": "" + }, + { + "id": "713503825", + "odds": "3.200", + "name": "FT Result: Athletic Bilbao", + "handicap": "" + }, + { + "id": "810774497", + "odds": "2.200", + "name": "Oihan Sancet to Score or Assist", + "handicap": "" + }, + { + "id": "813208230", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "827038436", + "odds": "1.400", + "name": "Over 3 Corners for Athletic Bilbao", + "handicap": "3" + }, + { + "id": "827038961", + "odds": "1.444", + "name": "Over 3 Corners for Barcelona", + "handicap": "3" + }, + { + "id": "810764064", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:08:24+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9288599", + "FI": "174219011", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:06:10+03:00", + "Odds": [ + { + "id": "806795106", + "odds": "13.000", + "name": "Alonso Martinez", + "handicap": "" + }, + { + "id": "806793895", + "odds": "15.000", + "name": "Hugo Cuypers", + "handicap": "" + }, + { + "id": "714860035", + "odds": "1.950", + "name": "FT Result: New York City FC", + "handicap": "" + }, + { + "id": "812414097", + "odds": "1.500", + "name": "Julian Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812414089", + "odds": "1.727", + "name": "Hannes Wolf: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714860037", + "odds": "3.600", + "name": "FT Result: Chicago Fire", + "handicap": "" + }, + { + "id": "812415639", + "odds": "1.615", + "name": "Brian Gutierrez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812415683", + "odds": "1.571", + "name": "Jonathan Bamba: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812875983", + "odds": "1.500", + "name": "Over 8 Corners", + "handicap": "8.0" + }, + { + "id": "806787411", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "806786217", + "odds": "2.375", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "714860035", + "odds": "1.950", + "name": "FT Result: New York City FC", + "handicap": "" + }, + { + "id": "806792787", + "odds": "3.100", + "name": "Julian Fernandez to Score", + "handicap": "" + }, + { + "id": "827388794", + "odds": "1.615", + "name": "Most Corners: New York City FC", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:08:30+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289259", + "FI": "174219015", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:08:07+03:00", + "Odds": [ + { + "id": "806822225", + "odds": "15.000", + "name": "Emmanuel Latte Lath", + "handicap": "" + }, + { + "id": "806820954", + "odds": "9.000", + "name": "Ferreira Evander", + "handicap": "" + }, + { + "id": "714860470", + "odds": "2.400", + "name": "FT Result: Atlanta United", + "handicap": "" + }, + { + "id": "812421030", + "odds": "1.571", + "name": "Miguel Almiron: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812420959", + "odds": "1.444", + "name": "Aleksey Miranchuk: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714860473", + "odds": "2.700", + "name": "FT Result: FC Cincinnati", + "handicap": "" + }, + { + "id": "812886421", + "odds": "1.363", + "name": "Luca Orellano: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812886731", + "odds": "1.285", + "name": "Ahoueke Denkey: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812885974", + "odds": "1.500", + "name": "Over 8 Corners", + "handicap": "8.0" + }, + { + "id": "806814209", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "806812506", + "odds": "2.500", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "812424314", + "odds": "2.625", + "name": "Luca Orellano: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812887182", + "odds": "3.000", + "name": "Saba Lobzhanidze: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806814209", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:08:48+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8826752", + "FI": "174588282", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:06:09+03:00", + "Odds": [ + { + "id": "820350480", + "odds": "1.300", + "name": "Youssef En Nesyri: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "820042485", + "odds": "1.571", + "name": "Conceicao Talisca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036542", + "odds": "1.222", + "name": "FT Result: Fenerbahce", + "handicap": "" + }, + { + "id": "819432775", + "odds": "1.500", + "name": "Youssef En Nesyri to Score", + "handicap": "" + }, + { + "id": "819430970", + "odds": "2.100", + "name": "Fenerbahce \u0026 Yes", + "handicap": "" + }, + { + "id": "819428625", + "odds": "2.250", + "name": "Over 4 Goals", + "handicap": "4" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:08:51+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9929184", + "FI": "174363978", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:08:38+03:00", + "Odds": [ + { + "id": "774550908", + "odds": "21.000", + "name": "Antony", + "handicap": "" + }, + { + "id": "774550887", + "odds": "15.000", + "name": "Nicolas Jackson", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734591996", + "odds": "1.833", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "774549605", + "odds": "2.300", + "name": "Cole Palmer to Score", + "handicap": "" + }, + { + "id": "774549558", + "odds": "2.875", + "name": "Nicolas Jackson to Score", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734590525", + "odds": "2.000", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:09:16+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9924545", + "FI": "174307725", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:03:03+03:00", + "Odds": [ + { + "id": "726811888", + "odds": "13.000", + "name": "Lautaro Martinez", + "handicap": "" + }, + { + "id": "726811982", + "odds": "11.000", + "name": "Khvicha Kvaratskhelia", + "handicap": "" + }, + { + "id": "726816128", + "odds": "1.615", + "name": "PSG to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811208", + "odds": "3.250", + "name": "Bradley Barcola to Score", + "handicap": "" + }, + { + "id": "726806476", + "odds": "1.909", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "726816130", + "odds": "2.300", + "name": "Inter Milan to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811216", + "odds": "3.250", + "name": "Marcus Thuram to Score", + "handicap": "" + }, + { + "id": "726807442", + "odds": "1.750", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "726816349", + "odds": "2.300", + "name": "Lautaro Martinez to Score or Assist", + "handicap": "" + }, + { + "id": "726816313", + "odds": "2.000", + "name": "Khvicha Kvaratskhelia to Score or Assist", + "handicap": "" + }, + { + "id": "726816123", + "odds": "2.250", + "name": "PSG to Win in 90 Mins", + "handicap": "" + }, + { + "id": "726807627", + "odds": "3.400", + "name": "PSG to Score in Both Halves", + "handicap": "" + }, + { + "id": "726811207", + "odds": "4.000", + "name": "Desire Doue to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:15:26+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977002", + "FI": "174206901", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:09:58+03:00", + "Odds": [ + { + "id": "810834176", + "odds": "13.000", + "name": "Valencia 2-1", + "handicap": "" + }, + { + "id": "810843474", + "odds": "7.000", + "name": "Hugo Duro", + "handicap": "" + }, + { + "id": "713504056", + "odds": "2.000", + "name": "FT Result: Real Betis", + "handicap": "" + }, + { + "id": "818142082", + "odds": "2.375", + "name": "Juan Hernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818142073", + "odds": "1.444", + "name": "Jesus Rodriguez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.500", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "818205392", + "odds": "1.300", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818145409", + "odds": "1.533", + "name": "Luis Rioja: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.500", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "810835604", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813193941", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "818142127", + "odds": "2.100", + "name": "Silva William Carvalho: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818205392", + "odds": "1.300", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810835604", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:15:31+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982904", + "FI": "174588290", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:15:28+03:00", + "Odds": [ + { + "id": "820264609", + "odds": "1.400", + "name": "Umut Bozok: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037000", + "odds": "1.900", + "name": "FT Result: Eyupspor", + "handicap": "" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820243702", + "odds": "1.444", + "name": "Emre Mor: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819301876", + "odds": "5.500", + "name": "Over 4 Goals", + "handicap": "4" + }, + { + "id": "820264669", + "odds": "3.400", + "name": "Adolfo Gaich: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037006", + "odds": "3.700", + "name": "FT Result: Antalyaspor", + "handicap": "" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:16:07+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8826418", + "FI": "174588296", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:14:29+03:00", + "Odds": [ + { + "id": "819956646", + "odds": "1.500", + "name": "Alexandru Maxim: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037294", + "odds": "2.600", + "name": "FT Result: Gaziantep FK", + "handicap": "" + }, + { + "id": "819311085", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819959543", + "odds": "2.375", + "name": "Joia Nuno Da Costa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037306", + "odds": "2.375", + "name": "FT Result: Kasimpasa", + "handicap": "" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820280304", + "odds": "1.363", + "name": "Aytac Kara: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819315041", + "odds": "3.750", + "name": "Over 4 Goals", + "handicap": "4" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:16:17+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:06:33+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "3.000", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:16:17+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:06:33+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "3.000", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.500", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:16:46+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:11:32+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "15.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "818234653", + "odds": "1.285", + "name": "Yan Diomande: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810816138", + "odds": "2.050", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "9.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:17:03+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9757324", + "FI": "172433912", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:15:58+03:00", + "Odds": [ + { + "id": "817868646", + "odds": "4.250", + "name": "Ousmane Dembele", + "handicap": "" + }, + { + "id": "467772639", + "odds": "8.000", + "name": "PSG 3-0", + "handicap": "" + }, + { + "id": "467774766", + "odds": "2.050", + "name": "PSG to win by 3+ Goals", + "handicap": "" + }, + { + "id": "818472444", + "odds": "1.800", + "name": "Bradley Barcola: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818472520", + "odds": "1.571", + "name": "Khvicha Kvaratskhelia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467775416", + "odds": "2.000", + "name": "PSG to Win Both Halves", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818524895", + "odds": "3.250", + "name": "Fabian Ruiz: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467772622", + "odds": "1.500", + "name": "HT: PSG \u2013 FT: PSG", + "handicap": "" + }, + { + "id": "818979031", + "odds": "1.055", + "name": "Most Shots on Target: PSG", + "handicap": "" + }, + { + "id": "818977802", + "odds": "1.533", + "name": "Most Cards: Reims", + "handicap": "" + }, + { + "id": "467772737", + "odds": "1.833", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "467773042", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818525451", + "odds": "10.000", + "name": "Theoson Siebatcheu: 2+ Shots on Target", + "handicap": "1.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:17:05+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:15:43+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.350", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.615", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.000", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.100", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.100", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:17:16+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:08:11+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:17:16+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:08:11+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:17:17+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:11:32+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "3.750", + "name": "2", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.200", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "1.909", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.000", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.200", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:17:17+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:11:32+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "3.750", + "name": "2", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.200", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "1.909", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.000", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.200", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:19:44+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289262", + "FI": "174219002", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:15:06+03:00", + "Odds": [ + { + "id": "806670446", + "odds": "13.000", + "name": "Tani Oluwaseyi", + "handicap": "" + }, + { + "id": "806655131", + "odds": "9.500", + "name": "Minnesota United 2-1", + "handicap": "" + }, + { + "id": "714859773", + "odds": "1.727", + "name": "FT Result: Minnesota United", + "handicap": "" + }, + { + "id": "812331324", + "odds": "1.800", + "name": "Kelvin Yeboah: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812331345", + "odds": "2.375", + "name": "Tani Oluwaseyi: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806655293", + "odds": "2.050", + "name": "Draw or Austin FC", + "handicap": "" + }, + { + "id": "812335148", + "odds": "1.571", + "name": "Myrto Uzuni: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812334820", + "odds": "1.571", + "name": "Brandon Vazquez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "827362447", + "odds": "1.533", + "name": "Over 4 Corners for Minnesota United", + "handicap": "4" + }, + { + "id": "827362563", + "odds": "2.200", + "name": "Over 4 Corners for Austin FC", + "handicap": "4" + }, + { + "id": "806655241", + "odds": "1.950", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "806655104", + "odds": "2.625", + "name": "HT: Minnesota United \u2013 FT: Minnesota United", + "handicap": "" + }, + { + "id": "827360459", + "odds": "1.615", + "name": "Most Corners: Minnesota United", + "handicap": "" + }, + { + "id": "806963379", + "odds": "1.800", + "name": "Kelvin Yeboah to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:19:52+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289261", + "FI": "174219004", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:19:45+03:00", + "Odds": [ + { + "id": "806742909", + "odds": "12.000", + "name": "Joao Klauss", + "handicap": "" + }, + { + "id": "806741536", + "odds": "8.500", + "name": "Darren Yapi", + "handicap": "" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812508432", + "odds": "3.000", + "name": "Kevin Cabral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806733943", + "odds": "1.909", + "name": "Draw or St. Louis City SC", + "handicap": "" + }, + { + "id": "812362704", + "odds": "1.444", + "name": "Cedric Teuchert: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812362834", + "odds": "1.500", + "name": "Marcel Hartel: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812508349", + "odds": "3.250", + "name": "Cedric Teuchert: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806737965", + "odds": "1.600", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "827381382", + "odds": "1.250", + "name": "Over 3 Corners for Colorado Rapids", + "handicap": "3" + }, + { + "id": "807040642", + "odds": "2.100", + "name": "Darren Yapi to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:19:59+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289260", + "FI": "174219006", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:18:36+03:00", + "Odds": [ + { + "id": "806753712", + "odds": "8.500", + "name": "Brian White", + "handicap": "" + }, + { + "id": "806753521", + "odds": "7.000", + "name": "William Agada", + "handicap": "" + }, + { + "id": "714859829", + "odds": "2.500", + "name": "FT Result: Real Salt Lake", + "handicap": "" + }, + { + "id": "812514424", + "odds": "1.333", + "name": "William Agada: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812377943", + "odds": "1.400", + "name": "Diogo Goncalves: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859831", + "odds": "2.600", + "name": "FT Result: Vancouver Whitecaps", + "handicap": "" + }, + { + "id": "812380351", + "odds": "2.100", + "name": "Pedro Vite: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380265", + "odds": "2.750", + "name": "Brian White: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "827384577", + "odds": "1.666", + "name": "Over 4 Corners for Real Salt Lake", + "handicap": "4" + }, + { + "id": "827384725", + "odds": "1.909", + "name": "Over 4 Corners for Vancouver Whitecaps", + "handicap": "4" + }, + { + "id": "806747601", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "812377945", + "odds": "1.833", + "name": "Dominik Marczuk: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380239", + "odds": "2.250", + "name": "Ali Ahmed: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "806749654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:20:13+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:13:41+03:00", + "Odds": [ + { + "id": "810813006", + "odds": "8.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "810805461", + "odds": "12.000", + "name": "Atletico Madrid 2-0", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.950", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257779", + "odds": "2.750", + "name": "Antoine Griezmann: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257773", + "odds": "2.750", + "name": "Angel Correa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257791", + "odds": "1.833", + "name": "Conor Gallagher: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306498", + "odds": "1.400", + "name": "Antoine Griezmann: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "832763395", + "odds": "1.400", + "name": "Cristhian Stuani: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818254988", + "odds": "1.444", + "name": "Viktor Tsygankov: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:20:13+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:13:41+03:00", + "Odds": [ + { + "id": "810813006", + "odds": "8.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "810805461", + "odds": "12.000", + "name": "Atletico Madrid 2-0", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.950", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257779", + "odds": "2.750", + "name": "Antoine Griezmann: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257773", + "odds": "2.750", + "name": "Angel Correa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257791", + "odds": "1.833", + "name": "Conor Gallagher: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306498", + "odds": "1.400", + "name": "Antoine Griezmann: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "832763395", + "odds": "1.400", + "name": "Cristhian Stuani: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818254988", + "odds": "1.444", + "name": "Viktor Tsygankov: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:22:20+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822034", + "FI": "174588286", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:16:49+03:00", + "Odds": [ + { + "id": "820006660", + "odds": "1.571", + "name": "Mehmet Nayir: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036764", + "odds": "2.800", + "name": "FT Result: Konyaspor", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820321024", + "odds": "3.000", + "name": "Andraz Sporar: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036767", + "odds": "2.250", + "name": "FT Result: Alanyaspor", + "handicap": "" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820009298", + "odds": "1.666", + "name": "Eui-Jo Hwang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:22:20+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822034", + "FI": "174588286", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:16:49+03:00", + "Odds": [ + { + "id": "820006660", + "odds": "1.571", + "name": "Mehmet Nayir: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036764", + "odds": "2.800", + "name": "FT Result: Konyaspor", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820321024", + "odds": "3.000", + "name": "Andraz Sporar: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036767", + "odds": "2.250", + "name": "FT Result: Alanyaspor", + "handicap": "" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820009298", + "odds": "1.666", + "name": "Eui-Jo Hwang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:22:27+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822035", + "FI": "174588284", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:15:01+03:00", + "Odds": [ + { + "id": "820312223", + "odds": "3.400", + "name": "Duckens Nazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997827", + "odds": "1.500", + "name": "Gokdeniz Bayrakdar: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997755", + "odds": "1.666", + "name": "Alredo Fredy: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036662", + "odds": "1.950", + "name": "FT Result: Bodrum FK", + "handicap": "" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:22:27+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822035", + "FI": "174588284", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:15:01+03:00", + "Odds": [ + { + "id": "820312223", + "odds": "3.400", + "name": "Duckens Nazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997827", + "odds": "1.500", + "name": "Gokdeniz Bayrakdar: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997755", + "odds": "1.666", + "name": "Alredo Fredy: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036662", + "odds": "1.950", + "name": "FT Result: Bodrum FK", + "handicap": "" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:22:35+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8840198", + "FI": "174588288", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:18:09+03:00", + "Odds": [ + { + "id": "820021777", + "odds": "1.500", + "name": "Oleksandr Zubkov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036883", + "odds": "2.250", + "name": "FT Result: Trabzonspor", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820021638", + "odds": "1.727", + "name": "Anthony Nwakaeme: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820336294", + "odds": "3.400", + "name": "Landry Dimata: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036888", + "odds": "2.800", + "name": "FT Result: Samsunspor", + "handicap": "" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:22:35+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8840198", + "FI": "174588288", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:18:09+03:00", + "Odds": [ + { + "id": "820021777", + "odds": "1.500", + "name": "Oleksandr Zubkov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036883", + "odds": "2.250", + "name": "FT Result: Trabzonspor", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820021638", + "odds": "1.727", + "name": "Anthony Nwakaeme: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820336294", + "odds": "3.400", + "name": "Landry Dimata: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036888", + "odds": "2.800", + "name": "FT Result: Samsunspor", + "handicap": "" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:22:39+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982903", + "FI": "174588280", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:17:35+03:00", + "Odds": [ + { + "id": "820343994", + "odds": "1.300", + "name": "Ciro Immobile: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819945189", + "odds": "2.200", + "name": "Rafa Silva: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819945232", + "odds": "2.625", + "name": "Joao Mario: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819344587", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819348703", + "odds": "1.666", + "name": "Ciro Immobile to Score", + "handicap": "" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:22:39+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982903", + "FI": "174588280", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:17:35+03:00", + "Odds": [ + { + "id": "820343994", + "odds": "1.300", + "name": "Ciro Immobile: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819945189", + "odds": "2.200", + "name": "Rafa Silva: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819945232", + "odds": "2.625", + "name": "Joao Mario: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819344587", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819348703", + "odds": "1.666", + "name": "Ciro Immobile to Score", + "handicap": "" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:23:37+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977001", + "FI": "174206898", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:22:05+03:00", + "Odds": [ + { + "id": "810769529", + "odds": "6.500", + "name": "Robert Lewandowski", + "handicap": "" + }, + { + "id": "810770215", + "odds": "6.500", + "name": "Lamine Yamal", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.100", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283162", + "odds": "1.833", + "name": "Robert Lewandowski: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810767797", + "odds": "1.909", + "name": "Robert Lewandowski to Score", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.100", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283150", + "odds": "2.000", + "name": "Raphinha: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810774636", + "odds": "1.571", + "name": "Lamine Yamal to Score or Assist", + "handicap": "" + }, + { + "id": "713503825", + "odds": "3.200", + "name": "FT Result: Athletic Bilbao", + "handicap": "" + }, + { + "id": "810774497", + "odds": "2.200", + "name": "Oihan Sancet to Score or Assist", + "handicap": "" + }, + { + "id": "813208230", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "827038436", + "odds": "1.400", + "name": "Over 3 Corners for Athletic Bilbao", + "handicap": "3" + }, + { + "id": "827038961", + "odds": "1.444", + "name": "Over 3 Corners for Barcelona", + "handicap": "3" + }, + { + "id": "810764064", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:23:39+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9288599", + "FI": "174219011", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:18:17+03:00", + "Odds": [ + { + "id": "806795106", + "odds": "13.000", + "name": "Alonso Martinez", + "handicap": "" + }, + { + "id": "806793895", + "odds": "15.000", + "name": "Hugo Cuypers", + "handicap": "" + }, + { + "id": "714860035", + "odds": "1.950", + "name": "FT Result: New York City FC", + "handicap": "" + }, + { + "id": "812414097", + "odds": "1.500", + "name": "Julian Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812414089", + "odds": "1.727", + "name": "Hannes Wolf: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714860037", + "odds": "3.600", + "name": "FT Result: Chicago Fire", + "handicap": "" + }, + { + "id": "812415639", + "odds": "1.615", + "name": "Brian Gutierrez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812415683", + "odds": "1.571", + "name": "Jonathan Bamba: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812875983", + "odds": "1.500", + "name": "Over 8 Corners", + "handicap": "8.0" + }, + { + "id": "806787411", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "806786217", + "odds": "2.375", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "714860035", + "odds": "1.950", + "name": "FT Result: New York City FC", + "handicap": "" + }, + { + "id": "806792787", + "odds": "3.100", + "name": "Julian Fernandez to Score", + "handicap": "" + }, + { + "id": "827388794", + "odds": "1.615", + "name": "Most Corners: New York City FC", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:24:02+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289259", + "FI": "174219015", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:18:06+03:00", + "Odds": [ + { + "id": "806822225", + "odds": "15.000", + "name": "Emmanuel Latte Lath", + "handicap": "" + }, + { + "id": "806820954", + "odds": "9.000", + "name": "Ferreira Evander", + "handicap": "" + }, + { + "id": "714860470", + "odds": "2.400", + "name": "FT Result: Atlanta United", + "handicap": "" + }, + { + "id": "812421030", + "odds": "1.571", + "name": "Miguel Almiron: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812420959", + "odds": "1.444", + "name": "Aleksey Miranchuk: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714860473", + "odds": "2.700", + "name": "FT Result: FC Cincinnati", + "handicap": "" + }, + { + "id": "812886421", + "odds": "1.363", + "name": "Luca Orellano: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812886731", + "odds": "1.285", + "name": "Ahoueke Denkey: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812885974", + "odds": "1.500", + "name": "Over 8 Corners", + "handicap": "8.0" + }, + { + "id": "806814209", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "806812506", + "odds": "2.500", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "812424314", + "odds": "2.625", + "name": "Luca Orellano: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812887182", + "odds": "3.000", + "name": "Saba Lobzhanidze: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806814209", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:24:13+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8826752", + "FI": "174588282", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:17:19+03:00", + "Odds": [ + { + "id": "820350480", + "odds": "1.300", + "name": "Youssef En Nesyri: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "820042485", + "odds": "1.571", + "name": "Conceicao Talisca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036542", + "odds": "1.222", + "name": "FT Result: Fenerbahce", + "handicap": "" + }, + { + "id": "819432775", + "odds": "1.500", + "name": "Youssef En Nesyri to Score", + "handicap": "" + }, + { + "id": "819430970", + "odds": "2.100", + "name": "Fenerbahce \u0026 Yes", + "handicap": "" + }, + { + "id": "819428625", + "odds": "2.250", + "name": "Over 4 Goals", + "handicap": "4" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:24:28+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9929184", + "FI": "174363978", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:16:01+03:00", + "Odds": [ + { + "id": "774550908", + "odds": "21.000", + "name": "Antony", + "handicap": "" + }, + { + "id": "774550887", + "odds": "15.000", + "name": "Nicolas Jackson", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734591996", + "odds": "1.833", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "774549605", + "odds": "2.300", + "name": "Cole Palmer to Score", + "handicap": "" + }, + { + "id": "774549558", + "odds": "2.875", + "name": "Nicolas Jackson to Score", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734590525", + "odds": "2.000", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:24:53+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9924545", + "FI": "174307725", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:20:34+03:00", + "Odds": [ + { + "id": "726811888", + "odds": "13.000", + "name": "Lautaro Martinez", + "handicap": "" + }, + { + "id": "726811982", + "odds": "11.000", + "name": "Khvicha Kvaratskhelia", + "handicap": "" + }, + { + "id": "726816128", + "odds": "1.615", + "name": "PSG to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811208", + "odds": "3.250", + "name": "Bradley Barcola to Score", + "handicap": "" + }, + { + "id": "726806476", + "odds": "1.909", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "726816130", + "odds": "2.300", + "name": "Inter Milan to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811216", + "odds": "3.250", + "name": "Marcus Thuram to Score", + "handicap": "" + }, + { + "id": "726807442", + "odds": "1.750", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "726816349", + "odds": "2.300", + "name": "Lautaro Martinez to Score or Assist", + "handicap": "" + }, + { + "id": "726816313", + "odds": "2.000", + "name": "Khvicha Kvaratskhelia to Score or Assist", + "handicap": "" + }, + { + "id": "726816123", + "odds": "2.250", + "name": "PSG to Win in 90 Mins", + "handicap": "" + }, + { + "id": "726807627", + "odds": "3.400", + "name": "PSG to Score in Both Halves", + "handicap": "" + }, + { + "id": "726811207", + "odds": "4.000", + "name": "Desire Doue to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:30:23+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977002", + "FI": "174206901", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:24:08+03:00", + "Odds": [ + { + "id": "810834176", + "odds": "13.000", + "name": "Valencia 2-1", + "handicap": "" + }, + { + "id": "810843474", + "odds": "7.000", + "name": "Hugo Duro", + "handicap": "" + }, + { + "id": "713504056", + "odds": "2.000", + "name": "FT Result: Real Betis", + "handicap": "" + }, + { + "id": "818142082", + "odds": "2.375", + "name": "Juan Hernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818142073", + "odds": "1.444", + "name": "Jesus Rodriguez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.500", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "818205392", + "odds": "1.300", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818145409", + "odds": "1.533", + "name": "Luis Rioja: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.500", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "810835604", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813193941", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "818142127", + "odds": "2.100", + "name": "Silva William Carvalho: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818205392", + "odds": "1.300", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810835604", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:30:30+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982904", + "FI": "174588290", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:22:16+03:00", + "Odds": [ + { + "id": "820264609", + "odds": "1.400", + "name": "Umut Bozok: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037000", + "odds": "1.900", + "name": "FT Result: Eyupspor", + "handicap": "" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820243702", + "odds": "1.444", + "name": "Emre Mor: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819301876", + "odds": "5.500", + "name": "Over 4 Goals", + "handicap": "4" + }, + { + "id": "820264669", + "odds": "3.400", + "name": "Adolfo Gaich: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037006", + "odds": "3.700", + "name": "FT Result: Antalyaspor", + "handicap": "" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:31:07+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8826418", + "FI": "174588296", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:29:44+03:00", + "Odds": [ + { + "id": "819956646", + "odds": "1.500", + "name": "Alexandru Maxim: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037294", + "odds": "2.600", + "name": "FT Result: Gaziantep FK", + "handicap": "" + }, + { + "id": "819311085", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819959543", + "odds": "2.375", + "name": "Joia Nuno Da Costa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037306", + "odds": "2.375", + "name": "FT Result: Kasimpasa", + "handicap": "" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820280304", + "odds": "1.363", + "name": "Aytac Kara: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819315041", + "odds": "3.750", + "name": "Over 4 Goals", + "handicap": "4" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:31:11+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:26:21+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "3.000", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.000", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:31:11+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:26:21+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.500", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "818165415", + "odds": "2.000", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "3.000", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.250", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505983", + "odds": "1.363", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.909", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.100", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.100", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.200", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "8.000", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:31:20+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:30:58+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "15.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "818234653", + "odds": "1.285", + "name": "Yan Diomande: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810816138", + "odds": "2.050", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "9.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:31:38+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9757324", + "FI": "172433912", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:26:36+03:00", + "Odds": [ + { + "id": "817868646", + "odds": "4.250", + "name": "Ousmane Dembele", + "handicap": "" + }, + { + "id": "467772639", + "odds": "8.000", + "name": "PSG 3-0", + "handicap": "" + }, + { + "id": "467774766", + "odds": "2.050", + "name": "PSG to win by 3+ Goals", + "handicap": "" + }, + { + "id": "818472444", + "odds": "1.800", + "name": "Bradley Barcola: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818472520", + "odds": "1.571", + "name": "Khvicha Kvaratskhelia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467775416", + "odds": "2.000", + "name": "PSG to Win Both Halves", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818524895", + "odds": "3.250", + "name": "Fabian Ruiz: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467772622", + "odds": "1.500", + "name": "HT: PSG \u2013 FT: PSG", + "handicap": "" + }, + { + "id": "818979031", + "odds": "1.055", + "name": "Most Shots on Target: PSG", + "handicap": "" + }, + { + "id": "818977802", + "odds": "1.533", + "name": "Most Cards: Reims", + "handicap": "" + }, + { + "id": "467772737", + "odds": "1.833", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "467773042", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818525451", + "odds": "10.000", + "name": "Theoson Siebatcheu: 2+ Shots on Target", + "handicap": "1.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:31:48+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:31:04+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.350", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.615", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.000", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.100", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.100", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:32:06+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:26:23+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:32:06+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:26:23+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:32:41+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:20:33+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "3.750", + "name": "2", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.200", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "1.909", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.000", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.200", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:32:41+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:20:33+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "3.750", + "name": "2", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.200", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "1.909", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.000", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.200", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:34:13+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289262", + "FI": "174219002", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:34:00+03:00", + "Odds": [ + { + "id": "806670446", + "odds": "13.000", + "name": "Tani Oluwaseyi", + "handicap": "" + }, + { + "id": "806655131", + "odds": "9.500", + "name": "Minnesota United 2-1", + "handicap": "" + }, + { + "id": "714859773", + "odds": "1.727", + "name": "FT Result: Minnesota United", + "handicap": "" + }, + { + "id": "812331324", + "odds": "1.800", + "name": "Kelvin Yeboah: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812331345", + "odds": "2.375", + "name": "Tani Oluwaseyi: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806655293", + "odds": "2.050", + "name": "Draw or Austin FC", + "handicap": "" + }, + { + "id": "812335148", + "odds": "1.571", + "name": "Myrto Uzuni: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812334820", + "odds": "1.571", + "name": "Brandon Vazquez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "827362447", + "odds": "1.533", + "name": "Over 4 Corners for Minnesota United", + "handicap": "4" + }, + { + "id": "827362563", + "odds": "2.200", + "name": "Over 4 Corners for Austin FC", + "handicap": "4" + }, + { + "id": "806655241", + "odds": "1.950", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "806655104", + "odds": "2.625", + "name": "HT: Minnesota United \u2013 FT: Minnesota United", + "handicap": "" + }, + { + "id": "827360459", + "odds": "1.615", + "name": "Most Corners: Minnesota United", + "handicap": "" + }, + { + "id": "806963379", + "odds": "1.800", + "name": "Kelvin Yeboah to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:34:17+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289261", + "FI": "174219004", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:27:48+03:00", + "Odds": [ + { + "id": "806742909", + "odds": "12.000", + "name": "Joao Klauss", + "handicap": "" + }, + { + "id": "806741536", + "odds": "8.500", + "name": "Darren Yapi", + "handicap": "" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812508432", + "odds": "3.000", + "name": "Kevin Cabral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806733943", + "odds": "1.909", + "name": "Draw or St. Louis City SC", + "handicap": "" + }, + { + "id": "812362704", + "odds": "1.444", + "name": "Cedric Teuchert: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812362834", + "odds": "1.500", + "name": "Marcel Hartel: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812508349", + "odds": "3.250", + "name": "Cedric Teuchert: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806737965", + "odds": "1.600", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "827381382", + "odds": "1.250", + "name": "Over 3 Corners for Colorado Rapids", + "handicap": "3" + }, + { + "id": "807040642", + "odds": "2.100", + "name": "Darren Yapi to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:34:26+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289260", + "FI": "174219006", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:30:03+03:00", + "Odds": [ + { + "id": "806753712", + "odds": "8.500", + "name": "Brian White", + "handicap": "" + }, + { + "id": "806753521", + "odds": "7.000", + "name": "William Agada", + "handicap": "" + }, + { + "id": "714859829", + "odds": "2.500", + "name": "FT Result: Real Salt Lake", + "handicap": "" + }, + { + "id": "812514424", + "odds": "1.333", + "name": "William Agada: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812377943", + "odds": "1.400", + "name": "Diogo Goncalves: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859831", + "odds": "2.600", + "name": "FT Result: Vancouver Whitecaps", + "handicap": "" + }, + { + "id": "812380351", + "odds": "2.100", + "name": "Pedro Vite: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380265", + "odds": "2.750", + "name": "Brian White: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "827384577", + "odds": "1.666", + "name": "Over 4 Corners for Real Salt Lake", + "handicap": "4" + }, + { + "id": "827384725", + "odds": "1.909", + "name": "Over 4 Corners for Vancouver Whitecaps", + "handicap": "4" + }, + { + "id": "806747601", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "812377945", + "odds": "1.833", + "name": "Dominik Marczuk: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380239", + "odds": "2.250", + "name": "Ali Ahmed: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "806749654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:34:43+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:30:10+03:00", + "Odds": [ + { + "id": "810813006", + "odds": "8.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "810805461", + "odds": "12.000", + "name": "Atletico Madrid 2-0", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.950", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257779", + "odds": "2.750", + "name": "Antoine Griezmann: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257773", + "odds": "2.750", + "name": "Angel Correa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257791", + "odds": "1.833", + "name": "Conor Gallagher: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306498", + "odds": "1.400", + "name": "Antoine Griezmann: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "832763395", + "odds": "1.400", + "name": "Cristhian Stuani: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818254988", + "odds": "1.444", + "name": "Viktor Tsygankov: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:34:43+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:30:10+03:00", + "Odds": [ + { + "id": "810813006", + "odds": "8.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "810805461", + "odds": "12.000", + "name": "Atletico Madrid 2-0", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.950", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257779", + "odds": "2.750", + "name": "Antoine Griezmann: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257773", + "odds": "2.750", + "name": "Angel Correa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257791", + "odds": "1.833", + "name": "Conor Gallagher: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306498", + "odds": "1.400", + "name": "Antoine Griezmann: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "832763395", + "odds": "1.400", + "name": "Cristhian Stuani: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818254988", + "odds": "1.444", + "name": "Viktor Tsygankov: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:36:27+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822034", + "FI": "174588286", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:36:05+03:00", + "Odds": [ + { + "id": "820006660", + "odds": "1.571", + "name": "Mehmet Nayir: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036764", + "odds": "2.800", + "name": "FT Result: Konyaspor", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820321024", + "odds": "3.000", + "name": "Andraz Sporar: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036767", + "odds": "2.250", + "name": "FT Result: Alanyaspor", + "handicap": "" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820009298", + "odds": "1.666", + "name": "Eui-Jo Hwang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:36:27+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822034", + "FI": "174588286", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:36:05+03:00", + "Odds": [ + { + "id": "820006660", + "odds": "1.571", + "name": "Mehmet Nayir: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036764", + "odds": "2.800", + "name": "FT Result: Konyaspor", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820321024", + "odds": "3.000", + "name": "Andraz Sporar: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036767", + "odds": "2.250", + "name": "FT Result: Alanyaspor", + "handicap": "" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820009298", + "odds": "1.666", + "name": "Eui-Jo Hwang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:36:32+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822035", + "FI": "174588284", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:25:54+03:00", + "Odds": [ + { + "id": "820312223", + "odds": "3.400", + "name": "Duckens Nazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997827", + "odds": "1.500", + "name": "Gokdeniz Bayrakdar: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997755", + "odds": "1.666", + "name": "Alredo Fredy: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036662", + "odds": "1.950", + "name": "FT Result: Bodrum FK", + "handicap": "" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:36:32+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822035", + "FI": "174588284", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:25:54+03:00", + "Odds": [ + { + "id": "820312223", + "odds": "3.400", + "name": "Duckens Nazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997827", + "odds": "1.500", + "name": "Gokdeniz Bayrakdar: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997755", + "odds": "1.666", + "name": "Alredo Fredy: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036662", + "odds": "1.950", + "name": "FT Result: Bodrum FK", + "handicap": "" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:36:39+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8840198", + "FI": "174588288", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:36:01+03:00", + "Odds": [ + { + "id": "820021777", + "odds": "1.500", + "name": "Oleksandr Zubkov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036883", + "odds": "2.250", + "name": "FT Result: Trabzonspor", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820021638", + "odds": "1.727", + "name": "Anthony Nwakaeme: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820336294", + "odds": "3.400", + "name": "Landry Dimata: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036888", + "odds": "2.800", + "name": "FT Result: Samsunspor", + "handicap": "" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:36:39+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8840198", + "FI": "174588288", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:36:01+03:00", + "Odds": [ + { + "id": "820021777", + "odds": "1.500", + "name": "Oleksandr Zubkov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036883", + "odds": "2.250", + "name": "FT Result: Trabzonspor", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820021638", + "odds": "1.727", + "name": "Anthony Nwakaeme: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820336294", + "odds": "3.400", + "name": "Landry Dimata: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036888", + "odds": "2.800", + "name": "FT Result: Samsunspor", + "handicap": "" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:36:47+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982903", + "FI": "174588280", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:35:22+03:00", + "Odds": [ + { + "id": "820343994", + "odds": "1.300", + "name": "Ciro Immobile: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819945189", + "odds": "2.200", + "name": "Rafa Silva: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819945232", + "odds": "2.625", + "name": "Joao Mario: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819344587", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819348703", + "odds": "1.666", + "name": "Ciro Immobile to Score", + "handicap": "" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:36:47+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982903", + "FI": "174588280", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:35:22+03:00", + "Odds": [ + { + "id": "820343994", + "odds": "1.300", + "name": "Ciro Immobile: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819945189", + "odds": "2.200", + "name": "Rafa Silva: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819945232", + "odds": "2.625", + "name": "Joao Mario: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819344587", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819348703", + "odds": "1.666", + "name": "Ciro Immobile to Score", + "handicap": "" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:37:38+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977001", + "FI": "174206898", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:33:56+03:00", + "Odds": [ + { + "id": "810769529", + "odds": "6.500", + "name": "Robert Lewandowski", + "handicap": "" + }, + { + "id": "810770215", + "odds": "6.500", + "name": "Lamine Yamal", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.100", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283162", + "odds": "1.833", + "name": "Robert Lewandowski: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810767797", + "odds": "1.909", + "name": "Robert Lewandowski to Score", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.100", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283150", + "odds": "2.000", + "name": "Raphinha: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810774636", + "odds": "1.571", + "name": "Lamine Yamal to Score or Assist", + "handicap": "" + }, + { + "id": "713503825", + "odds": "3.200", + "name": "FT Result: Athletic Bilbao", + "handicap": "" + }, + { + "id": "810774497", + "odds": "2.200", + "name": "Oihan Sancet to Score or Assist", + "handicap": "" + }, + { + "id": "813208230", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "827038436", + "odds": "1.400", + "name": "Over 3 Corners for Athletic Bilbao", + "handicap": "3" + }, + { + "id": "827038961", + "odds": "1.444", + "name": "Over 3 Corners for Barcelona", + "handicap": "3" + }, + { + "id": "810764064", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:37:46+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9288599", + "FI": "174219011", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:31:44+03:00", + "Odds": [ + { + "id": "806795106", + "odds": "13.000", + "name": "Alonso Martinez", + "handicap": "" + }, + { + "id": "806793895", + "odds": "15.000", + "name": "Hugo Cuypers", + "handicap": "" + }, + { + "id": "714860035", + "odds": "1.950", + "name": "FT Result: New York City FC", + "handicap": "" + }, + { + "id": "812414097", + "odds": "1.500", + "name": "Julian Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812414089", + "odds": "1.727", + "name": "Hannes Wolf: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714860037", + "odds": "3.600", + "name": "FT Result: Chicago Fire", + "handicap": "" + }, + { + "id": "812415639", + "odds": "1.615", + "name": "Brian Gutierrez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812415683", + "odds": "1.571", + "name": "Jonathan Bamba: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812875983", + "odds": "1.500", + "name": "Over 8 Corners", + "handicap": "8.0" + }, + { + "id": "806787411", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "806786217", + "odds": "2.375", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "714860035", + "odds": "1.950", + "name": "FT Result: New York City FC", + "handicap": "" + }, + { + "id": "806792787", + "odds": "3.100", + "name": "Julian Fernandez to Score", + "handicap": "" + }, + { + "id": "827388794", + "odds": "1.615", + "name": "Most Corners: New York City FC", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:37:54+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289259", + "FI": "174219015", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:35:59+03:00", + "Odds": [ + { + "id": "806822225", + "odds": "15.000", + "name": "Emmanuel Latte Lath", + "handicap": "" + }, + { + "id": "806820954", + "odds": "9.000", + "name": "Ferreira Evander", + "handicap": "" + }, + { + "id": "714860470", + "odds": "2.400", + "name": "FT Result: Atlanta United", + "handicap": "" + }, + { + "id": "812421030", + "odds": "1.571", + "name": "Miguel Almiron: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812420959", + "odds": "1.444", + "name": "Aleksey Miranchuk: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714860473", + "odds": "2.700", + "name": "FT Result: FC Cincinnati", + "handicap": "" + }, + { + "id": "812886421", + "odds": "1.363", + "name": "Luca Orellano: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812886731", + "odds": "1.285", + "name": "Ahoueke Denkey: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812885974", + "odds": "1.500", + "name": "Over 8 Corners", + "handicap": "8.0" + }, + { + "id": "806814209", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "806812506", + "odds": "2.500", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "812424314", + "odds": "2.625", + "name": "Luca Orellano: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812887182", + "odds": "3.000", + "name": "Saba Lobzhanidze: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806814209", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:38:02+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8826752", + "FI": "174588282", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:28:08+03:00", + "Odds": [ + { + "id": "820350480", + "odds": "1.300", + "name": "Youssef En Nesyri: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "820042485", + "odds": "1.571", + "name": "Conceicao Talisca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036542", + "odds": "1.222", + "name": "FT Result: Fenerbahce", + "handicap": "" + }, + { + "id": "819432775", + "odds": "1.500", + "name": "Youssef En Nesyri to Score", + "handicap": "" + }, + { + "id": "819430970", + "odds": "2.100", + "name": "Fenerbahce \u0026 Yes", + "handicap": "" + }, + { + "id": "819428625", + "odds": "2.250", + "name": "Over 4 Goals", + "handicap": "4" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:38:11+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9929184", + "FI": "174363978", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:16:01+03:00", + "Odds": [ + { + "id": "774550908", + "odds": "21.000", + "name": "Antony", + "handicap": "" + }, + { + "id": "774550887", + "odds": "15.000", + "name": "Nicolas Jackson", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734591996", + "odds": "1.833", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "774549605", + "odds": "2.300", + "name": "Cole Palmer to Score", + "handicap": "" + }, + { + "id": "774549558", + "odds": "2.875", + "name": "Nicolas Jackson to Score", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734590525", + "odds": "2.000", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:38:15+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9924545", + "FI": "174307725", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:33:38+03:00", + "Odds": [ + { + "id": "726811888", + "odds": "13.000", + "name": "Lautaro Martinez", + "handicap": "" + }, + { + "id": "726811982", + "odds": "11.000", + "name": "Khvicha Kvaratskhelia", + "handicap": "" + }, + { + "id": "726816128", + "odds": "1.615", + "name": "PSG to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811208", + "odds": "3.250", + "name": "Bradley Barcola to Score", + "handicap": "" + }, + { + "id": "726806476", + "odds": "1.909", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "726816130", + "odds": "2.300", + "name": "Inter Milan to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811216", + "odds": "3.250", + "name": "Marcus Thuram to Score", + "handicap": "" + }, + { + "id": "726807442", + "odds": "1.750", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "726816349", + "odds": "2.300", + "name": "Lautaro Martinez to Score or Assist", + "handicap": "" + }, + { + "id": "726816313", + "odds": "2.000", + "name": "Khvicha Kvaratskhelia to Score or Assist", + "handicap": "" + }, + { + "id": "726816123", + "odds": "2.250", + "name": "PSG to Win in 90 Mins", + "handicap": "" + }, + { + "id": "726807627", + "odds": "3.400", + "name": "PSG to Score in Both Halves", + "handicap": "" + }, + { + "id": "726811207", + "odds": "4.000", + "name": "Desire Doue to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:45:23+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977002", + "FI": "174206901", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:31:58+03:00", + "Odds": [ + { + "id": "810834176", + "odds": "13.000", + "name": "Valencia 2-1", + "handicap": "" + }, + { + "id": "810843474", + "odds": "7.000", + "name": "Hugo Duro", + "handicap": "" + }, + { + "id": "713504056", + "odds": "2.000", + "name": "FT Result: Real Betis", + "handicap": "" + }, + { + "id": "818142082", + "odds": "2.375", + "name": "Juan Hernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818142073", + "odds": "1.444", + "name": "Jesus Rodriguez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.500", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "818205392", + "odds": "1.300", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818145409", + "odds": "1.533", + "name": "Luis Rioja: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713504058", + "odds": "3.500", + "name": "FT Result: Valencia", + "handicap": "" + }, + { + "id": "810835604", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813193941", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "818142127", + "odds": "2.100", + "name": "Silva William Carvalho: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818205392", + "odds": "1.300", + "name": "Hugo Duro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810835604", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:45:30+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982904", + "FI": "174588290", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:43:57+03:00", + "Odds": [ + { + "id": "820264609", + "odds": "1.400", + "name": "Umut Bozok: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037000", + "odds": "1.900", + "name": "FT Result: Eyupspor", + "handicap": "" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820243702", + "odds": "1.444", + "name": "Emre Mor: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819301876", + "odds": "5.500", + "name": "Over 4 Goals", + "handicap": "4" + }, + { + "id": "820264669", + "odds": "3.400", + "name": "Adolfo Gaich: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037006", + "odds": "3.700", + "name": "FT Result: Antalyaspor", + "handicap": "" + }, + { + "id": "819298752", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:45:52+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8826418", + "FI": "174588296", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:43:28+03:00", + "Odds": [ + { + "id": "819956646", + "odds": "1.500", + "name": "Alexandru Maxim: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765037294", + "odds": "2.600", + "name": "FT Result: Gaziantep FK", + "handicap": "" + }, + { + "id": "819311085", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819959543", + "odds": "2.375", + "name": "Joia Nuno Da Costa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765037306", + "odds": "2.375", + "name": "FT Result: Kasimpasa", + "handicap": "" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820280304", + "odds": "1.363", + "name": "Aytac Kara: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819312321", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819315041", + "odds": "3.750", + "name": "Over 4 Goals", + "handicap": "4" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:46:00+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:37:24+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.250", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "818165415", + "odds": "2.200", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "3.000", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.222", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505983", + "odds": "1.300", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.833", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.000", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.250", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.166", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "9.000", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.727", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:46:00+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977005", + "FI": "174206938", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:37:24+03:00", + "Odds": [ + { + "id": "810793474", + "odds": "4.250", + "name": "Javi Puado", + "handicap": "" + }, + { + "id": "810793926", + "odds": "9.000", + "name": "Roberto Fernandez", + "handicap": "" + }, + { + "id": "818165415", + "odds": "2.200", + "name": "Oliver McBurnie: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818165371", + "odds": "3.000", + "name": "Adnan Januzaj: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223546", + "odds": "1.222", + "name": "Roberto Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505983", + "odds": "1.300", + "name": "FT Result: Espanyol", + "handicap": "" + }, + { + "id": "818161086", + "odds": "1.833", + "name": "Javi Puado: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818161150", + "odds": "2.000", + "name": "Roberto Fernandez: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810785073", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818165373", + "odds": "2.250", + "name": "Alberto Moleiro: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818223267", + "odds": "1.166", + "name": "Javi Puado: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505993", + "odds": "9.000", + "name": "FT Result: Las Palmas", + "handicap": "" + }, + { + "id": "813197755", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "810787654", + "odds": "1.727", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:46:09+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977004", + "FI": "174206928", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:45:21+03:00", + "Odds": [ + { + "id": "810825615", + "odds": "10.000", + "name": "Daniel Raba", + "handicap": "" + }, + { + "id": "810824112", + "odds": "15.000", + "name": "Juan Latasa", + "handicap": "" + }, + { + "id": "818234653", + "odds": "1.285", + "name": "Yan Diomande: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713505303", + "odds": "1.300", + "name": "FT Result: Leganes", + "handicap": "" + }, + { + "id": "818170790", + "odds": "1.833", + "name": "Daniel Raba: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818170803", + "odds": "1.666", + "name": "Diego Garcia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810816138", + "odds": "2.050", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818174813", + "odds": "1.727", + "name": "Juan Latasa: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818170892", + "odds": "1.533", + "name": "Seydouba Cisse: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713505316", + "odds": "9.500", + "name": "FT Result: Valladolid", + "handicap": "" + }, + { + "id": "810818057", + "odds": "1.666", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813198253", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:46:32+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9757324", + "FI": "172433912", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:38:35+03:00", + "Odds": [ + { + "id": "817868646", + "odds": "4.250", + "name": "Ousmane Dembele", + "handicap": "" + }, + { + "id": "467772639", + "odds": "8.000", + "name": "PSG 3-0", + "handicap": "" + }, + { + "id": "467774766", + "odds": "2.050", + "name": "PSG to win by 3+ Goals", + "handicap": "" + }, + { + "id": "818472444", + "odds": "1.800", + "name": "Bradley Barcola: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818472520", + "odds": "1.571", + "name": "Khvicha Kvaratskhelia: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467775416", + "odds": "2.000", + "name": "PSG to Win Both Halves", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818524895", + "odds": "3.250", + "name": "Fabian Ruiz: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "467772622", + "odds": "1.500", + "name": "HT: PSG \u2013 FT: PSG", + "handicap": "" + }, + { + "id": "818979031", + "odds": "1.055", + "name": "Most Shots on Target: PSG", + "handicap": "" + }, + { + "id": "818977802", + "odds": "1.533", + "name": "Most Cards: Reims", + "handicap": "" + }, + { + "id": "467772737", + "odds": "1.833", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "467773042", + "odds": "2.200", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818525029", + "odds": "1.333", + "name": "Ousmane Dembele: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818525451", + "odds": "10.000", + "name": "Theoson Siebatcheu: 2+ Shots on Target", + "handicap": "1.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:46:59+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977003", + "FI": "174206914", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:43:56+03:00", + "Odds": [ + { + "id": "810782401", + "odds": "6.500", + "name": "Ante Budimir", + "handicap": "" + }, + { + "id": "810782255", + "odds": "17.000", + "name": "Jon Guridi", + "handicap": "" + }, + { + "id": "713504570", + "odds": "2.350", + "name": "FT Result: Osasuna", + "handicap": "" + }, + { + "id": "818200891", + "odds": "1.615", + "name": "Ante Budimir: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810881584", + "odds": "1.833", + "name": "Ante Budimir to Score or Assist", + "handicap": "" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "810777871", + "odds": "1.950", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "813199262", + "odds": "1.333", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713504562", + "odds": "3.200", + "name": "FT Result: CD Alaves", + "handicap": "" + }, + { + "id": "818200816", + "odds": "1.615", + "name": "Carlos Vicente: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810881581", + "odds": "3.500", + "name": "Jon Guridi to Score or Assist", + "handicap": "" + }, + { + "id": "810778158", + "odds": "4.000", + "name": "Osasuna to Score in Both Halves", + "handicap": "" + }, + { + "id": "810881558", + "odds": "2.100", + "name": "Bryan Zaragoza to Score or Assist", + "handicap": "" + }, + { + "id": "810881580", + "odds": "3.100", + "name": "Aimar Oroz to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:47:01+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:46:06+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:47:01+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977007", + "FI": "174206951", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:46:06+03:00", + "Odds": [ + { + "id": "810795373", + "odds": "2.875", + "name": "1", + "handicap": "" + }, + { + "id": "810801154", + "odds": "5.500", + "name": "Borja Iglesias", + "handicap": "" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "818234755", + "odds": "1.909", + "name": "Borja Iglesias: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818234745", + "odds": "1.800", + "name": "Alfonso Gonzalez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713507421", + "odds": "4.100", + "name": "FT Result: Getafe", + "handicap": "" + }, + { + "id": "810795706", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813201935", + "odds": "1.533", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507435", + "odds": "1.850", + "name": "FT Result: Celta Vigo", + "handicap": "" + }, + { + "id": "810884551", + "odds": "3.100", + "name": "Oscar Mingueza to Score or Assist", + "handicap": "" + }, + { + "id": "818234750", + "odds": "3.500", + "name": "Beltran Fran: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818272688", + "odds": "1.285", + "name": "Moya Borja Mayoral: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818232899", + "odds": "1.533", + "name": "Chrisantus Uche: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818235077", + "odds": "2.625", + "name": "Oscar Mingueza: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:47:12+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:39:24+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "3.750", + "name": "2", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.200", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "1.909", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.000", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.200", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:47:12+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977008", + "FI": "174206957", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:39:24+03:00", + "Odds": [ + { + "id": "810830891", + "odds": "8.500", + "name": "Isi Palazon", + "handicap": "" + }, + { + "id": "810826957", + "odds": "3.750", + "name": "2", + "handicap": "" + }, + { + "id": "713508001", + "odds": "6.250", + "name": "FT Result: Mallorca", + "handicap": "" + }, + { + "id": "810827203", + "odds": "2.100", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813203878", + "odds": "1.300", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713507997", + "odds": "1.533", + "name": "FT Result: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810911970", + "odds": "2.200", + "name": "Jorge De Frutos to Score or Assist", + "handicap": "" + }, + { + "id": "818242351", + "odds": "1.909", + "name": "Isi Palazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810827485", + "odds": "2.100", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "818248799", + "odds": "3.000", + "name": "Sergi Darder: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818300359", + "odds": "1.200", + "name": "Isi Palazon: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "810827053", + "odds": "2.300", + "name": "HT: Rayo Vallecano \u2013 FT: Rayo Vallecano", + "handicap": "" + }, + { + "id": "810827602", + "odds": "2.625", + "name": "Rayo Vallecano to Score in Both Halves", + "handicap": "" + }, + { + "id": "810830483", + "odds": "4.000", + "name": "Adrian Embarba to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:48:48+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289262", + "FI": "174219002", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:43:31+03:00", + "Odds": [ + { + "id": "806670446", + "odds": "13.000", + "name": "Tani Oluwaseyi", + "handicap": "" + }, + { + "id": "806655131", + "odds": "9.500", + "name": "Minnesota United 2-1", + "handicap": "" + }, + { + "id": "714859773", + "odds": "1.727", + "name": "FT Result: Minnesota United", + "handicap": "" + }, + { + "id": "812331324", + "odds": "1.800", + "name": "Kelvin Yeboah: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812331345", + "odds": "2.375", + "name": "Tani Oluwaseyi: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806655293", + "odds": "2.050", + "name": "Draw or Austin FC", + "handicap": "" + }, + { + "id": "812335148", + "odds": "1.571", + "name": "Myrto Uzuni: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812334820", + "odds": "1.571", + "name": "Brandon Vazquez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "827362447", + "odds": "1.533", + "name": "Over 4 Corners for Minnesota United", + "handicap": "4" + }, + { + "id": "827362563", + "odds": "2.200", + "name": "Over 4 Corners for Austin FC", + "handicap": "4" + }, + { + "id": "806655241", + "odds": "1.950", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "806655104", + "odds": "2.625", + "name": "HT: Minnesota United \u2013 FT: Minnesota United", + "handicap": "" + }, + { + "id": "827360459", + "odds": "1.615", + "name": "Most Corners: Minnesota United", + "handicap": "" + }, + { + "id": "806963379", + "odds": "1.800", + "name": "Kelvin Yeboah to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:48:56+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289261", + "FI": "174219004", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:48:47+03:00", + "Odds": [ + { + "id": "806742909", + "odds": "12.000", + "name": "Joao Klauss", + "handicap": "" + }, + { + "id": "806741536", + "odds": "8.500", + "name": "Darren Yapi", + "handicap": "" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812508432", + "odds": "3.000", + "name": "Kevin Cabral: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806733943", + "odds": "1.909", + "name": "Draw or St. Louis City SC", + "handicap": "" + }, + { + "id": "812362704", + "odds": "1.444", + "name": "Cedric Teuchert: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812362834", + "odds": "1.500", + "name": "Marcel Hartel: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812508349", + "odds": "3.250", + "name": "Cedric Teuchert: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812359565", + "odds": "2.100", + "name": "Djordje Mihailovic: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806737965", + "odds": "1.600", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "714859800", + "odds": "1.850", + "name": "FT Result: Colorado Rapids", + "handicap": "" + }, + { + "id": "827381382", + "odds": "1.250", + "name": "Over 3 Corners for Colorado Rapids", + "handicap": "3" + }, + { + "id": "807040642", + "odds": "2.100", + "name": "Darren Yapi to Score or Assist", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:49:07+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289260", + "FI": "174219006", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:45:40+03:00", + "Odds": [ + { + "id": "806753712", + "odds": "8.500", + "name": "Brian White", + "handicap": "" + }, + { + "id": "806753521", + "odds": "7.000", + "name": "William Agada", + "handicap": "" + }, + { + "id": "714859829", + "odds": "2.500", + "name": "FT Result: Real Salt Lake", + "handicap": "" + }, + { + "id": "812514424", + "odds": "1.333", + "name": "William Agada: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812377943", + "odds": "1.400", + "name": "Diogo Goncalves: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714859831", + "odds": "2.600", + "name": "FT Result: Vancouver Whitecaps", + "handicap": "" + }, + { + "id": "812380351", + "odds": "2.100", + "name": "Pedro Vite: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380265", + "odds": "2.750", + "name": "Brian White: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "827384577", + "odds": "1.666", + "name": "Over 4 Corners for Real Salt Lake", + "handicap": "4" + }, + { + "id": "827384725", + "odds": "1.909", + "name": "Over 4 Corners for Vancouver Whitecaps", + "handicap": "4" + }, + { + "id": "806747601", + "odds": "1.666", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "812377945", + "odds": "1.833", + "name": "Dominik Marczuk: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812380239", + "odds": "2.250", + "name": "Ali Ahmed: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "806749654", + "odds": "1.800", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:49:17+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:49:02+03:00", + "Odds": [ + { + "id": "810813006", + "odds": "8.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "810805461", + "odds": "12.000", + "name": "Atletico Madrid 2-0", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.950", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257779", + "odds": "2.750", + "name": "Antoine Griezmann: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257773", + "odds": "2.750", + "name": "Angel Correa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257791", + "odds": "1.833", + "name": "Conor Gallagher: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306498", + "odds": "1.400", + "name": "Antoine Griezmann: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "832763395", + "odds": "1.400", + "name": "Cristhian Stuani: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818254988", + "odds": "1.444", + "name": "Viktor Tsygankov: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:49:17+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977006", + "FI": "174206945", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:49:02+03:00", + "Odds": [ + { + "id": "810813006", + "odds": "8.000", + "name": "Cristhian Stuani", + "handicap": "" + }, + { + "id": "810805461", + "odds": "12.000", + "name": "Atletico Madrid 2-0", + "handicap": "" + }, + { + "id": "713506855", + "odds": "1.950", + "name": "FT Result: Atletico Madrid", + "handicap": "" + }, + { + "id": "818257779", + "odds": "2.750", + "name": "Antoine Griezmann: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257773", + "odds": "2.750", + "name": "Angel Correa: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "818257791", + "odds": "1.833", + "name": "Conor Gallagher: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818257811", + "odds": "1.400", + "name": "Samuel Lino: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818306498", + "odds": "1.400", + "name": "Antoine Griezmann: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "810809282", + "odds": "1.615", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "813205972", + "odds": "1.363", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "713506844", + "odds": "3.700", + "name": "FT Result: Girona", + "handicap": "" + }, + { + "id": "832763395", + "odds": "1.400", + "name": "Cristhian Stuani: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "818254988", + "odds": "1.444", + "name": "Viktor Tsygankov: 1+ Shots on Target", + "handicap": "0.5" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:51:04+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822034", + "FI": "174588286", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:38:28+03:00", + "Odds": [ + { + "id": "820006660", + "odds": "1.571", + "name": "Mehmet Nayir: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036764", + "odds": "2.800", + "name": "FT Result: Konyaspor", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820321024", + "odds": "3.000", + "name": "Andraz Sporar: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036767", + "odds": "2.250", + "name": "FT Result: Alanyaspor", + "handicap": "" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820009298", + "odds": "1.666", + "name": "Eui-Jo Hwang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:51:04+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822034", + "FI": "174588286", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:38:28+03:00", + "Odds": [ + { + "id": "820006660", + "odds": "1.571", + "name": "Mehmet Nayir: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036764", + "odds": "2.800", + "name": "FT Result: Konyaspor", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820321024", + "odds": "3.000", + "name": "Andraz Sporar: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036767", + "odds": "2.250", + "name": "FT Result: Alanyaspor", + "handicap": "" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "820009298", + "odds": "1.666", + "name": "Eui-Jo Hwang: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819400742", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819391476", + "odds": "3.250", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:51:11+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822035", + "FI": "174588284", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:41:06+03:00", + "Odds": [ + { + "id": "820312223", + "odds": "3.400", + "name": "Duckens Nazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997827", + "odds": "1.500", + "name": "Gokdeniz Bayrakdar: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997755", + "odds": "1.666", + "name": "Alredo Fredy: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036662", + "odds": "1.950", + "name": "FT Result: Bodrum FK", + "handicap": "" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:51:11+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8822035", + "FI": "174588284", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:41:06+03:00", + "Odds": [ + { + "id": "820312223", + "odds": "3.400", + "name": "Duckens Nazon: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997827", + "odds": "1.500", + "name": "Gokdeniz Bayrakdar: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "827542181", + "odds": "3.400", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819997755", + "odds": "1.666", + "name": "Alredo Fredy: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036662", + "odds": "1.950", + "name": "FT Result: Bodrum FK", + "handicap": "" + }, + { + "id": "819383249", + "odds": "1.800", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:51:21+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8840198", + "FI": "174588288", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:43:03+03:00", + "Odds": [ + { + "id": "820021777", + "odds": "1.500", + "name": "Oleksandr Zubkov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036883", + "odds": "2.250", + "name": "FT Result: Trabzonspor", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820021638", + "odds": "1.727", + "name": "Anthony Nwakaeme: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820336294", + "odds": "3.400", + "name": "Landry Dimata: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036888", + "odds": "2.800", + "name": "FT Result: Samsunspor", + "handicap": "" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:51:21+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8840198", + "FI": "174588288", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:43:03+03:00", + "Odds": [ + { + "id": "820021777", + "odds": "1.500", + "name": "Oleksandr Zubkov: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "765036883", + "odds": "2.250", + "name": "FT Result: Trabzonspor", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820021638", + "odds": "1.727", + "name": "Anthony Nwakaeme: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819420355", + "odds": "2.625", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "820336294", + "odds": "3.400", + "name": "Landry Dimata: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036888", + "odds": "2.800", + "name": "FT Result: Samsunspor", + "handicap": "" + }, + { + "id": "819420878", + "odds": "1.571", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:51:26+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982903", + "FI": "174588280", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:50:29+03:00", + "Odds": [ + { + "id": "820343994", + "odds": "1.300", + "name": "Ciro Immobile: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819945189", + "odds": "2.200", + "name": "Rafa Silva: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819945232", + "odds": "2.625", + "name": "Joao Mario: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819344587", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819348703", + "odds": "1.666", + "name": "Ciro Immobile to Score", + "handicap": "" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:51:26+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9982903", + "FI": "174588280", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:50:29+03:00", + "Odds": [ + { + "id": "820343994", + "odds": "1.300", + "name": "Ciro Immobile: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819945189", + "odds": "2.200", + "name": "Rafa Silva: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819945232", + "odds": "2.625", + "name": "Joao Mario: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "819344587", + "odds": "1.727", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "819348703", + "odds": "1.666", + "name": "Ciro Immobile to Score", + "handicap": "" + }, + { + "id": "765036441", + "odds": "1.420", + "name": "FT Result: Besiktas", + "handicap": "" + }, + { + "id": "819343676", + "odds": "2.200", + "name": "Over 3 Goals", + "handicap": "3" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:52:49+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9977001", + "FI": "174206898", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:45:57+03:00", + "Odds": [ + { + "id": "810769529", + "odds": "6.500", + "name": "Robert Lewandowski", + "handicap": "" + }, + { + "id": "810770215", + "odds": "6.500", + "name": "Lamine Yamal", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.100", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283162", + "odds": "1.833", + "name": "Robert Lewandowski: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810767797", + "odds": "1.909", + "name": "Robert Lewandowski to Score", + "handicap": "" + }, + { + "id": "713503841", + "odds": "2.100", + "name": "FT Result: Barcelona", + "handicap": "" + }, + { + "id": "818283150", + "odds": "2.000", + "name": "Raphinha: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "810774636", + "odds": "1.571", + "name": "Lamine Yamal to Score or Assist", + "handicap": "" + }, + { + "id": "713503825", + "odds": "3.200", + "name": "FT Result: Athletic Bilbao", + "handicap": "" + }, + { + "id": "810774497", + "odds": "2.200", + "name": "Oihan Sancet to Score or Assist", + "handicap": "" + }, + { + "id": "813208230", + "odds": "1.285", + "name": "Over 7 Corners", + "handicap": "7.0" + }, + { + "id": "827038436", + "odds": "1.400", + "name": "Over 3 Corners for Athletic Bilbao", + "handicap": "3" + }, + { + "id": "827038961", + "odds": "1.444", + "name": "Over 3 Corners for Barcelona", + "handicap": "3" + }, + { + "id": "810764064", + "odds": "1.444", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:52:54+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9288599", + "FI": "174219011", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:49:29+03:00", + "Odds": [ + { + "id": "806795106", + "odds": "13.000", + "name": "Alonso Martinez", + "handicap": "" + }, + { + "id": "806793895", + "odds": "15.000", + "name": "Hugo Cuypers", + "handicap": "" + }, + { + "id": "714860035", + "odds": "1.950", + "name": "FT Result: New York City FC", + "handicap": "" + }, + { + "id": "812414097", + "odds": "1.500", + "name": "Julian Fernandez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812414089", + "odds": "1.727", + "name": "Hannes Wolf: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714860037", + "odds": "3.600", + "name": "FT Result: Chicago Fire", + "handicap": "" + }, + { + "id": "812415639", + "odds": "1.615", + "name": "Brian Gutierrez: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812415683", + "odds": "1.571", + "name": "Jonathan Bamba: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812875983", + "odds": "1.500", + "name": "Over 8 Corners", + "handicap": "8.0" + }, + { + "id": "806787411", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "806786217", + "odds": "2.375", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "714860035", + "odds": "1.950", + "name": "FT Result: New York City FC", + "handicap": "" + }, + { + "id": "806792787", + "odds": "3.100", + "name": "Julian Fernandez to Score", + "handicap": "" + }, + { + "id": "827388794", + "odds": "1.615", + "name": "Most Corners: New York City FC", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:53:03+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9289259", + "FI": "174219015", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:48:15+03:00", + "Odds": [ + { + "id": "806822225", + "odds": "15.000", + "name": "Emmanuel Latte Lath", + "handicap": "" + }, + { + "id": "806820954", + "odds": "9.000", + "name": "Ferreira Evander", + "handicap": "" + }, + { + "id": "714860470", + "odds": "2.400", + "name": "FT Result: Atlanta United", + "handicap": "" + }, + { + "id": "812421030", + "odds": "1.571", + "name": "Miguel Almiron: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812420959", + "odds": "1.444", + "name": "Aleksey Miranchuk: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "714860473", + "odds": "2.700", + "name": "FT Result: FC Cincinnati", + "handicap": "" + }, + { + "id": "812886421", + "odds": "1.363", + "name": "Luca Orellano: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812886731", + "odds": "1.285", + "name": "Ahoueke Denkey: 1+ Shots on Target", + "handicap": "0.5" + }, + { + "id": "812885974", + "odds": "1.500", + "name": "Over 8 Corners", + "handicap": "8.0" + }, + { + "id": "806814209", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "806812506", + "odds": "2.500", + "name": "Over 3 Goals", + "handicap": "3" + }, + { + "id": "812424314", + "odds": "2.625", + "name": "Luca Orellano: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "812887182", + "odds": "3.000", + "name": "Saba Lobzhanidze: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "806814209", + "odds": "1.533", + "name": "Both Teams to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:53:09+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "8826752", + "FI": "174588282", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:51:00+03:00", + "Odds": [ + { + "id": "820350480", + "odds": "1.300", + "name": "Youssef En Nesyri: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "820042485", + "odds": "1.571", + "name": "Conceicao Talisca: 2+ Shots on Target", + "handicap": "1.5" + }, + { + "id": "765036542", + "odds": "1.222", + "name": "FT Result: Fenerbahce", + "handicap": "" + }, + { + "id": "819432775", + "odds": "1.500", + "name": "Youssef En Nesyri to Score", + "handicap": "" + }, + { + "id": "819430970", + "odds": "2.100", + "name": "Fenerbahce \u0026 Yes", + "handicap": "" + }, + { + "id": "819428625", + "odds": "2.250", + "name": "Over 4 Goals", + "handicap": "4" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:53:15+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9929184", + "FI": "174363978", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:51:58+03:00", + "Odds": [ + { + "id": "774550908", + "odds": "21.000", + "name": "Antony", + "handicap": "" + }, + { + "id": "774550887", + "odds": "15.000", + "name": "Nicolas Jackson", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734591996", + "odds": "1.833", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "774549605", + "odds": "2.300", + "name": "Cole Palmer to Score", + "handicap": "" + }, + { + "id": "774549558", + "odds": "2.875", + "name": "Nicolas Jackson to Score", + "handicap": "" + }, + { + "id": "734595170", + "odds": "1.363", + "name": "Chelsea to Lift the Trophy", + "handicap": "" + }, + { + "id": "734590525", + "odds": "2.000", + "name": "Over 2 Goals", + "handicap": "2" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + +{ + "time": "2025-05-23T17:53:28+03:00", + "error": "ERROR: duplicate key value violates unique constraint \"odds_market_id_name_handicap_key\" (SQLSTATE 23505)", + "record": { + "EventID": "9924545", + "FI": "174307725", + "MarketCategory": "main", + "MarketType": "betboost", + "MarketName": "BetBoost", + "MarketID": "0", + "UpdatedAt": "2025-05-23T17:49:43+03:00", + "Odds": [ + { + "id": "726811888", + "odds": "13.000", + "name": "Lautaro Martinez", + "handicap": "" + }, + { + "id": "726811982", + "odds": "11.000", + "name": "Khvicha Kvaratskhelia", + "handicap": "" + }, + { + "id": "726816128", + "odds": "1.615", + "name": "PSG to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811208", + "odds": "3.250", + "name": "Bradley Barcola to Score", + "handicap": "" + }, + { + "id": "726806476", + "odds": "1.909", + "name": "Over 2 Goals", + "handicap": "2" + }, + { + "id": "726816130", + "odds": "2.300", + "name": "Inter Milan to Lift the Trophy", + "handicap": "" + }, + { + "id": "726811216", + "odds": "3.250", + "name": "Marcus Thuram to Score", + "handicap": "" + }, + { + "id": "726807442", + "odds": "1.750", + "name": "Both Teams to Score", + "handicap": "" + }, + { + "id": "726816349", + "odds": "2.300", + "name": "Lautaro Martinez to Score or Assist", + "handicap": "" + }, + { + "id": "726816313", + "odds": "2.000", + "name": "Khvicha Kvaratskhelia to Score or Assist", + "handicap": "" + }, + { + "id": "726816123", + "odds": "2.250", + "name": "PSG to Win in 90 Mins", + "handicap": "" + }, + { + "id": "726807627", + "odds": "3.400", + "name": "PSG to Score in Both Halves", + "handicap": "" + }, + { + "id": "726811207", + "odds": "4.000", + "name": "Desire Doue to Score", + "handicap": "" + } + ], + "Name": "", + "Handicap": "", + "OddsVal": 0 + } +} + diff --git a/tmp/build-errors.log b/tmp/build-errors.log new file mode 100644 index 0000000..949b4b8 --- /dev/null +++ b/tmp/build-errors.log @@ -0,0 +1 @@ +exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1 \ No newline at end of file diff --git a/tmp/main b/tmp/main new file mode 100644 index 0000000..f50d767 Binary files /dev/null and b/tmp/main differ