Mr. Doge

Introduction

The Mr. Doge SDK gives you live odds, AI picks, and market data across every major sport. One typed client, two transports, every framework.

The Mr. Doge SDK powers the Mr. Doge app: live odds across every major sport, AI picks with reasoning attached, and market data you can build on. These docs walk you through installation, authentication, and every method the SDK exposes.

What's in the box

Live matches & odds

Hundreds of leagues across soccer, basketball, tennis, volleyball, baseball, hockey, and football. Real-time deltas over WebSocket.

AI picks with reasoning

Every pick exposes confidence, edge percentage, and the model's rationale.

Dual transport

WebSocket for live subscriptions, HTTP for one-shot reads. Same typed client picks the right path.

Typed end to end

Schemas validate every request server-side and ship as TypeScript types to your client. Autocomplete from the first call to the last.

30-second taste

npm i @mrdoge/node
index.ts
import { MrDoge } from "@mrdoge/node";

const mrdoge = new MrDoge({
  apiKey: process.env.MRDOGE_API_KEY!,
});

const { data } = await mrdoge.matches.list({
  sports: ["soccer"],
  status: ["live"],
  limit: 10,
});

console.log(data);

See Installation for the other four packages (browser, React, edge runtimes, types-only) and Quickstart for live subscriptions.

Where to go next

On this page