Skip to content

Quickstart

  • A Sharp-tier subscription on nbaproplab.com
  • An API key (created in your account settings)
  1. Create an API key

    Log in to nbaproplab.com/account, go to API Keys, and create a new key. Copy the raw key — it’s only shown once.

  2. Fetch today’s picks

    Terminal window
    curl -H "X-API-Key: $NBAV3_DATA_TOKEN" \
    https://nbaproplab.com/api/v1/data/picks/today
  3. Explore the response

    The response contains today’s scored picks with spider chart data:

    [
    {
    "id": 12345,
    "playerName": "LeBron James",
    "statType": "Points",
    "line": 25.5,
    "direction": "Over",
    "score": 72.4,
    "rating": "Good",
    "confidence": 0.81,
    "spiderData": {
    "PlayerProfile": 78,
    "Matchup": 65,
    "Synergy": 70,
    "GameContext": 80,
    "MarketLine": 68,
    "AnalysisQuality": 75,
    "ExternalSignals": 60
    }
    }
    ]
GoalEndpointGuide
Get picks for a specific dateGET /picks?date=2026-05-20Working with Picks
Check your API usageGET /usageRate Limits
Set up real-time alertsPOST /webhook-subscriptionsWebhooks
Export historical dataPOST /exportsBulk Exports

We recommend storing your credentials as environment variables:

Terminal window
export NBAV3_DATA_TOKEN="your_api_key_here"
export NBAV3_API_BASE_URL="https://nbaproplab.com" # optional, this is the default