Edge Sports Logo

EDGE SPORTS

    • Introduction
    • Quick Start
    • Authentication
    • Terms of Service
    • Pick Discovery
    • Stats
    • Odds
    • Writeups
    • Pick Explorer App
    • Player Trends App
  • Beta
    This a preview of the latest version of the API.

Quick Start

Read in 1 minute



See how to get started with the Edge Sports API below with code examples in Python, Node.js, and C#.


1
2    import requests
3    import json
4
5    url = "https://edgesports.dev/api/v1/nfl/picks"
6    headers = { 
7        "Authorization": f"Bearer {apiKey}"
8    }
9
10    response = requests.get(url, headers=headers)
11    print(response.json())
12