Guides
Longer-form walkthroughs. Architecture, trade-offs, production patterns.
Different mode from the Cookbook. Cookbook recipes are < 20 lines and run as-is. Guides take a full problem end-to-end — endpoint choice, verdict logic, retry strategy, what to do when something is missing.
| Guide | What you'll build |
|---|---|
| Building a prop-analysis bot | Hit /analysis/player-prop, read the card, act on it — then scan whole slates with /analysis/stat-board. |
| MLB box scores with typed stat lines | Find a contest, read batting/pitching phase measures, and step down to pitch-level play-by-play. |
| Production checklist | The ten things that bite you in production before they bite you. |
Get team logo PNG. GET
Returns the team's logo as an `image/png` binary response with a `Cache-Control: public, max-age=604800` header (7-day client cache). Logos are served through a cached image proxy, so clients always hit a stable URL on this API regardless of the upstream source. `team_id` must be the UUID-backed team id used by the logo asset store. Returns `404` if no logo is available for the team.
Building a prop-analysis bot
Call /analysis/player-prop with a person id, read the card, act on it.