propline_get_resolution_summary
Retrieve aggregated counts of player props graded against real box scores over the last N days, including total settled props, games, sports, and per-sport breakdowns. Useful for verifying coverage volume.
Instructions
Free-tier endpoint. Returns the factual volume of player props PropLine has graded against real box scores over the last N days (aggregated counts only): total graded/settled, games, sports covered, plus per-sport and top-market breakdowns. Useful for: 'how much graded prop data does PropLine have, what's the coverage'. A coverage proof, never a profitability claim.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | Look-back window, 1-90. Defaults to 30. |
Implementation Reference
- src/index.ts:220-242 (registration)Tool registration entry in the tools array: defines name, description, inputSchema, and handler for 'propline_get_resolution_summary'. Input schema accepts an optional 'days' number.
{ name: "propline_get_resolution_summary", description: "Free-tier endpoint. Returns the factual volume of player props " + "PropLine has graded against real box scores over the last N days " + "(aggregated counts only): total graded/settled, games, sports " + "covered, plus per-sport and top-market breakdowns. Useful for: " + "'how much graded prop data does PropLine have, what's the " + "coverage'. A coverage proof, never a profitability claim.", inputSchema: { type: "object", properties: { days: { type: "number", description: "Look-back window, 1-90. Defaults to 30.", }, }, required: [], additionalProperties: false, }, handler: (args) => client().getResolutionSummary({ days: args.days as number | undefined }), }, - src/index.ts:240-241 (handler)Handler lambda that delegates to client().getResolutionSummary(), passing the 'days' argument.
handler: (args) => client().getResolutionSummary({ days: args.days as number | undefined }), - src/index.ts:229-239 (schema)Input schema for the tool: object type with optional 'days' property (number, 1-90, default 30), no required fields.
inputSchema: { type: "object", properties: { days: { type: "number", description: "Look-back window, 1-90. Defaults to 30.", }, }, required: [], additionalProperties: false, }, - src/client.ts:135-139 (helper)getResolutionSummary method on PropLineClient: makes GET request to /v1/markets/resolution-summary with optional 'days' query parameter.
getResolutionSummary(opts: { days?: number } = {}): Promise<unknown> { return this.request(`/v1/markets/resolution-summary`, { days: opts.days, }); }