action spinitron_get_spins { label: "Returns spins optionally filtered by {start} and/or {end} datetimes" description: "Get Spins optionally filtered by a datetime range. Only past Spins will be returned.\n" provider: spinitron method: GET path: "/spins" encoding: json input: { type: "object" properties: { end: { type: "string" format: "date-time" } playlist_id: { type: "integer" } show_id: { type: "integer" } start: { type: "string" format: "date-time" } } additionalProperties: false } output: { type: "object" } }