action spinitron_get_playlists { label: "Returns playlists optionally filtered by {start} and/or {end} datetimes" description: "Get Playlists optionally filtered by a datetime range.\nOnly past Playlists will be returned (with allowed tolerance equals 1 hour in future).\n\nOrdered chronologically from newest to oldest.\n" provider: spinitron method: GET path: "/playlists" encoding: json input: { type: "object" properties: { end: { type: "string" format: "date-time" } persona_id: { type: "integer" } show_id: { type: "integer" } start: { type: "string" format: "date-time" } } additionalProperties: false } output: { type: "object" } }