propline_get_event_stats
Retrieve per-player box-score stats for completed events, including strikeouts, points, rebounds, and shots-on-goal, independent of sportsbook lines.
Instructions
Book-agnostic raw box-score stats for a completed event. Returns per-player stats (e.g. strikeouts, hits, points, rebounds, shots-on-goal) decoupled from any sportsbook's lines. Free tier.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sport_key | Yes | ||
| event_id | Yes |
Implementation Reference
- src/index.ts:258-262 (handler)Handler for propline_get_event_stats tool; calls client().getEventStats() with sport_key and event_id arguments.
handler: (args) => client().getEventStats( args.sport_key as string, args.event_id as string | number, ), - src/index.ts:249-257 (schema)Input schema for propline_get_event_stats: requires sport_key (string) and event_id (string|number).
inputSchema: { type: "object", properties: { sport_key: { type: "string" }, event_id: { type: ["string", "number"] }, }, required: ["sport_key", "event_id"], additionalProperties: false, }, - src/index.ts:243-263 (registration)Tool registration entry for propline_get_event_stats in the tools array, including name, description, inputSchema, and handler.
{ name: "propline_get_event_stats", description: "Book-agnostic raw box-score stats for a completed event. Returns " + "per-player stats (e.g. strikeouts, hits, points, rebounds, " + "shots-on-goal) decoupled from any sportsbook's lines. Free tier.", inputSchema: { type: "object", properties: { sport_key: { type: "string" }, event_id: { type: ["string", "number"] }, }, required: ["sport_key", "event_id"], additionalProperties: false, }, handler: (args) => client().getEventStats( args.sport_key as string, args.event_id as string | number, ), }, - src/client.ts:141-143 (helper)PropLineClient.getEventStats() makes a GET request to /v1/sports/{sportKey}/events/{eventId}/stats.
getEventStats(sportKey: string, eventId: string | number): Promise<unknown> { return this.request(`/v1/sports/${sportKey}/events/${eventId}/stats`); }