Skip to main content
GET
https://api.mrdoge.co
/
v2
/
ai
/
processed-insights
Get Processed Insights
curl --request GET \
  --url https://api.mrdoge.co/v2/ai/processed-insights \
  --header 'Authorization: <authorization>'
Requires Authentication: This endpoint requires an API key and costs 2 credits per request.
Returns processed AI insights for events including market efficiency scores and value opportunity analysis.

Authorization

Authorization
string
default:"Bearer "
required
Your API key for authentication

Query Parameters

eventId
string
Filter by specific event
teamNames
string
Filter by team names (comma-separated)
limit
string
default:"5"
Maximum number of insights
timezone
string
Timezone for date filtering
status
string
Filter insights by event status (repeat the parameter or use comma-separated values). Options: upcoming, live, completed. Defaults to upcoming + live.

Response

Returns an array of processed insight objects containing:
  • Market efficiency scores
  • Value opportunity assessment
  • AI analysis data

Example Request

curl -H "Authorization: Bearer sk_live_..." \
  "https://api.mrdoge.co/v2/ai/processed-insights?eventId=43089384"

Example Response

{
  "data": [
    {
      "eventId": "43089384",
      "marketEfficiencyScore": 0.85,
      "valueOpportunities": {
        "recommendations": [
          {
            "edge": 12.5,
            "market": "SOCCER_MATCH_RESULT",
            "confidence": "High"
          },
          {
            "edge": 8.2,
            "market": "SOCCER_UNDER_OVER",
            "confidence": "Medium"
          }
        ]
      },
      "riskFactors": [],
      "aiNotes": "Manchester City shows a clear advantage in offensive capabilities and home form. The Over 3.5 bet is supported by both teams' scoring patterns.\n\nConfidence: High confidence in the Away Win due to City's strong home performance and Liverpool's defensive vulnerabilities.",
      "event": {
        "homeTeam": "Manchester City",
        "awayTeam": "Liverpool",
        "commenceTime": "2025-11-09T16:30:00.000Z",
        "league": "Premier League"
      },
      "analysisTimestamp": "2025-11-08T18:01:59.168Z"
    }
  ]
}

Market Efficiency Score

The AI calculates a Market Efficiency Score (0-100) for each event:
  • 90-100: Extremely efficient, rare value opportunities
  • 80-89: Efficient market, requires deep analysis
  • 70-79: Moderately efficient, value exists
  • Below 70: Inefficient market, multiple opportunities
What affects efficiency:
  • League popularity (Premier League more efficient than lower tiers)
  • Time until kickoff (closer = more efficient)
  • Public attention (high-profile matches = more efficient)