SpreadKnowledge API

We are providing direct access to our features via API so your application can use our data as the source. This is a white label of our data you can customize and display to fit your needs. Below are some example API requests that you can use to get started querying our data. Contact us for billing questions and to receive an example API key to start testing.

Download Postman to test our API
https://www.getpostman.com/downloads/

Value Picks

GET https://api.spreadknowledge.com/api/v2/valuepicks

Headers
  • apikey: [AddYourApiKeyHere]
  • Accept: application/json

Request parameters (query string)
  • leagueId: league id  (eSports – 132132, NBA = 1, MLB = 2, NFL = 3, NHL = 6)
  • dataProviderId: sportbook id (DraftKings – 4)
  • startDate: UTC date in the format YYYY-MM-DD (e.g. startDate=2021-03-11T12%3A00%3A00.000Z)
  • pickPriceType: near_even, underdog, favorite
  • pickTypeGroup: win, ats, total
  • limit: number of records returned in the response.

Example:

https://api.spreadknowledge.com/api/v2/valuepicks?leagueId=132132&oddsformat=american&dataProviderId=4&limit=5

Response Code: 200
Response Body
[  
   {
        "SportImageUrl": "https://app.spreadknowledge.com/Resources/Images/ContestSportsGroups/contest_sport_group_eSport.png",
        "LeagueId": 132132,
        "League": "eSports",
        "Match": {
            "Id": 1563862,
            "Time": "2021-03-12T21:00:00.0000000Z",
            "Live": false,
            "Party1": {
                "Id": 0,
                "Name": "G2 Esports",
                "Code": null,
                "ColorHex": null,
                "Score": 0,
                "Winner": false,
                "LogoUrl": "https://api.spreadknowledge.com/v1/static/files/19123?width=18&height=18",
                "CountryFlagUrl": null
            },
            "Party2": {
                "Id": 0,
                "Name": "Excel Esports",
                "Code": null,
                "ColorHex": null,
                "Score": 0,
                "Winner": false,
                "LogoUrl": "https://api.spreadknowledge.com/v1/static/files/19086?width=18&height=18",
                "CountryFlagUrl": null
            }
        },
        "GameId": 1563862,
        "GameTime": "2021-03-12T21:00:00.0000000Z",
        "GamePickId": 40697226,
        "MatchPickId": 40697226,
        "PickType": "under",
        "Handicap": null,
        "Price": "-621",
        "PickRecord": "0-0-0",
        "Pick": "Total Under 27.5",
        "PickShort": "Total Under",
        "PickActive": true,
        "Restricted": false,
        "ValueGrade": {
            "Letter": "A+",
            "Grade": "high",
            "Details": "Pick Total under (game total under) is a Strongest pick, Grade = A+",
            "Score": 0.97357
        },
        "PredictionPercentage": "61",
        "PredictionPercentageDisplay": "61%",
        "PredictionDetails": "Picks predicted chance of winning, based off artificial intelligence",
        "Profit": "-",
        "ProfitDetails": "Picks profit on a 1 - unit bet",
        "Difference": "-",
        "DifferenceDetails": "Difference in points/runs/goals during this time period",
        "PointsDifferential": "-",
        "PointsDifferentialDetails": "-",
        "HistoricalPerformance": [
            {
                "Date": "2021-01-30",
                "NetScore": "2",
                "PickResult": "win",
                "Details": [
                    "WIN, +2 units",
                    "01/30 2:00pm - G2 Esports 0 vs FC Schalke 04 (esports) 0
01/30 11:00am - Astralis 0 vs Excel Esports 0"
                ]
            },
            {
                "Date": "2021-02-05",
                "NetScore": "4",
                "PickResult": "win",
                "Details": [
                    "WIN, +2 units",
                    "02/05 2:00pm - G2 Esports 0 vs Team Vitality 0
02/05 1:00pm - Excel Esports 0 vs Misfits Gaming 0"
                ]
            }
        ]
    }
]