{
"openapi": "3.0.3",
"info": {
"title": "Ampache REST API",
"version": "8.0.0",
"description": "OpenAPI 3.0 specification for Ampache REST API, based on the official documentation and RESTful path conventions. Parameters for write operations (POST/PUT/PATCH/DELETE) may be supplied as a query string, a form-encoded body (application/x-www-form-urlencoded), or a JSON body (application/json); body values take precedence over query values on conflict.\n\nAuthentication: every method accepts a Bearer token or the `auth` header, so no `auth` query parameter is required anywhere -- including handshake and ping. The `auth` query parameter is still honoured for RPC compatibility.\n\nHTTP methods: the RPC surface answers most actions over GET, and those calls continue to work. Where a call carries a credential or changes state, please use POST -- it keeps secrets out of server logs, proxy logs, browser history and `Referer` headers, and it follows REST conventions. `GET /me/lost-password` is the clearest example: it carries a reset token and sends an email, so a prefetched link is a real hazard.\n\nSerialisation: this document describes the JSON responses. The XML surface (`format=xml`, or the `/xml/` REST path) mirrors the same data structurally; it differs in shape -- attributes and repeated elements rather than arrays -- so the schemas here are not a byte-for-byte XML contract.",
"license": {
"name": "AGPL-3.0",
"url": "https://www.gnu.org/licenses/agpl-3.0.html"
}
},
"servers": [
{
"url": "{ampacheUrl}/rest/{apiVersion}/{format}",
"variables": {
"ampacheUrl": {
"default": "https://develop.ampache.dev",
"description": "Base URL to your Ampache Server."
},
"apiVersion": {
"enum": [
"3",
"4",
"5",
"6",
"8"
],
"default": "8",
"description": "Ampache API major version"
},
"format": {
"enum": [
"json",
"xml"
],
"default": "json",
"description": "Response format. JSON and XML calls are the same, only the response differs."
}
}
}
],
"tags": [
{
"name": "Authentication",
"description": "Authentication, session management, registration and health endpoints"
},
{
"name": "Albums",
"description": "Album browsing, lookup and album-related metadata"
},
{
"name": "Artists",
"description": "Artist browsing, artist details and related albums or songs"
},
{
"name": "Songs",
"description": "Song browsing, song metadata, lyrics, scrobbling and play history"
},
{
"name": "Playlists",
"description": "Playlist creation, editing, deletion and playlist item management"
},
{
"name": "Bookmarks",
"description": "Bookmark creation, editing and lookup for media items"
},
{
"name": "Search",
"description": "Search endpoints and search rule discovery"
},
{
"name": "Catalogs",
"description": "Catalog management, scanning and catalog maintenance tasks"
},
{
"name": "Genres",
"description": "Genre browsing and genre-related albums, artists and songs"
},
{
"name": "Labels",
"description": "Label browsing and label-related artists"
},
{
"name": "Licenses",
"description": "License browsing and license-related songs"
},
{
"name": "Browsing, Indexes and Lists",
"description": "Folder-style browsing index and list-style lookup endpoints"
},
{
"name": "Streaming and Downloads",
"description": "Media streaming and download endpoints"
},
{
"name": "Artwork",
"description": "Artwork retrieval and artwork update endpoints"
},
{
"name": "Videos",
"description": "Video browsing and video metadata"
},
{
"name": "Podcasts",
"description": "Podcast management and podcast episode endpoints"
},
{
"name": "Live Streams",
"description": "Live stream (radio) creation, editing and browsing"
},
{
"name": "Shares",
"description": "Public share creation, editing and deletion"
},
{
"name": "Social",
"description": "Followers, following, timelines and social interactions"
},
{
"name": "Now Playing",
"description": "Playback state, now playing and player updates"
},
{
"name": "Users",
"description": "Administrative user management and user-scoped listings"
},
{
"name": "Preferences",
"description": "Server and user preference management"
},
{
"name": "Maintenance",
"description": "Deleted content and system maintenance endpoints"
},
{
"name": "Ratings and Flags",
"description": "Rating, favouriting and flagging of media items"
},
{
"name": "Playback Control",
"description": "Localplay and democratic playback control endpoints"
},
{
"name": "Utilities",
"description": "Helper and utility endpoints such as metadata lookup and URL conversion"
}
],
"components": {
"securitySchemes": {
"ApiKeyAuthQuery": {
"type": "apiKey",
"in": "query",
"name": "auth",
"description": "Ampache session token or API key passed as the `auth` query parameter. Works everywhere, but prefer the `auth` header or a Bearer token: a query string is recorded in server logs, proxy logs and browser history."
},
"ApiKeyAuthHeader": {
"type": "apiKey",
"in": "header",
"name": "auth",
"description": "Ampache session token or API key supplied via the `auth` HTTP header. Accepted on every method, so no `auth` query parameter is needed."
},
"BearerAuth": {
"type": "http",
"scheme": "bearer",
"bearerFormat": "opaque",
"description": "Bearer token authentication. Accepted on every method, including handshake and ping, so no `auth` parameter is needed."
}
},
"schemas": {
"SuccessResponse": {
"type": "object",
"properties": {
"success": {
"type": "string"
}
},
"additionalProperties": true
},
"ErrorResponse": {
"type": "object",
"properties": {
"error": {
"type": "object",
"properties": {
"errorCode": {
"type": "string",
"example": "4742"
},
"errorAction": {
"type": "string",
"example": "user_edit"
},
"errorType": {
"type": "string",
"example": "account"
},
"errorMessage": {
"type": "string",
"example": "Require: 100"
}
},
"required": [
"errorCode",
"errorAction",
"errorType",
"errorMessage"
],
"additionalProperties": true
}
},
"required": [
"error"
],
"additionalProperties": true
},
"FolderBrowseItem": {
"type": "object",
"description": "One child of the folder being browsed. `parent` is always the id of that folder, so an item lifted out of the list still knows where it came from; it is `-1` when the folder being browsed is the virtual root.",
"properties": {
"id": {
"type": "string"
},
"object_type": {
"type": "string",
"enum": [
"folder",
"podcast_episode",
"song",
"video"
]
},
"title": {
"type": "string",
"nullable": true
},
"parent": {
"type": "string",
"description": "The id of the folder being browsed, so an item lifted out of the list still knows where it came from. Always present -- `-1` when the parent is the virtual root."
},
"path": {
"type": "string",
"nullable": true
},
"art": {
"type": "string",
"nullable": true
},
"has_art": {
"type": "boolean"
},
"play_url": {
"type": "string"
},
"rating": {
"type": "integer",
"nullable": true
},
"averagerating": {
"type": "integer",
"nullable": true
}
},
"required": [
"id",
"object_type",
"title",
"parent",
"path",
"art",
"has_art",
"play_url",
"rating",
"averagerating"
],
"additionalProperties": true
},
"FolderBrowseNode": {
"type": "object",
"description": "The folder that was browsed, and its children. `parent` is the id of the folder this one hangs off: a top level folder reports the virtual root (`-1`) rather than nothing, so a client can always walk up, and `null` means this is the virtual root itself.",
"properties": {
"id": {
"type": "string"
},
"title": {
"type": "string",
"nullable": true
},
"parent": {
"type": "string",
"nullable": true,
"description": "The id of the folder this one hangs off. A top level folder reports the virtual root (`-1`) rather than nothing, so a client can always walk up; `null` means this is the virtual root itself."
},
"path": {
"type": "string",
"nullable": true
},
"catalog": {
"type": "string"
},
"items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FolderBrowseItem"
}
}
},
"required": [
"id",
"title",
"parent",
"path",
"catalog",
"items"
],
"additionalProperties": true
},
"FolderBrowseResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"folder": {
"$ref": "#/components/schemas/FolderBrowseNode"
}
},
"required": [
"total_count",
"md5",
"folder"
],
"additionalProperties": true
},
"AlbumObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string",
"nullable": true
},
"prefix": {
"type": "string",
"nullable": true
},
"basename": {
"type": "string",
"nullable": true
},
"artist": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string",
"nullable": true
},
"prefix": {
"type": "string",
"nullable": true
},
"basename": {
"type": "string",
"nullable": true
}
},
"required": [
"id",
"name",
"prefix",
"basename"
],
"additionalProperties": true,
"nullable": true
},
"artists": {
"type": "array",
"items": {
"$ref": "#/components/schemas/NamedReference"
}
},
"songartists": {
"type": "array",
"items": {
"$ref": "#/components/schemas/NamedReference"
}
},
"time": {
"type": "integer"
},
"year": {
"type": "integer"
},
"tracks": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SongObject"
}
},
"songcount": {
"type": "integer"
},
"diskcount": {
"type": "integer"
},
"type": {
"type": "string",
"nullable": true
},
"genre": {
"type": "array",
"items": {
"$ref": "#/components/schemas/GenreReference"
}
},
"art": {
"type": "string",
"nullable": true
},
"has_art": {
"type": "boolean"
},
"flag": {
"type": "boolean"
},
"rating": {
"type": "integer",
"nullable": true
},
"averagerating": {
"type": "number",
"nullable": true
},
"mbid": {
"type": "string",
"nullable": true
},
"mbid_group": {
"type": "string",
"nullable": true
},
"catalog": {
"type": "string"
}
},
"required": [
"id",
"name",
"prefix",
"basename",
"time",
"year",
"tracks",
"songcount",
"diskcount",
"type",
"genre",
"art",
"has_art",
"flag",
"rating",
"averagerating",
"mbid",
"mbid_group",
"catalog"
],
"additionalProperties": true
},
"SongObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"title": {
"type": "string",
"nullable": true
},
"name": {
"type": "string",
"nullable": true
},
"artist": {
"$ref": "#/components/schemas/NamedReference"
},
"artists": {
"type": "array",
"items": {
"$ref": "#/components/schemas/NamedReference"
}
},
"album": {
"$ref": "#/components/schemas/NamedReference"
},
"albumartist": {
"$ref": "#/components/schemas/NamedReference"
},
"disk": {
"type": "integer"
},
"disksubtitle": {
"type": "string",
"nullable": true
},
"bpm": {
"type": "number",
"nullable": true
},
"track": {
"type": "integer"
},
"filename": {
"type": "string",
"nullable": true
},
"genre": {
"type": "array",
"items": {
"$ref": "#/components/schemas/GenreReference"
}
},
"mood": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"id",
"name"
],
"additionalProperties": true
}
},
"playlisttrack": {
"type": "integer"
},
"time": {
"type": "integer"
},
"year": {
"type": "integer"
},
"format": {
"type": "string",
"nullable": true
},
"stream_format": {
"type": "string",
"nullable": true
},
"bitrate": {
"type": "integer",
"nullable": true
},
"stream_bitrate": {
"type": "integer",
"nullable": true
},
"rate": {
"type": "integer"
},
"mode": {
"type": "string",
"nullable": true
},
"mime": {
"type": "string",
"nullable": true
},
"stream_mime": {
"type": "string",
"nullable": true
},
"url": {
"type": "string"
},
"size": {
"type": "integer"
},
"mbid": {
"type": "string",
"nullable": true
},
"art": {
"type": "string",
"nullable": true
},
"has_art": {
"type": "boolean"
},
"flag": {
"type": "boolean"
},
"rating": {
"type": "integer",
"nullable": true
},
"averagerating": {
"type": "number",
"nullable": true
},
"playcount": {
"type": "integer"
},
"last_played": {
"type": "string",
"nullable": true
},
"catalog": {
"type": "string"
},
"composer": {
"type": "string",
"nullable": true
},
"channels": {
"type": "integer",
"nullable": true
},
"comment": {
"type": "string",
"nullable": true
},
"license": {
"type": "string",
"nullable": true
},
"publisher": {
"type": "string",
"nullable": true
},
"language": {
"type": "string",
"nullable": true
},
"lyrics": {
"type": "string",
"nullable": true
},
"replaygain_album_gain": {
"type": "number",
"nullable": true
},
"replaygain_album_peak": {
"type": "number",
"nullable": true
},
"replaygain_track_gain": {
"type": "number",
"nullable": true
},
"replaygain_track_peak": {
"type": "number",
"nullable": true
},
"r128_album_gain": {
"type": "number",
"nullable": true
},
"r128_track_gain": {
"type": "number",
"nullable": true
},
"metadata": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"required": [
"id",
"title",
"name",
"artist",
"artists",
"album",
"disk",
"disksubtitle",
"bpm",
"track",
"filename",
"genre",
"mood",
"playlisttrack",
"time",
"year",
"format",
"stream_format",
"bitrate",
"stream_bitrate",
"rate",
"mode",
"mime",
"stream_mime",
"url",
"size",
"mbid",
"art",
"has_art",
"flag",
"rating",
"averagerating",
"playcount",
"last_played",
"catalog",
"composer",
"channels",
"comment",
"license",
"publisher",
"language",
"lyrics",
"replaygain_album_gain",
"replaygain_album_peak",
"replaygain_track_gain",
"replaygain_track_peak",
"r128_album_gain",
"r128_track_gain"
],
"additionalProperties": true
},
"AlbumsResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"album": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AlbumObject"
}
}
},
"required": [
"total_count",
"md5",
"album"
],
"additionalProperties": true
},
"SongsResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"song": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SongObject"
}
}
},
"required": [
"total_count",
"md5",
"song"
],
"additionalProperties": true
},
"ArtistObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string",
"nullable": true
},
"prefix": {
"type": "string",
"nullable": true
},
"basename": {
"type": "string",
"nullable": true
},
"albums": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AlbumObject"
}
},
"albumcount": {
"type": "integer"
},
"songs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SongObject"
}
},
"songcount": {
"type": "integer"
},
"genre": {
"type": "array",
"items": {
"$ref": "#/components/schemas/GenreReference"
}
},
"art": {
"type": "string",
"nullable": true
},
"has_art": {
"type": "boolean"
},
"flag": {
"type": "boolean"
},
"rating": {
"type": "integer",
"nullable": true
},
"averagerating": {
"type": "number",
"nullable": true
},
"mbid": {
"type": "string",
"nullable": true
},
"summary": {
"type": "string",
"nullable": true
},
"time": {
"type": "integer"
},
"yearformed": {
"type": "integer"
},
"placeformed": {
"type": "string",
"nullable": true
}
},
"required": [
"id",
"name",
"prefix",
"basename",
"albums",
"albumcount",
"songs",
"songcount",
"genre",
"art",
"has_art",
"flag",
"rating",
"averagerating",
"mbid",
"summary",
"time",
"yearformed",
"placeformed"
],
"additionalProperties": true
},
"GenreObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string",
"nullable": true
},
"albums": {
"type": "integer"
},
"artists": {
"type": "integer"
},
"songs": {
"type": "integer"
},
"videos": {
"type": "integer"
},
"playlists": {
"type": "integer"
},
"live_streams": {
"type": "integer"
},
"is_hidden": {
"type": "boolean"
},
"merge": {
"type": "array",
"items": {
"$ref": "#/components/schemas/GenreReference"
}
}
},
"required": [
"id",
"name",
"albums",
"artists",
"songs",
"videos",
"playlists",
"live_streams",
"is_hidden",
"merge"
],
"additionalProperties": true
},
"LabelObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string",
"nullable": true
},
"artists": {
"type": "integer"
},
"summary": {
"type": "string",
"nullable": true
},
"external_link": {
"type": "string"
},
"address": {
"type": "string",
"nullable": true
},
"category": {
"type": "string",
"nullable": true
},
"email": {
"type": "string",
"nullable": true
},
"website": {
"type": "string",
"nullable": true
},
"user": {
"type": "string"
}
},
"required": [
"id",
"name",
"artists",
"summary",
"external_link",
"address",
"category",
"email",
"website",
"user"
],
"additionalProperties": true
},
"LiveStreamObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string",
"nullable": true
},
"url": {
"type": "string",
"nullable": true
},
"codec": {
"type": "string",
"nullable": true
},
"catalog": {
"type": "string"
},
"site_url": {
"type": "string",
"nullable": true
}
},
"required": [
"id",
"name",
"url",
"codec",
"catalog",
"site_url"
],
"additionalProperties": true
},
"PlaylistObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string",
"nullable": true
},
"owner": {
"type": "string",
"nullable": true
},
"user": {
"$ref": "#/components/schemas/UserSummaryObject"
},
"items": {
"oneOf": [
{
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"playlisttrack": {
"type": "integer"
}
},
"required": [
"id",
"playlisttrack"
],
"additionalProperties": true
}
},
{
"type": "integer"
}
],
"description": "The expanded song list when songs are included, otherwise the total song count. Playlists are song lists here: a playlist may physically hold other media types, but this method reports only songs so that real playlists and song smartlists share one shape."
},
"type": {
"type": "string",
"nullable": true
},
"art": {
"type": "string",
"nullable": true
},
"has_access": {
"type": "boolean"
},
"has_collaborate": {
"type": "boolean"
},
"has_art": {
"type": "boolean"
},
"flag": {
"type": "boolean"
},
"rating": {
"type": "integer",
"nullable": true
},
"averagerating": {
"type": "number",
"nullable": true
},
"md5": {
"type": "string",
"nullable": true
},
"last_update": {
"type": "integer",
"nullable": true
},
"time": {
"type": "integer"
},
"playlist_folder_id": {
"type": "string"
},
"playlist_folder_sort_order": {
"type": "integer"
}
},
"required": [
"id",
"name",
"owner",
"user",
"items",
"type",
"art",
"has_access",
"has_collaborate",
"has_art",
"flag",
"rating",
"averagerating",
"md5",
"last_update",
"time"
],
"additionalProperties": true
},
"PodcastEpisodeObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"title": {
"type": "string",
"nullable": true
},
"name": {
"type": "string",
"nullable": true
},
"podcast": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"id",
"name"
],
"additionalProperties": true
},
"description": {
"type": "string"
},
"category": {
"type": "string",
"nullable": true
},
"author": {
"type": "string",
"nullable": true
},
"author_full": {
"type": "string",
"nullable": true
},
"website": {
"type": "string"
},
"pubdate": {
"type": "string",
"nullable": true
},
"state": {
"type": "string"
},
"filelength": {
"type": "string"
},
"filesize": {
"type": "string"
},
"filename": {
"type": "string"
},
"mime": {
"type": "string",
"nullable": true
},
"time": {
"type": "integer"
},
"size": {
"type": "integer"
},
"bitrate": {
"type": "integer"
},
"stream_bitrate": {
"type": "integer"
},
"rate": {
"type": "integer"
},
"mode": {
"type": "string",
"nullable": true
},
"channels": {
"type": "integer",
"nullable": true
},
"public_url": {
"type": "string"
},
"url": {
"type": "string"
},
"catalog": {
"type": "string"
},
"art": {
"type": "string",
"nullable": true
},
"has_art": {
"type": "boolean"
},
"flag": {
"type": "boolean"
},
"rating": {
"type": "integer",
"nullable": true
},
"averagerating": {
"type": "number",
"nullable": true
},
"playcount": {
"type": "integer"
},
"last_played": {
"type": "string",
"nullable": true
},
"played": {
"type": "string"
}
},
"required": [
"id",
"title",
"name",
"podcast",
"description",
"category",
"author",
"author_full",
"website",
"pubdate",
"state",
"filelength",
"filesize",
"filename",
"mime",
"time",
"size",
"bitrate",
"stream_bitrate",
"rate",
"mode",
"channels",
"public_url",
"url",
"catalog",
"art",
"has_art",
"flag",
"rating",
"averagerating",
"playcount",
"last_played",
"played"
],
"additionalProperties": true
},
"PodcastObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string",
"nullable": true
},
"description": {
"type": "string"
},
"language": {
"type": "string"
},
"copyright": {
"type": "string"
},
"feed_url": {
"type": "string"
},
"generator": {
"type": "string"
},
"website": {
"type": "string"
},
"build_date": {
"type": "string"
},
"sync_date": {
"type": "string"
},
"public_url": {
"type": "string"
},
"art": {
"type": "string",
"nullable": true
},
"has_art": {
"type": "boolean"
},
"flag": {
"type": "boolean"
},
"rating": {
"type": "integer",
"nullable": true
},
"averagerating": {
"type": "number",
"nullable": true
},
"catalog": {
"type": "string"
},
"podcast_episode": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PodcastEpisodeObject"
}
}
},
"required": [
"id",
"name",
"description",
"language",
"copyright",
"feed_url",
"generator",
"website",
"build_date",
"sync_date",
"public_url",
"art",
"has_art",
"flag",
"rating",
"averagerating",
"catalog",
"podcast_episode"
],
"additionalProperties": true
},
"VideoObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"title": {
"type": "string",
"nullable": true
},
"mime": {
"type": "string",
"nullable": true
},
"resolution": {
"type": "string",
"nullable": true
},
"size": {
"type": "integer"
},
"genre": {
"type": "array",
"items": {
"$ref": "#/components/schemas/GenreReference"
}
},
"time": {
"type": "integer"
},
"url": {
"type": "string"
},
"art": {
"type": "string",
"nullable": true
},
"has_art": {
"type": "boolean"
},
"flag": {
"type": "boolean"
},
"rating": {
"type": "integer",
"nullable": true
},
"averagerating": {
"type": "number",
"nullable": true
},
"playcount": {
"type": "integer"
},
"last_played": {
"type": "string",
"nullable": true
},
"catalog": {
"type": "string"
}
},
"required": [
"id",
"title",
"mime",
"resolution",
"size",
"genre",
"time",
"url",
"art",
"has_art",
"flag",
"rating",
"averagerating",
"playcount",
"last_played",
"catalog"
],
"additionalProperties": true
},
"ArtistsResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"artist": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ArtistObject"
}
}
},
"required": [
"total_count",
"md5",
"artist"
],
"additionalProperties": true
},
"GenresResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"genre": {
"type": "array",
"items": {
"$ref": "#/components/schemas/GenreObject"
}
}
},
"required": [
"total_count",
"md5",
"genre"
],
"additionalProperties": true
},
"LabelsResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"label": {
"type": "array",
"items": {
"$ref": "#/components/schemas/LabelObject"
}
}
},
"required": [
"total_count",
"md5",
"label"
],
"additionalProperties": true
},
"LiveStreamsResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"live_stream": {
"type": "array",
"items": {
"$ref": "#/components/schemas/LiveStreamObject"
}
}
},
"required": [
"total_count",
"md5",
"live_stream"
],
"additionalProperties": true
},
"PlaylistsResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"playlist": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PlaylistObject"
}
}
},
"required": [
"total_count",
"md5",
"playlist"
],
"additionalProperties": true
},
"PodcastEpisodesResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"podcast_episode": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PodcastEpisodeObject"
}
}
},
"required": [
"total_count",
"md5",
"podcast_episode"
],
"additionalProperties": true
},
"PodcastsResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"podcast": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PodcastObject"
}
}
},
"required": [
"total_count",
"md5",
"podcast"
],
"additionalProperties": true
},
"VideosResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"video": {
"type": "array",
"items": {
"$ref": "#/components/schemas/VideoObject"
}
}
},
"required": [
"total_count",
"md5",
"video"
],
"additionalProperties": true
},
"CatalogObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string",
"nullable": true
},
"type": {
"type": "string",
"nullable": true
},
"gather_types": {
"type": "string",
"nullable": true
},
"enabled": {
"type": "boolean"
},
"last_add": {
"type": "integer"
},
"last_clean": {
"type": "integer",
"nullable": true
},
"last_update": {
"type": "integer"
},
"path": {
"type": "string"
},
"rename_pattern": {
"type": "string",
"nullable": true
},
"sort_pattern": {
"type": "string",
"nullable": true
}
},
"required": [
"id",
"name",
"type",
"gather_types",
"enabled",
"last_add",
"last_clean",
"last_update",
"path",
"rename_pattern",
"sort_pattern"
],
"additionalProperties": true
},
"CatalogsResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"catalog": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CatalogObject"
}
}
},
"required": [
"total_count",
"md5",
"catalog"
],
"additionalProperties": true
},
"LicenseObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"external_link": {
"type": "string"
}
},
"required": [
"id",
"name",
"description",
"external_link"
],
"additionalProperties": true
},
"ShareObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"owner": {
"type": "string"
},
"allow_stream": {
"type": "boolean"
},
"allow_download": {
"type": "boolean"
},
"creation_date": {
"type": "integer"
},
"lastvisit_date": {
"type": "integer"
},
"object_type": {
"type": "string",
"nullable": true,
"description": "The kind of object referenced, as a bare string. The set is intentionally open so a new media type is not a breaking change; values seen today include `song`, `album`, `artist`, `playlist`, `podcast`, `podcast_episode` and `video`."
},
"object_id": {
"type": "string"
},
"expire_days": {
"type": "integer"
},
"max_counter": {
"type": "integer"
},
"counter": {
"type": "integer"
},
"secret": {
"type": "string",
"nullable": true
},
"public_url": {
"type": "string",
"nullable": true
},
"description": {
"type": "string",
"nullable": true
}
},
"required": [
"id",
"name",
"owner",
"allow_stream",
"allow_download",
"creation_date",
"lastvisit_date",
"object_type",
"object_id",
"expire_days",
"max_counter",
"counter",
"secret",
"public_url",
"description"
],
"additionalProperties": true
},
"BookmarkObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"owner": {
"type": "string"
},
"object_type": {
"type": "string",
"nullable": true,
"description": "The kind of object referenced, as a bare string. The set is intentionally open so a new media type is not a breaking change; values seen today include `song`, `album`, `artist`, `playlist`, `podcast`, `podcast_episode` and `video`."
},
"object_id": {
"type": "string"
},
"position": {
"type": "integer"
},
"client": {
"type": "string",
"nullable": true
},
"creation_date": {
"type": "integer"
},
"update_date": {
"type": "integer"
},
"song": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SongObject"
}
},
"podcast_episode": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PodcastEpisodeObject"
}
},
"video": {
"type": "array",
"items": {
"$ref": "#/components/schemas/VideoObject"
}
}
},
"required": [
"id",
"owner",
"object_type",
"object_id",
"position",
"client",
"creation_date",
"update_date"
],
"additionalProperties": true
},
"UserSummaryObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"username": {
"type": "string",
"nullable": true
}
},
"required": [
"id",
"username"
],
"additionalProperties": true
},
"UserObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"username": {
"type": "string",
"nullable": true
},
"create_date": {
"type": "integer",
"nullable": true
},
"last_seen": {
"type": "integer"
},
"link": {
"type": "string"
},
"website": {
"type": "string",
"nullable": true
},
"state": {
"type": "string",
"nullable": true
},
"city": {
"type": "string",
"nullable": true
},
"art": {
"type": "string",
"nullable": true
},
"has_art": {
"type": "boolean"
},
"auth": {
"type": "string",
"nullable": true
},
"email": {
"type": "string",
"nullable": true
},
"access": {
"type": "integer"
},
"streamtoken": {
"type": "string",
"nullable": true
},
"fullname_public": {
"type": "boolean"
},
"validation": {
"type": "string",
"nullable": true
},
"disabled": {
"type": "boolean"
},
"fullname": {
"type": "string",
"nullable": true
}
},
"required": [
"id",
"username",
"create_date",
"last_seen",
"link",
"website",
"state",
"city",
"art",
"has_art"
],
"additionalProperties": true
},
"LicensesResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"license": {
"type": "array",
"items": {
"$ref": "#/components/schemas/LicenseObject"
}
}
},
"required": [
"total_count",
"md5",
"license"
],
"additionalProperties": true
},
"SharesResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"share": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ShareObject"
}
}
},
"required": [
"total_count",
"md5",
"share"
],
"additionalProperties": true
},
"BookmarksResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"bookmark": {
"type": "array",
"items": {
"$ref": "#/components/schemas/BookmarkObject"
}
}
},
"required": [
"total_count",
"md5",
"bookmark"
],
"additionalProperties": true
},
"UsersResponse": {
"type": "object",
"properties": {
"user": {
"type": "array",
"items": {
"$ref": "#/components/schemas/UserSummaryObject"
}
}
},
"required": [
"user"
],
"additionalProperties": true
},
"SongTagObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"albumartist": {
"type": "string",
"nullable": true
},
"album": {
"type": "string",
"nullable": true
},
"artist": {
"type": "string",
"nullable": true
},
"artists": {
"type": "array",
"items": {
"type": "string"
},
"nullable": true
},
"art": {
"type": "string",
"nullable": true
},
"audio_codec": {
"type": "string",
"nullable": true
},
"barcode": {
"type": "string",
"nullable": true
},
"bitrate": {
"type": "integer",
"nullable": true
},
"bpm": {
"type": "number",
"nullable": true
},
"catalog": {
"type": "integer",
"nullable": true
},
"catalog_number": {
"type": "string",
"nullable": true
},
"channels": {
"type": "integer",
"nullable": true
},
"comment": {
"type": "string",
"nullable": true
},
"composer": {
"type": "string",
"nullable": true
},
"description": {
"type": "string",
"nullable": true
},
"disk": {
"type": "integer",
"nullable": true
},
"disksubtitle": {
"type": "string",
"nullable": true
},
"display_x": {
"type": "integer",
"nullable": true
},
"display_y": {
"type": "integer",
"nullable": true
},
"encoding": {
"type": "string",
"nullable": true
},
"file": {
"type": "string",
"nullable": true
},
"frame_rate": {
"type": "number",
"nullable": true
},
"genre": {
"type": "array",
"items": {
"type": "string"
},
"nullable": true
},
"isrc": {
"type": "string",
"nullable": true
},
"language": {
"type": "string",
"nullable": true
},
"lyrics": {
"type": "string",
"nullable": true
},
"mb_albumartistid": {
"type": "string",
"nullable": true
},
"mb_albumartistid_array": {
"type": "array",
"items": {
"type": "string"
},
"nullable": true
},
"mb_albumid_group": {
"type": "string",
"nullable": true
},
"mb_albumid": {
"type": "string",
"nullable": true
},
"mb_artistid": {
"type": "string",
"nullable": true
},
"mb_artistid_array": {
"type": "array",
"items": {
"type": "string"
},
"nullable": true
},
"mb_trackid": {
"type": "string",
"nullable": true
},
"mime": {
"type": "string",
"nullable": true
},
"mode": {
"type": "string",
"nullable": true
},
"original_name": {
"type": "string",
"nullable": true
},
"original_year": {
"type": "string",
"nullable": true
},
"publisher": {
"type": "string",
"nullable": true
},
"r128_album_gain": {
"type": "integer",
"nullable": true
},
"r128_track_gain": {
"type": "integer",
"nullable": true
},
"rate": {
"type": "integer",
"nullable": true
},
"rating": {
"type": "number",
"nullable": true
},
"release_date": {
"type": "string",
"nullable": true
},
"release_status": {
"type": "string",
"nullable": true
},
"release_type": {
"type": "string",
"nullable": true
},
"replaygain_album_gain": {
"type": "number",
"nullable": true
},
"replaygain_album_peak": {
"type": "number",
"nullable": true
},
"replaygain_track_gain": {
"type": "number",
"nullable": true
},
"replaygain_track_peak": {
"type": "number",
"nullable": true
},
"size": {
"type": "integer",
"nullable": true
},
"version": {
"type": "string",
"nullable": true
},
"summary": {
"type": "string",
"nullable": true
},
"time": {
"type": "integer",
"nullable": true
},
"title": {
"type": "string",
"nullable": true
},
"totaldisks": {
"type": "integer",
"nullable": true
},
"totaltracks": {
"type": "integer",
"nullable": true
},
"track": {
"type": "integer",
"nullable": true
},
"year": {
"type": "integer",
"nullable": true
}
},
"required": [
"id",
"albumartist",
"album",
"artist",
"artists",
"art",
"audio_codec",
"barcode",
"bitrate",
"bpm",
"catalog",
"catalog_number",
"channels",
"comment",
"composer",
"description",
"disk",
"disksubtitle",
"display_x",
"display_y",
"encoding",
"file",
"frame_rate",
"genre",
"isrc",
"language",
"lyrics",
"mb_albumartistid",
"mb_albumartistid_array",
"mb_albumid_group",
"mb_albumid",
"mb_artistid",
"mb_artistid_array",
"mb_trackid",
"mime",
"mode",
"original_name",
"original_year",
"publisher",
"r128_album_gain",
"r128_track_gain",
"rate",
"rating",
"release_date",
"release_status",
"release_type",
"replaygain_album_gain",
"replaygain_album_peak",
"replaygain_track_gain",
"replaygain_track_peak",
"size",
"version",
"summary",
"time",
"title",
"totaldisks",
"totaltracks",
"track",
"year"
],
"additionalProperties": true
},
"SongTagsResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"song_tag": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SongTagObject"
}
}
},
"required": [
"total_count",
"md5",
"song_tag"
],
"additionalProperties": true
},
"ListObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"prefix": {
"type": "string",
"nullable": true
},
"basename": {
"type": "string"
}
},
"required": [
"id",
"name",
"prefix",
"basename"
],
"additionalProperties": true
},
"BrowseObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"prefix": {
"type": "string",
"nullable": true
},
"basename": {
"type": "string"
}
},
"required": [
"id",
"name",
"prefix",
"basename"
],
"additionalProperties": true
},
"NowPlayingObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"type": "string"
},
"client": {
"type": "string"
},
"expire": {
"type": "integer"
},
"user": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"id",
"username"
],
"additionalProperties": true
}
},
"required": [
"id",
"type",
"client",
"expire",
"user"
],
"additionalProperties": true
},
"ActivityObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"date": {
"type": "integer"
},
"object_type": {
"type": "string",
"nullable": true,
"description": "The kind of object referenced, as a bare string. The set is intentionally open so a new media type is not a breaking change; values seen today include `song`, `album`, `artist`, `playlist`, `podcast`, `podcast_episode` and `video`."
},
"object_id": {
"type": "string"
},
"action": {
"type": "string"
},
"user": {
"$ref": "#/components/schemas/UserSummaryObject"
}
},
"required": [
"id",
"date",
"object_type",
"object_id",
"action",
"user"
],
"additionalProperties": true
},
"ShoutObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"date": {
"type": "integer"
},
"text": {
"type": "string"
},
"object_type": {
"type": "string",
"description": "The kind of object referenced, as a bare string. The set is intentionally open so a new media type is not a breaking change; values seen today include `song`, `album`, `artist`, `playlist`, `podcast`, `podcast_episode` and `video`."
},
"object_id": {
"type": "string"
},
"user": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"id",
"username"
],
"additionalProperties": true
}
},
"required": [
"id",
"date",
"text",
"object_type",
"object_id",
"user"
],
"additionalProperties": true
},
"ListsResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"list": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ListObject"
}
}
},
"required": [
"total_count",
"md5",
"list"
],
"additionalProperties": true
},
"BrowseResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"catalog_id": {
"type": "string"
},
"parent_id": {
"type": "string"
},
"parent_type": {
"type": "string"
},
"child_type": {
"type": "string"
},
"browse": {
"type": "array",
"items": {
"$ref": "#/components/schemas/BrowseObject"
}
}
},
"required": [
"total_count",
"md5",
"catalog_id",
"parent_id",
"parent_type",
"child_type",
"browse"
],
"additionalProperties": true
},
"NowPlayingResponse": {
"type": "object",
"properties": {
"now_playing": {
"type": "array",
"items": {
"$ref": "#/components/schemas/NowPlayingObject"
}
}
},
"required": [
"now_playing"
],
"additionalProperties": true
},
"TimelineResponse": {
"type": "object",
"properties": {
"activity": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ActivityObject"
}
}
},
"required": [
"activity"
],
"additionalProperties": true
},
"ShoutsResponse": {
"type": "object",
"properties": {
"shout": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ShoutObject"
}
}
},
"required": [
"shout"
],
"additionalProperties": true
},
"DeletedSongObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"addition_time": {
"type": "integer"
},
"delete_time": {
"type": "integer"
},
"title": {
"type": "string",
"nullable": true
},
"file": {
"type": "string"
},
"catalog": {
"type": "string"
},
"total_count": {
"type": "integer"
},
"total_skip": {
"type": "integer"
},
"update_time": {
"type": "integer"
},
"album": {
"type": "string"
},
"artist": {
"type": "string"
}
},
"required": [
"id",
"addition_time",
"delete_time",
"title",
"file",
"catalog",
"total_count",
"total_skip",
"update_time",
"album",
"artist"
],
"additionalProperties": true
},
"DeletedSongsResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"deleted_song": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DeletedSongObject"
}
}
},
"required": [
"total_count",
"md5",
"deleted_song"
],
"additionalProperties": true
},
"DeletedPodcastEpisodeObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"addition_time": {
"type": "integer"
},
"delete_time": {
"type": "integer"
},
"title": {
"type": "string",
"nullable": true
},
"file": {
"type": "string"
},
"catalog": {
"type": "string"
},
"total_count": {
"type": "integer"
},
"total_skip": {
"type": "integer"
},
"podcast": {
"type": "string"
}
},
"required": [
"id",
"addition_time",
"delete_time",
"title",
"file",
"catalog",
"total_count",
"total_skip",
"podcast"
],
"additionalProperties": true
},
"DeletedPodcastEpisodesResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"deleted_podcast_episode": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DeletedPodcastEpisodeObject"
}
}
},
"required": [
"total_count",
"md5",
"deleted_podcast_episode"
],
"additionalProperties": true
},
"DeletedVideoObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"addition_time": {
"type": "integer"
},
"delete_time": {
"type": "integer"
},
"title": {
"type": "string",
"nullable": true
},
"file": {
"type": "string"
},
"catalog": {
"type": "string"
},
"total_count": {
"type": "integer"
},
"total_skip": {
"type": "integer"
}
},
"required": [
"id",
"addition_time",
"delete_time",
"title",
"file",
"catalog",
"total_count",
"total_skip"
],
"additionalProperties": true
},
"DeletedVideosResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"deleted_video": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DeletedVideoObject"
}
}
},
"required": [
"total_count",
"md5",
"deleted_video"
],
"additionalProperties": true
},
"IndexReferenceObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"id",
"type"
],
"additionalProperties": true
},
"IndexResponse": {
"type": "object",
"description": "Keyed by the requested `type` (e.g. `album`, `artist`, `song`). Without `include` the value is an array of object ids; with `include` it is an array of `{id, type}` references, or a map of parent id -> reference array for parent types such as playlists.",
"additionalProperties": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "array",
"items": {
"$ref": "#/components/schemas/IndexReferenceObject"
}
},
{
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IndexReferenceObject"
}
}
}
]
}
},
"DemocraticSongObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"title": {
"type": "string",
"nullable": true
},
"artist": {
"$ref": "#/components/schemas/NamedReference"
},
"album": {
"$ref": "#/components/schemas/NamedReference"
},
"genre": {
"type": "array",
"items": {
"$ref": "#/components/schemas/GenreReference"
}
},
"track": {
"type": "integer"
},
"time": {
"type": "integer"
},
"format": {
"type": "string",
"nullable": true
},
"bitrate": {
"type": "integer",
"nullable": true
},
"mime": {
"type": "string",
"nullable": true
},
"url": {
"type": "string"
},
"size": {
"type": "integer"
},
"art": {
"type": "string",
"nullable": true
},
"has_art": {
"type": "boolean"
},
"rating": {
"type": "integer",
"nullable": true
},
"averagerating": {
"type": "number",
"nullable": true
},
"playcount": {
"type": "integer"
},
"vote": {
"type": "integer"
}
},
"required": [
"id",
"title",
"artist",
"album",
"genre",
"track",
"time",
"format",
"bitrate",
"mime",
"url",
"size",
"art",
"has_art",
"rating",
"averagerating",
"playcount",
"vote"
],
"additionalProperties": true
},
"DemocraticSongsResponse": {
"type": "object",
"properties": {
"song": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DemocraticSongObject"
}
}
},
"required": [
"song"
],
"additionalProperties": true
},
"DemocraticPlayResponse": {
"type": "object",
"description": "Returned by `method=play`: the stream URL of the democratic playlist.",
"properties": {
"url": {
"type": "string"
}
},
"required": [
"url"
],
"additionalProperties": true
},
"DemocraticVoteResponse": {
"type": "object",
"description": "Returned by `method=vote` and `method=devote`.",
"properties": {
"method": {
"type": "string"
},
"result": {
"type": "boolean"
}
},
"required": [
"method",
"result"
],
"additionalProperties": true
},
"DemocraticResponse": {
"description": "Depends on the `method` parameter: `play` returns the stream url, `vote`/`devote` return the applied method and its result, and `playlist` returns the current democratic song list.",
"oneOf": [
{
"$ref": "#/components/schemas/DemocraticPlayResponse"
},
{
"$ref": "#/components/schemas/DemocraticVoteResponse"
},
{
"$ref": "#/components/schemas/DemocraticSongsResponse"
}
]
},
"PlaylistGenerateResponse": {
"description": "Depends on the `format` parameter: `song` (default) and `index` return the song list envelope, `id` returns a bare array of song ids.",
"oneOf": [
{
"$ref": "#/components/schemas/SongsResponse"
},
{
"type": "array",
"description": "Returned by `format=id`: song ids only, with no envelope.",
"items": {
"type": "string"
}
}
]
},
"PreferenceObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"description": {
"type": "string"
},
"level": {
"type": "integer"
},
"type": {
"type": "string"
},
"category": {
"type": "string"
},
"subcategory": {
"type": "string",
"nullable": true
},
"has_access": {
"type": "boolean"
},
"values": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "array",
"items": {
"type": "integer"
}
}
]
}
},
"required": [
"id",
"name",
"value",
"description",
"level",
"type",
"category",
"subcategory"
],
"additionalProperties": true
},
"PreferencesResponse": {
"type": "object",
"properties": {
"preference": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PreferenceObject"
}
}
},
"required": [
"preference"
],
"additionalProperties": true
},
"HandshakeResponse": {
"type": "object",
"properties": {
"auth": {
"type": "string",
"nullable": true
},
"streamtoken": {
"type": "string",
"nullable": true
},
"api": {
"type": "string"
},
"session_expire": {
"oneOf": [
{
"type": "integer"
},
{
"type": "string"
}
]
},
"update": {
"type": "string"
},
"add": {
"type": "string"
},
"clean": {
"type": "string"
},
"max_song": {
"type": "integer"
},
"max_album": {
"type": "integer"
},
"max_artist": {
"type": "integer"
},
"max_video": {
"type": "integer"
},
"max_podcast": {
"type": "integer"
},
"max_podcast_episode": {
"type": "integer"
},
"songs": {
"type": "integer"
},
"albums": {
"type": "integer"
},
"artists": {
"type": "integer"
},
"genres": {
"type": "integer"
},
"playlists": {
"type": "integer"
},
"searches": {
"type": "integer"
},
"playlists_searches": {
"type": "integer"
},
"users": {
"type": "integer"
},
"catalogs": {
"type": "integer"
},
"videos": {
"type": "integer"
},
"podcasts": {
"type": "integer"
},
"podcast_episodes": {
"type": "integer"
},
"shares": {
"type": "integer"
},
"licenses": {
"type": "integer"
},
"live_streams": {
"type": "integer"
},
"labels": {
"type": "integer"
},
"username": {
"type": "string"
}
},
"additionalProperties": true,
"required": [
"add",
"albums",
"api",
"artists",
"auth",
"catalogs",
"clean",
"genres",
"labels",
"licenses",
"live_streams",
"max_album",
"max_artist",
"max_podcast",
"max_podcast_episode",
"max_song",
"max_video",
"playlists",
"playlists_searches",
"podcast_episodes",
"podcasts",
"searches",
"session_expire",
"shares",
"songs",
"streamtoken",
"update",
"username",
"users",
"videos"
]
},
"PingResponse": {
"type": "object",
"description": "`server`, `version` and `compatible` are always returned. Sending a valid `auth` extends the session and adds the handshake fields (`session_expire`, server counts, ...).",
"properties": {
"server": {
"type": "string"
},
"version": {
"type": "string"
},
"compatible": {
"type": "string"
},
"auth": {
"type": "string",
"nullable": true
},
"streamtoken": {
"type": "string",
"nullable": true
},
"api": {
"type": "string"
},
"session_expire": {
"oneOf": [
{
"type": "integer"
},
{
"type": "string"
}
]
},
"update": {
"type": "string"
},
"add": {
"type": "string"
},
"clean": {
"type": "string"
},
"max_song": {
"type": "integer"
},
"max_album": {
"type": "integer"
},
"max_artist": {
"type": "integer"
},
"max_video": {
"type": "integer"
},
"max_podcast": {
"type": "integer"
},
"max_podcast_episode": {
"type": "integer"
},
"songs": {
"type": "integer"
},
"albums": {
"type": "integer"
},
"artists": {
"type": "integer"
},
"genres": {
"type": "integer"
},
"playlists": {
"type": "integer"
},
"searches": {
"type": "integer"
},
"playlists_searches": {
"type": "integer"
},
"users": {
"type": "integer"
},
"catalogs": {
"type": "integer"
},
"videos": {
"type": "integer"
},
"podcasts": {
"type": "integer"
},
"podcast_episodes": {
"type": "integer"
},
"shares": {
"type": "integer"
},
"licenses": {
"type": "integer"
},
"live_streams": {
"type": "integer"
},
"labels": {
"type": "integer"
},
"username": {
"type": "string"
}
},
"required": [
"compatible",
"server",
"version"
],
"additionalProperties": true
},
"LocalplayStatusObject": {
"type": "object",
"description": "Player state. The exact fields come from the configured Localplay controller (MPD, VLC, XBMC, UPnP, HTTPQ), so only `repeat` and `random` are guaranteed - the API coerces those two to booleans. The rest are what that controller reports.",
"properties": {
"state": {
"type": "string"
},
"volume": {
"type": "string",
"description": "Controller-reported volume, passed through as-is. MPD reports it as a numeric string (e.g. \"41\")."
},
"repeat": {
"type": "boolean"
},
"random": {
"type": "boolean"
},
"track": {
"type": "integer"
},
"track_title": {
"type": "string"
},
"track_artist": {
"type": "string"
},
"track_album": {
"type": "string"
}
},
"required": [
"repeat",
"random"
]
},
"LocalplayResponse": {
"type": "object",
"description": "The command name maps to `true` when the controller accepted it, `false` when it did not.",
"properties": {
"localplay": {
"type": "object",
"properties": {
"command": {
"type": "object",
"additionalProperties": {
"type": "boolean"
}
}
},
"required": [
"command"
],
"additionalProperties": true
}
},
"required": [
"localplay"
],
"additionalProperties": true
},
"LocalplayStatusResponse": {
"type": "object",
"description": "The `status` command reports the player state instead of a boolean.",
"properties": {
"localplay": {
"type": "object",
"properties": {
"command": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/LocalplayStatusObject"
}
}
},
"required": [
"command"
],
"additionalProperties": true
}
},
"required": [
"localplay"
],
"additionalProperties": true
},
"PlaylistHashResponse": {
"type": "object",
"properties": {
"md5": {
"type": "string",
"nullable": true
}
},
"required": [
"md5"
],
"additionalProperties": true
},
"LyricsResponse": {
"type": "object",
"description": "`plugin` is keyed by lyric source (`database` plus any lyric-retriever plugin that answered). When nothing answered it is serialised as an empty array, not an empty object.",
"properties": {
"object_id": {
"type": "string"
},
"object_type": {
"type": "string",
"description": "The kind of object referenced, as a bare string. The set is intentionally open so a new media type is not a breaking change; values seen today include `song`, `album`, `artist`, `playlist`, `podcast`, `podcast_episode` and `video`."
},
"plugin": {
"$ref": "#/components/schemas/_PluginMap"
}
},
"required": [
"object_id",
"object_type",
"plugin"
],
"additionalProperties": true
},
"ExternalMetadataResponse": {
"description": "Returns the plugin payloads when at least one metadata plugin answered, and the empty list envelope for the requested type when none did.",
"oneOf": [
{
"$ref": "#/components/schemas/ExternalMetadataObject"
},
{
"$ref": "#/components/schemas/EmptyListResponse"
}
]
},
"_PluginMap": {
"oneOf": [
{
"type": "object",
"additionalProperties": {}
},
{
"type": "array",
"maxItems": 0
}
]
},
"ExternalMetadataObject": {
"type": "object",
"description": "`plugin` is keyed by metadata-retriever plugin name; each value is that plugin's payload.",
"properties": {
"object_id": {
"type": "string"
},
"object_type": {
"type": "string",
"description": "The kind of object referenced, as a bare string. The set is intentionally open so a new media type is not a breaking change; values seen today include `song`, `album`, `artist`, `playlist`, `podcast`, `podcast_episode` and `video`."
},
"plugin": {
"$ref": "#/components/schemas/_PluginMap"
}
},
"required": [
"object_id",
"object_type",
"plugin"
],
"additionalProperties": true
},
"EmptyListResponse": {
"type": "object",
"description": "The standard empty envelope, with an empty list keyed by the requested type.",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
}
},
"required": [
"total_count",
"md5"
]
},
"SearchRuleObject": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"label": {
"type": "string"
},
"type": {
"type": "string"
},
"widget": {
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"additionalProperties": {
"type": "string"
}
}
]
}
},
"title": {
"type": "string"
}
},
"required": [
"name",
"label",
"type",
"widget",
"title"
],
"additionalProperties": true
},
"SearchRulesResponse": {
"type": "object",
"properties": {
"rule": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SearchRuleObject"
}
}
},
"required": [
"rule"
],
"additionalProperties": true
},
"SearchGroupResponse": {
"type": "object",
"description": "`search` is keyed by object type (`album`, `artist`, `album_artist`, `song_artist`, `song`, `playlist`, `podcast`, `podcast_episode`, `genre`, `label`, `user`, `video`); each value is that type's usual object list. Types with no matches are omitted.",
"properties": {
"search": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"type": "object"
}
}
}
},
"required": [
"search"
],
"additionalProperties": true
},
"AlbumDiskObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"prefix": {
"type": "string",
"nullable": true
},
"basename": {
"type": "string",
"nullable": true
},
"album": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"prefix": {
"type": "string",
"nullable": true
},
"basename": {
"type": "string",
"nullable": true
}
},
"required": [
"id",
"name",
"prefix",
"basename"
],
"additionalProperties": true
},
"artist": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"prefix": {
"type": "string",
"nullable": true
},
"basename": {
"type": "string"
}
},
"required": [
"id",
"name",
"prefix",
"basename"
],
"additionalProperties": true
},
"artists": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"prefix": {
"type": "string",
"nullable": true
},
"basename": {
"type": "string"
}
},
"required": [
"id",
"name",
"prefix",
"basename"
],
"additionalProperties": true
}
},
"songartists": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"prefix": {
"type": "string",
"nullable": true
},
"basename": {
"type": "string"
}
},
"required": [
"id",
"name",
"prefix",
"basename"
],
"additionalProperties": true
}
},
"disk": {
"type": "integer"
},
"disksubtitle": {
"type": "string",
"nullable": true
},
"time": {
"type": "integer"
},
"year": {
"type": "integer"
},
"tracks": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SongObject"
}
},
"songcount": {
"type": "integer"
},
"type": {
"type": "string",
"nullable": true
},
"genre": {
"type": "array",
"items": {
"$ref": "#/components/schemas/GenreReference"
}
},
"art": {
"type": "string",
"nullable": true
},
"has_art": {
"type": "boolean"
},
"flag": {
"type": "boolean"
},
"rating": {
"type": "integer",
"nullable": true
},
"averagerating": {
"type": "number",
"nullable": true
},
"mbid": {
"type": "string",
"nullable": true
},
"mbid_group": {
"type": "string",
"nullable": true
},
"catalog": {
"type": "string"
}
},
"required": [
"id",
"name",
"prefix",
"basename",
"album",
"disk",
"disksubtitle",
"time",
"year",
"tracks",
"songcount",
"type",
"genre",
"art",
"has_art",
"flag",
"rating",
"averagerating",
"mbid",
"mbid_group",
"catalog"
],
"additionalProperties": true
},
"AlbumDisksResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"album_disk": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AlbumDiskObject"
}
}
},
"required": [
"total_count",
"md5",
"album_disk"
],
"additionalProperties": true
},
"LocalplaySongObject": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"raw": {
"type": "string"
},
"vlid": {
"type": "integer"
},
"oid": {
"type": "integer"
},
"name": {
"type": "string",
"nullable": true
},
"link": {
"type": "string",
"nullable": true
},
"track": {
"type": "integer"
}
},
"required": [
"id",
"raw",
"track"
],
"additionalProperties": true
},
"LocalplaySongsResponse": {
"type": "object",
"properties": {
"localplay_songs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/LocalplaySongObject"
}
}
},
"required": [
"localplay_songs"
],
"additionalProperties": true
},
"FlagRequest": {
"type": "object",
"properties": {
"flag": {
"enum": [
0,
1
],
"type": "integer"
}
},
"required": [
"flag"
],
"additionalProperties": true
},
"RateRequest": {
"type": "object",
"properties": {
"rating": {
"type": "integer"
}
},
"required": [
"rating"
],
"additionalProperties": true
},
"ShareCreateRequest": {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"expires": {
"type": "integer",
"description": "days to keep active"
}
},
"additionalProperties": true
},
"UpdateArtRequest": {
"type": "object",
"properties": {
"overwrite": {
"enum": [
0,
1
],
"type": "integer"
}
},
"additionalProperties": true
},
"BookmarkCreateRequest": {
"type": "object",
"properties": {
"filter": {
"type": "string",
"description": "Object id"
},
"type": {
"enum": [
"song",
"video",
"podcast_episode"
],
"type": "string"
},
"position": {
"type": "integer",
"description": "Current track time in seconds"
},
"client": {
"type": "string",
"description": "Client/agent name recorded with the request."
},
"date": {
"type": "integer",
"description": "UNIXTIME()"
},
"include": {
"enum": [
0,
1
],
"type": "integer"
}
},
"required": [
"filter",
"position",
"type"
],
"additionalProperties": true
},
"BookmarkDeleteRequest": {
"type": "object",
"properties": {
"client": {
"type": "string",
"description": "Client/agent name recorded with the request."
}
},
"additionalProperties": true
},
"BookmarkEditRequest": {
"type": "object",
"properties": {
"position": {
"type": "integer"
},
"client": {
"type": "string",
"description": "Client/agent name recorded with the request."
},
"date": {
"type": "integer"
},
"include": {
"enum": [
0,
1
],
"type": "integer"
}
},
"required": [
"position"
],
"additionalProperties": true
},
"CatalogCreateRequest": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"type": {
"enum": [
"local",
"beets",
"remote",
"subsonic",
"seafile",
"beetsremote"
],
"type": "string"
},
"media_type": {
"type": "string"
},
"file_pattern": {
"type": "string"
},
"folder_pattern": {
"type": "string"
},
"username": {
"type": "string"
},
"password": {
"type": "string",
"description": "Deprecated: for privacy, send this in a form or JSON request body instead of the query string (query values land in server/proxy logs and browser history). Query-string support is retained for backward compatibility."
}
},
"required": [
"name",
"path"
],
"additionalProperties": true
},
"CatalogActionRequest": {
"type": "object",
"properties": {
"task": {
"enum": [
"add_to_catalog",
"clean_catalog",
"verify_catalog",
"update_catalog",
"gather_art",
"garbage_collect"
],
"type": "string",
"description": "Catalog task to run"
}
},
"required": [
"task"
],
"additionalProperties": true
},
"CatalogFileRequest": {
"type": "object",
"properties": {
"file": {
"type": "string"
},
"task": {
"type": "string",
"description": "add,clean,verify,remove (comma-separated allowed)"
}
},
"required": [
"file",
"task"
],
"additionalProperties": true
},
"CatalogFolderRequest": {
"type": "object",
"properties": {
"folder": {
"type": "string"
},
"task": {
"type": "string",
"description": "add,clean,verify,remove (comma-separated allowed)"
}
},
"required": [
"folder",
"task"
],
"additionalProperties": true
},
"DemocraticRequest": {
"type": "object",
"properties": {
"method": {
"enum": [
"vote",
"devote",
"playlist",
"play"
],
"type": "string"
}
},
"required": [
"method"
],
"additionalProperties": true
},
"LocalplayRequest": {
"type": "object",
"properties": {
"command": {
"enum": [
"add"
],
"type": "string"
},
"type": {
"enum": [
"song",
"video",
"podcast_episode",
"broadcast",
"live_stream",
"democratic"
],
"type": "string"
},
"clear": {
"enum": [
0,
1
],
"type": "integer"
}
},
"required": [
"command"
],
"additionalProperties": true
},
"HandshakeRequest": {
"type": "object",
"properties": {
"user": {
"type": "string",
"description": "Username (required for login/password authentication)."
},
"timestamp": {
"type": "integer",
"description": "UNIX time used in seed of password hash (required for login/password authentication)."
},
"version": {
"type": "string",
"description": "API version the client understands. REST callers should omit it -- the version in the URL path wins; if both are sent and disagree, the path version is used and this parameter is ignored."
}
},
"additionalProperties": true
},
"LiveStreamCreateRequest": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"url": {
"type": "string"
},
"site_url": {
"type": "string"
},
"codec": {
"type": "string"
},
"catalog": {
"type": "string"
}
},
"additionalProperties": true
},
"LiveStreamEditRequest": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"url": {
"type": "string"
},
"site_url": {
"type": "string"
},
"codec": {
"type": "string"
},
"catalog": {
"type": "string"
}
},
"additionalProperties": true
},
"LocalplayLocalplayAddRequest": {
"type": "object",
"properties": {
"filter": {
"type": "string",
"description": "Object id"
},
"type": {
"enum": [
"song",
"video",
"podcast_episode",
"broadcast",
"live_stream",
"democratic"
],
"type": "string",
"default": "song"
},
"clear": {
"enum": [
0,
1
],
"type": "integer",
"description": "Clear the current playlist before adding"
}
},
"required": [
"filter"
],
"additionalProperties": true
},
"PlaylistCreateRequest": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"enum": [
"public",
"private"
],
"type": "string"
}
},
"required": [
"name"
],
"additionalProperties": true
},
"PlaylistEditRequest": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"enum": [
"public",
"private"
],
"type": "string"
},
"owner": {
"type": "string",
"description": "User id (-1 = System playlist)"
},
"items": {
"type": "string",
"description": "Comma-separated song_id list"
},
"tracks": {
"type": "string",
"description": "Comma-separated playlist track numbers matched to items"
}
},
"additionalProperties": true
},
"PlaylistAddRequest": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "UID of the object to add to playlist"
},
"type": {
"enum": [
"song",
"album",
"artist",
"playlist"
],
"type": "string"
}
},
"required": [
"id",
"type"
],
"additionalProperties": true
},
"PlaylistRemoveRequest": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Object id"
},
"type": {
"enum": [
"song",
"album",
"artist",
"playlist"
],
"type": "string",
"default": "song"
},
"track": {
"type": "string",
"description": "Track number to remove from the playlist"
},
"clear": {
"enum": [
0,
1
],
"type": "integer",
"description": "Clear the whole playlist"
}
},
"additionalProperties": true
},
"PlaylistRemoveSongRequest": {
"type": "object",
"properties": {
"song": {
"type": "string"
},
"track": {
"type": "integer"
}
},
"additionalProperties": true
},
"BookmarkCreatePodcastEpisodesBookmarkRequest": {
"type": "object",
"properties": {
"position": {
"type": "integer"
},
"client": {
"type": "string",
"description": "Client/agent name recorded with the request."
},
"date": {
"type": "integer"
},
"include": {
"enum": [
0,
1
],
"type": "integer"
}
},
"required": [
"position"
],
"additionalProperties": true
},
"PlayerRequest": {
"type": "object",
"properties": {
"type": {
"enum": [
"song",
"video",
"podcast_episode"
],
"type": "string"
},
"state": {
"enum": [
"play",
"stop"
],
"type": "string"
},
"time": {
"type": "integer"
},
"client": {
"type": "string",
"description": "Client/agent name recorded with the request."
}
},
"additionalProperties": true
},
"PodcastCreateRequest": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "RSS URL for podcast"
},
"catalog": {
"type": "string",
"description": "Podcast catalog ID"
}
},
"required": [
"catalog",
"url"
],
"additionalProperties": true
},
"PodcastEditRequest": {
"type": "object",
"properties": {
"feed": {
"type": "string"
},
"title": {
"type": "string"
},
"website": {
"type": "string"
},
"description": {
"type": "string"
},
"generator": {
"type": "string"
},
"copyright": {
"type": "string"
}
},
"additionalProperties": true
},
"PreferenceCreateRequest": {
"type": "object",
"properties": {
"filter": {
"type": "string",
"description": "Preference name"
},
"type": {
"enum": [
"boolean",
"integer",
"string",
"special"
],
"type": "string"
},
"default": {
"type": "string",
"description": "Default value (string or integer)"
},
"category": {
"type": "string",
"description": "interface,internal,options,playlist,plugins,streaming"
},
"description": {
"type": "string"
},
"subcategory": {
"type": "string"
}
},
"required": [
"category",
"default",
"filter",
"type"
],
"additionalProperties": true
},
"PreferenceEditRequest": {
"type": "object",
"properties": {
"value": {
"type": "string"
},
"all": {
"enum": [
0,
1
],
"type": "integer",
"description": "Apply to all users (Admin)"
},
"default": {
"enum": [
0,
1
],
"type": "integer",
"description": "Set as system default (Admin)"
}
},
"required": [
"value"
],
"additionalProperties": true
},
"RegisterRequest": {
"type": "object",
"properties": {
"username": {
"type": "string"
},
"password": {
"type": "string",
"description": "hash('sha256', password) Deprecated: for privacy, send this in a form or JSON request body instead of the query string (query values land in server/proxy logs and browser history). Query-string support is retained for backward compatibility."
},
"email": {
"type": "string"
},
"fullname": {
"type": "string"
}
},
"required": [
"email",
"password",
"username"
],
"additionalProperties": true
},
"ScrobbleRequest": {
"type": "object",
"properties": {
"song": {
"type": "string"
},
"artist": {
"type": "string"
},
"album": {
"type": "string"
},
"songmbid": {
"type": "string"
},
"artistmbid": {
"type": "string"
},
"albummbid": {
"type": "string"
},
"date": {
"type": "integer"
},
"client": {
"type": "string",
"description": "Client/agent name recorded with the request."
}
},
"required": [
"album",
"artist",
"song"
],
"additionalProperties": true
},
"ShareCreateSharesRequest": {
"type": "object",
"properties": {
"filter": {
"type": "string",
"description": "Object id"
},
"type": {
"enum": [
"album",
"artist",
"playlist",
"podcast",
"podcast_episode",
"song",
"video"
],
"type": "string"
},
"description": {
"type": "string",
"description": "Filled in for you if empty"
},
"expires": {
"type": "integer",
"description": "Days to keep active"
}
},
"required": [
"filter",
"type"
],
"additionalProperties": true
},
"ShareEditRequest": {
"type": "object",
"properties": {
"stream": {
"enum": [
0,
1
],
"type": "integer"
},
"download": {
"enum": [
0,
1
],
"type": "integer"
},
"expires": {
"type": "integer"
},
"description": {
"type": "string"
}
},
"additionalProperties": true
},
"BookmarkCreateSongsBookmarkRequest": {
"type": "object",
"properties": {
"position": {
"type": "integer"
},
"client": {
"type": "string",
"description": "Client/agent name recorded with the request."
},
"date": {
"type": "integer"
},
"include": {
"enum": [
0,
1
],
"type": "integer"
}
},
"required": [
"position"
],
"additionalProperties": true
},
"RecordPlayRequest": {
"type": "object",
"properties": {
"user": {
"type": "string"
},
"client": {
"type": "string",
"description": "Client/agent name recorded with the request."
},
"date": {
"type": "integer"
}
},
"additionalProperties": true
},
"UserCreateRequest": {
"type": "object",
"properties": {
"username": {
"type": "string"
},
"password": {
"type": "string",
"description": "sha256(password) Deprecated: for privacy, send this in a form or JSON request body instead of the query string (query values land in server/proxy logs and browser history). Query-string support is retained for backward compatibility."
},
"email": {
"type": "string"
},
"fullname": {
"type": "string"
},
"disable": {
"enum": [
0,
1
],
"type": "integer"
},
"group": {
"type": "integer"
}
},
"required": [
"email",
"password",
"username"
],
"additionalProperties": true
},
"UserEditRequest": {
"type": "object",
"properties": {
"password": {
"type": "string",
"description": "Deprecated: for privacy, send this in a form or JSON request body instead of the query string (query values land in server/proxy logs and browser history). Query-string support is retained for backward compatibility."
},
"email": {
"type": "string"
},
"fullname": {
"type": "string"
},
"website": {
"type": "string"
},
"state": {
"type": "string"
},
"city": {
"type": "string"
},
"disable": {
"enum": [
0,
1
],
"type": "integer"
},
"group": {
"type": "integer"
},
"maxbitrate": {
"type": "string",
"description": "Maximum transcode bitrate for the user, in bits per second (e.g 320000 = 320Kb). API6 and older take this value in kbps."
},
"fullname_public": {
"enum": [
0,
1
],
"type": "integer"
},
"reset_apikey": {
"enum": [
0,
1
],
"type": "integer"
},
"reset_streamtoken": {
"enum": [
0,
1
],
"type": "integer"
},
"clear_stats": {
"enum": [
0,
1
],
"type": "integer"
}
},
"additionalProperties": true
},
"BookmarkCreateVideosBookmarkRequest": {
"type": "object",
"properties": {
"position": {
"type": "integer"
},
"client": {
"type": "string",
"description": "Client/agent name recorded with the request."
},
"date": {
"type": "integer"
},
"include": {
"enum": [
0,
1
],
"type": "integer"
}
},
"required": [
"position"
],
"additionalProperties": true
},
"LocalplayLocalplaySkipRequest": {
"type": "object",
"properties": {
"track": {
"type": "integer",
"description": "Song number to skip to, starting at 1 (as returned by localplay/songs)"
}
},
"required": [
"track"
],
"additionalProperties": true
},
"GenreReference": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"id",
"name"
],
"additionalProperties": true
},
"NamedReference": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string",
"nullable": true
},
"prefix": {
"type": "string",
"nullable": true
},
"basename": {
"type": "string",
"nullable": true
}
},
"required": [
"id",
"name",
"prefix",
"basename"
],
"additionalProperties": true
},
"SonicMatchObject": {
"allOf": [
{
"$ref": "#/components/schemas/SongObject"
},
{
"type": "object",
"properties": {
"similarity": {
"type": "number",
"description": "0.0-1.0 where 1.0 is the same recording, matching the OpenSubsonic `sonicMatch` scale. -1 when the analysis backend gives no comparable score.",
"minimum": -1,
"maximum": 1
}
},
"required": [
"similarity"
]
}
]
},
"SonicMatchResponse": {
"type": "object",
"properties": {
"sonic_match": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SonicMatchObject"
}
}
},
"required": [
"sonic_match"
],
"additionalProperties": true
},
"CollectionObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"owner": {
"type": "string",
"nullable": true
},
"type": {
"type": "string",
"nullable": true
},
"object_type": {
"type": "string",
"nullable": true
},
"items": {
"type": "integer"
},
"has_art": {
"type": "boolean"
},
"playlist_folder_id": {
"type": "string"
},
"playlist_folder_sort_order": {
"type": "integer"
}
},
"required": [
"id",
"name",
"owner",
"type",
"object_type",
"items",
"has_art"
],
"additionalProperties": true
},
"CollectionsResponse": {
"type": "object",
"properties": {
"collection": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CollectionObject"
}
}
},
"required": [
"collection"
],
"additionalProperties": true
},
"CollectionItemObject": {
"type": "object",
"description": "One member of a collection, at the position it was curated into. `object_type` names the type and the property of the same name carries that type's own object, e.g. `{\"track\": 1, \"track_id\": 7, \"object_type\": \"album\", \"album\": {...}}`. `track_id` is the id of the membership row rather than of the object, and is the only stable way to tell two members apart when the same object appears more than once.",
"properties": {
"track": {
"type": "integer",
"description": "1-based position in the collection"
},
"track_id": {
"type": "integer",
"description": "id of the membership row, not of the object"
},
"object_type": {
"type": "string",
"description": "The kind of object referenced, as a bare string. The set is intentionally open so a new media type is not a breaking change; values seen today include `song`, `album`, `artist`, `playlist`, `podcast`, `podcast_episode` and `video`."
}
},
"required": [
"track",
"track_id",
"object_type"
],
"additionalProperties": {
"type": "object"
}
},
"CollectionItemsResponse": {
"type": "object",
"properties": {
"collection": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"owner": {
"type": "string",
"nullable": true
},
"type": {
"type": "string",
"nullable": true
},
"object_type": {
"type": "string",
"nullable": true
},
"items": {
"type": "integer"
},
"has_art": {
"type": "boolean"
},
"playlist_folder_id": {
"type": "string"
},
"playlist_folder_sort_order": {
"type": "integer"
},
"contents": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CollectionItemObject"
}
}
},
"required": [
"id",
"name",
"owner",
"type",
"object_type",
"items",
"has_art",
"contents"
],
"additionalProperties": true
}
},
"required": [
"collection"
],
"additionalProperties": true
},
"CollectionCreateRequest": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"enum": [
"public",
"private"
],
"type": "string"
},
"object_type": {
"type": "string"
}
},
"required": [
"name"
],
"additionalProperties": true
},
"CollectionEditRequest": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"enum": [
"public",
"private"
],
"type": "string"
},
"object_type": {
"type": "string"
},
"collaborate": {
"type": "string"
}
},
"additionalProperties": true
},
"CollectionRemoveRequest": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"object_type": {
"type": "string",
"description": "Type of the object"
}
},
"additionalProperties": true
},
"CollectionAddRequest": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"object_type": {
"type": "string",
"description": "Type of the object"
}
},
"required": [
"id"
],
"additionalProperties": true
},
"UploadRequest": {
"type": "object",
"properties": {
"filename": {
"type": "string",
"description": "File name, required when the file is sent as the request body rather than as the `upl` form field"
},
"license": {
"type": "integer",
"description": "License id, required when `licensing` is enabled"
},
"artist_id": {
"type": "integer"
},
"artist_name": {
"type": "string",
"description": "Create or reuse an artist you own"
},
"album_id": {
"type": "integer"
},
"album_name": {
"type": "string",
"description": "Create or reuse an album you own"
}
},
"additionalProperties": true
},
"PlaylistFolderObject": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"parent": {
"type": "string"
},
"sort_order": {
"type": "integer"
},
"items": {
"type": "integer"
}
},
"required": [
"id",
"name",
"parent",
"sort_order",
"items"
],
"additionalProperties": true
},
"PlaylistFoldersResponse": {
"type": "object",
"properties": {
"total_count": {
"type": "integer"
},
"md5": {
"type": "string"
},
"playlist_folder": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PlaylistFolderObject"
}
}
},
"required": [
"total_count",
"md5",
"playlist_folder"
],
"additionalProperties": true
},
"PlaylistFolderItemObject": {
"type": "object",
"description": "One list filed in a playlist folder. `object_type` is `playlist`, `smartlist` or `collection` and the property of the same name carries that type's own object, e.g. `{\"sort_order\": 1, \"object_type\": \"playlist\", \"playlist\": {...}}`. `sort_order` is client-assigned and shared with the sibling folders, so ties are broken by name.",
"properties": {
"sort_order": {
"type": "integer",
"description": "position among its siblings; 0 when never placed"
},
"object_type": {
"type": "string",
"description": "The kind of object referenced, as a bare string. The set is intentionally open so a new media type is not a breaking change; values seen today include `song`, `album`, `artist`, `playlist`, `podcast`, `podcast_episode` and `video`."
}
},
"required": [
"sort_order",
"object_type"
],
"additionalProperties": {
"type": "object"
}
},
"PlaylistFolderItemsResponse": {
"type": "object",
"properties": {
"playlist_folder": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"parent": {
"type": "string"
},
"sort_order": {
"type": "integer"
},
"items": {
"type": "integer"
},
"contents": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PlaylistFolderItemObject"
}
}
},
"required": [
"id",
"name",
"parent",
"sort_order",
"items",
"contents"
],
"additionalProperties": true
}
},
"required": [
"playlist_folder"
],
"additionalProperties": true
},
"PlaylistFolderCreateRequest": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"parent": {
"type": "string",
"description": "Parent folder as an id or a name path; the root when omitted"
},
"sort_order": {
"type": "integer"
}
},
"additionalProperties": true
},
"PlaylistFolderEditRequest": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"parent": {
"type": "string",
"description": "New parent as an id or a name path; 0 for the root"
},
"sort_order": {
"type": "integer"
}
},
"additionalProperties": true
},
"PlaylistFolderRemoveRequest": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"playlist",
"smartlist",
"collection"
],
"type": "string"
}
},
"additionalProperties": true
},
"PlaylistFolderAddRequest": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"playlist",
"smartlist",
"collection"
],
"type": "string"
},
"sort_order": {
"type": "integer"
}
},
"additionalProperties": true
}
},
"responses": {
"ErrorResponse": {
"description": "Ampache API error response payload.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"error4700": {
"$ref": "#/components/examples/error4700"
},
"error4701": {
"$ref": "#/components/examples/error4701"
},
"error4702": {
"$ref": "#/components/examples/error4702"
},
"error4703": {
"$ref": "#/components/examples/error4703"
},
"error4704": {
"$ref": "#/components/examples/error4704"
},
"error4705": {
"$ref": "#/components/examples/error4705"
},
"error4706": {
"$ref": "#/components/examples/error4706"
},
"error4710": {
"$ref": "#/components/examples/error4710"
},
"error4742": {
"$ref": "#/components/examples/error4742"
}
}
}
}
},
"BadRequestErrorResponse": {
"description": "HTTP 400 Bad Request (errors 4705, 4710).",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"error4705": {
"$ref": "#/components/examples/error4705"
},
"error4710": {
"$ref": "#/components/examples/error4710"
}
}
}
}
},
"UnauthorizedErrorResponse": {
"description": "HTTP 401 Unauthorized (error 4701).",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"error4701": {
"$ref": "#/components/examples/error4701"
}
}
}
}
},
"ForbiddenErrorResponse": {
"description": "HTTP 403 Forbidden (errors 4700, 4703, 4742).",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"error4700": {
"$ref": "#/components/examples/error4700"
},
"error4703": {
"$ref": "#/components/examples/error4703"
},
"error4742": {
"$ref": "#/components/examples/error4742"
}
}
}
}
},
"NotFoundErrorResponse": {
"description": "HTTP 404 Not Found (error 4704).",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"error4704": {
"$ref": "#/components/examples/error4704"
}
}
}
}
},
"GoneErrorResponse": {
"description": "HTTP 410 Gone (error 4706).",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"error4706": {
"$ref": "#/components/examples/error4706"
}
}
}
}
},
"InternalServerErrorResponse": {
"description": "HTTP 500 Internal Server Error (error 4702).",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"error4702": {
"$ref": "#/components/examples/error4702"
}
}
}
}
}
},
"parameters": {
"Offset": {
"in": "query",
"name": "offset",
"required": false,
"description": "Return results starting from this index position",
"schema": {
"type": "integer"
}
},
"Limit": {
"in": "query",
"name": "limit",
"required": false,
"description": "Maximum number of results to return",
"schema": {
"type": "integer"
}
},
"Cond": {
"in": "query",
"name": "cond",
"required": false,
"description": "Apply additional browse filters using ';' separated key,value pairs.",
"schema": {
"type": "string"
}
},
"Sort": {
"in": "query",
"name": "sort",
"required": false,
"description": "Sort key or key,order pair. Example: name or name,ASC.",
"schema": {
"type": "string"
}
},
"AddFilter": {
"in": "query",
"name": "add",
"required": false,
"description": "Filter to items added on this ISO 8601 date.",
"schema": {
"type": "string",
"format": "date"
}
},
"UpdateFilter": {
"in": "query",
"name": "update",
"required": false,
"description": "Filter to items updated on this ISO 8601 date.",
"schema": {
"type": "string",
"format": "date"
}
},
"Client": {
"in": "query",
"name": "client",
"required": false,
"description": "Client/agent name recorded with the request.",
"schema": {
"type": "string"
}
},
"Operator": {
"in": "query",
"name": "operator",
"required": true,
"description": "and, or (whether to match one rule or all)",
"schema": {
"enum": [
"and",
"or"
],
"type": "string"
}
},
"Rule1": {
"in": "query",
"name": "rule_1",
"required": true,
"description": "Rule field/key for rule 1",
"schema": {
"type": "string"
}
},
"Rule1Operator": {
"in": "query",
"name": "rule_1_operator",
"required": true,
"description": "Operator for rule 1",
"schema": {
"type": "string"
}
},
"Rule1Input": {
"in": "query",
"name": "rule_1_input",
"required": true,
"description": "Input value for rule 1",
"schema": {
"type": "string"
}
},
"Rule2": {
"in": "query",
"name": "rule_2",
"required": false,
"description": "Rule field/key for rule 2",
"schema": {
"type": "string"
}
},
"Rule2Operator": {
"in": "query",
"name": "rule_2_operator",
"required": false,
"description": "Operator for rule 2",
"schema": {
"type": "string"
}
},
"Rule2Input": {
"in": "query",
"name": "rule_2_input",
"required": false,
"description": "Input value for rule 2",
"schema": {
"type": "string"
}
},
"Rule3": {
"in": "query",
"name": "rule_3",
"required": false,
"description": "Rule field/key for rule 3",
"schema": {
"type": "string"
}
},
"Rule3Operator": {
"in": "query",
"name": "rule_3_operator",
"required": false,
"description": "Operator for rule 3",
"schema": {
"type": "string"
}
},
"Rule3Input": {
"in": "query",
"name": "rule_3_input",
"required": false,
"description": "Input value for rule 3",
"schema": {
"type": "string"
}
},
"AlbumId": {
"in": "path",
"name": "album_id",
"required": true,
"description": "Unique identifier of the album.",
"schema": {
"type": "string"
}
},
"AlbumDiskId": {
"in": "path",
"name": "album_disk_id",
"required": true,
"description": "Unique identifier of the album disk.",
"schema": {
"type": "string"
}
},
"ArtistId": {
"in": "path",
"name": "artist_id",
"required": true,
"description": "Unique identifier of the artist.",
"schema": {
"type": "string"
}
},
"BookmarkId": {
"in": "path",
"name": "bookmark_id",
"required": true,
"description": "Unique identifier of the bookmark.",
"schema": {
"type": "string"
}
},
"CatalogId": {
"in": "path",
"name": "catalog_id",
"required": true,
"description": "Unique identifier of the catalog.",
"schema": {
"type": "string"
}
},
"EpisodeId": {
"in": "path",
"name": "episode_id",
"required": true,
"description": "Unique identifier of the podcast episode.",
"schema": {
"type": "string"
}
},
"FolderId": {
"in": "path",
"name": "folder_id",
"required": true,
"description": "Unique identifier of the folder. Use -1 for the virtual root folder.",
"schema": {
"type": "string"
}
},
"GenreId": {
"in": "path",
"name": "genre_id",
"required": true,
"description": "Unique identifier of the genre.",
"schema": {
"type": "string"
}
},
"LabelId": {
"in": "path",
"name": "label_id",
"required": true,
"description": "Unique identifier of the label.",
"schema": {
"type": "string"
}
},
"LicenseId": {
"in": "path",
"name": "license_id",
"required": true,
"description": "Unique identifier of the license.",
"schema": {
"type": "string"
}
},
"LiveStreamId": {
"in": "path",
"name": "live_stream_id",
"required": true,
"description": "Unique identifier of the live stream.",
"schema": {
"type": "string"
}
},
"ObjectId": {
"in": "path",
"name": "object_id",
"required": true,
"description": "Unique identifier of the object.",
"schema": {
"type": "string"
}
},
"PlaylistId": {
"in": "path",
"name": "playlist_id",
"required": true,
"description": "Unique identifier of the playlist.",
"schema": {
"type": "string"
}
},
"PodcastId": {
"in": "path",
"name": "podcast_id",
"required": true,
"description": "Unique identifier of the podcast.",
"schema": {
"type": "string"
}
},
"ShareId": {
"in": "path",
"name": "share_id",
"required": true,
"description": "Unique identifier of the share.",
"schema": {
"type": "string"
}
},
"SmartlistId": {
"in": "path",
"name": "smartlist_id",
"required": true,
"description": "Unique identifier of the smartlist.",
"schema": {
"type": "string"
}
},
"SongId": {
"in": "path",
"name": "song_id",
"required": true,
"description": "Unique identifier of the song.",
"schema": {
"type": "string"
}
},
"UserId": {
"in": "path",
"name": "user_id",
"required": true,
"description": "Unique identifier of the user.",
"schema": {
"type": "string"
}
},
"VideoId": {
"in": "path",
"name": "video_id",
"required": true,
"description": "Unique identifier of the video.",
"schema": {
"type": "string"
}
}
},
"examples": {
"error4700": {
"summary": "4700 Access Control not Enabled",
"value": {
"error": {
"errorCode": "4700",
"errorAction": "handshake",
"errorType": "system",
"errorMessage": "Access Denied"
}
}
},
"error4701": {
"summary": "4701 Received Invalid Handshake",
"value": {
"error": {
"errorCode": "4701",
"errorAction": "handshake",
"errorType": "account",
"errorMessage": "Received Invalid Handshake - Incorrect username or password"
}
}
},
"error4702": {
"summary": "4702 Generic Error",
"value": {
"error": {
"errorCode": "4702",
"errorAction": "system",
"errorType": "system",
"errorMessage": "Generic Error"
}
}
},
"error4703": {
"summary": "4703 Access Denied / Missing Feature",
"value": {
"error": {
"errorCode": "4703",
"errorAction": "video",
"errorType": "system",
"errorMessage": "Enable: video"
}
}
},
"error4704": {
"summary": "4704 Not Found",
"value": {
"error": {
"errorCode": "4704",
"errorAction": "user",
"errorType": "username",
"errorMessage": "Not Found: missing_user"
}
}
},
"error4705": {
"summary": "4705 Missing Method",
"value": {
"error": {
"errorCode": "4705",
"errorAction": "plafgfylist_create",
"errorType": "system",
"errorMessage": "Invalid Request"
}
}
},
"error4706": {
"summary": "4706 Deprecated Method",
"value": {
"error": {
"errorCode": "4706",
"errorAction": "tags",
"errorType": "removed",
"errorMessage": "Deprecated"
}
}
},
"error4710": {
"summary": "4710 Bad Request",
"value": {
"error": {
"errorCode": "4710",
"errorAction": "catalog_action",
"errorType": "task",
"errorMessage": "Bad Request: clean"
}
}
},
"error4742": {
"summary": "4742 Failed Access Check",
"value": {
"error": {
"errorCode": "4742",
"errorAction": "user_edit",
"errorType": "account",
"errorMessage": "Require: 100"
}
}
}
}
},
"security": [
{
"BearerAuth": []
},
{
"ApiKeyAuthHeader": []
},
{
"ApiKeyAuthQuery": []
}
],
"x-rpc-mappings": {
"DELETE /bookmarks/{bookmark_id}": "action=bookmark_delete&filter={bookmark_id}",
"DELETE /catalogs/{catalog_id}": "action=catalog_delete&filter={catalog_id}",
"DELETE /collections/{collection_id}": "action=collection_delete&filter={collection_id}",
"DELETE /collections/{collection_id}/items": "action=collection_remove&filter={collection_id}",
"DELETE /live-streams/{live_stream_id}": "action=live_stream_delete&filter={live_stream_id}",
"DELETE /playlist-folders/{playlist_folder_id}": "action=playlist_folder_delete&filter={playlist_folder_id}",
"DELETE /playlist-folders/{playlist_folder_id}/items": "action=playlist_folder_remove&filter={playlist_folder_id}",
"DELETE /playlists/{playlist_id}": "action=playlist_delete&filter={playlist_id}",
"DELETE /podcast-episodes/{episode_id}": "action=podcast_episode_delete&filter={episode_id}",
"DELETE /podcast-episodes/{episode_id}/bookmark": "action=bookmark_delete&filter={episode_id}&type=podcast_episode",
"DELETE /podcasts/{podcast_id}": "action=podcast_delete&filter={podcast_id}",
"DELETE /preferences/{preference_name}": "action=preference_delete&filter={preference_name}",
"DELETE /shares/{share_id}": "action=share_delete&filter={share_id}",
"DELETE /smartlists/{smartlist_id}": "action=smartlist_delete&filter={smartlist_id}",
"DELETE /songs/{song_id}": "action=song_delete&filter={song_id}",
"DELETE /songs/{song_id}/bookmark": "action=bookmark_delete&filter={song_id}&type=song",
"DELETE /users/{user_id}": "action=user_delete&filter={user_id}",
"DELETE /videos/{video_id}/bookmark": "action=bookmark_delete&filter={video_id}&type=video",
"GET /album-disks/search": "action=search&type=album_disk",
"GET /album-disks/stats": "action=stats&type=album_disk",
"GET /album-disks/{album_disk_id}": "action=album_disk&filter={album_disk_id}",
"GET /album-disks/{album_disk_id}/art": "action=get_art&filter={album_disk_id}&type=album_disk",
"GET /album-disks/{album_disk_id}/browse": "action=browse&filter={album_disk_id}&type=album_disk",
"GET /album-disks/{album_disk_id}/songs": "action=album_disk_songs&filter={album_disk_id}&type=album_disk",
"GET /albums": "action=albums",
"GET /albums/search": "action=search&type=album",
"GET /albums/stats": "action=stats&type=album",
"GET /albums/{album_id}": "action=album&filter={album_id}",
"GET /albums/{album_id}/art": "action=get_art&filter={album_id}&type=album",
"GET /albums/{album_id}/browse": "action=browse&filter={album_id}&type=album",
"GET /albums/{album_id}/disks": "action=album_disks&filter={album_id}&type=album",
"GET /albums/{album_id}/fetch-metadata": "action=get_external_metadata&filter={album_id}&type=album",
"GET /albums/{album_id}/songs": "action=album_songs&filter={album_id}&type=album",
"GET /artists": "action=artists",
"GET /artists/search": "action=search&type=artist",
"GET /artists/stats": "action=stats&type=artist",
"GET /artists/{artist_id}": "action=artist&filter={artist_id}",
"GET /artists/{artist_id}/albums": "action=artist_albums&filter={artist_id}",
"GET /artists/{artist_id}/art": "action=get_art&filter={artist_id}&type=artist",
"GET /artists/{artist_id}/browse": "action=browse&filter={artist_id}&type=artist",
"GET /artists/{artist_id}/fetch-metadata": "action=get_external_metadata&filter={artist_id}&type=artist",
"GET /artists/{artist_id}/similar": "action=get_similar&filter={artist_id}&type=artist",
"GET /artists/{artist_id}/songs": "action=artist_songs&filter={artist_id}&type=artist",
"GET /bookmarks": "action=bookmarks",
"GET /bookmarks/{bookmark_id}": "action=bookmark&filter={bookmark_id}",
"GET /browse": "action=browse",
"GET /catalogs": "action=catalogs",
"GET /catalogs/{catalog_id}": "action=catalog&filter={catalog_id}",
"GET /catalogs/{catalog_id}/browse": "action=browse&filter={catalog_id}&type=catalog",
"GET /catalogs/{catalog_id}/browse/albums/{album_id}": "action=browse&filter={album_id}&type=album&catalog={catalog_id}",
"GET /catalogs/{catalog_id}/browse/artists/{artist_id}": "action=browse&filter={artist_id}&type=artist&catalog={catalog_id}",
"GET /catalogs/{catalog_id}/browse/podcasts/{podcast_id}": "action=browse&filter={podcast_id}&type=podcast&catalog={catalog_id}",
"GET /catalogs/{catalog_id}/folder": "action=catalog_folder&filter={catalog_id}",
"GET /collections": "action=collections",
"GET /collections/{collection_id}": "action=collection&filter={collection_id}",
"GET /collections/{collection_id}/items": "action=collection_items&filter={collection_id}",
"GET /folders": "action=folders",
"GET /folders/{folder_id}": "action=folders&filter={folder_id}",
"GET /genres": "action=genres",
"GET /genres/search": "action=search&type=genre",
"GET /genres/{genre_id}": "action=genre&filter={genre_id}",
"GET /genres/{genre_id}/albums": "action=genre_albums&filter={genre_id}",
"GET /genres/{genre_id}/artists": "action=genre_artists&filter={genre_id}",
"GET /genres/{genre_id}/songs": "action=genre_songs&filter={genre_id}",
"GET /index": "action=index",
"GET /labels": "action=labels",
"GET /labels/search": "action=search&type=label",
"GET /labels/{label_id}": "action=label&filter={label_id}",
"GET /labels/{label_id}/artists": "action=label_artists&filter={label_id}",
"GET /labels/{label_id}/fetch-metadata": "action=get_external_metadata&filter={label_id}&type=label",
"GET /licenses": "action=licenses",
"GET /licenses/{license_id}": "action=license&filter={license_id}",
"GET /licenses/{license_id}/songs": "action=license_songs&filter={license_id}",
"GET /list": "action=list",
"GET /live-streams": "action=live_streams",
"GET /live-streams/{live_stream_id}": "action=live_stream&filter={live_stream_id}",
"GET /localplay/songs": "action=localplay_songs",
"GET /localplay/status": "action=localplay&command=status",
"GET /me": "action=user",
"GET /me/friends-timeline": "action=friends_timeline",
"GET /me/last-shouts": "action=last_shouts",
"GET /me/lost-password": "action=lost_password",
"GET /me/now-playing": "action=now_playing",
"GET /me/playlists": "action=user_playlists",
"GET /me/smartlists": "action=user_smartlists",
"GET /ping": "action=ping",
"GET /playlist-folders": "action=playlist_folders",
"GET /playlist-folders/{playlist_folder_id}": "action=playlist_folder&filter={playlist_folder_id}",
"GET /playlist-folders/{playlist_folder_id}/items": "action=playlist_folder_items&filter={playlist_folder_id}",
"GET /playlists": "action=playlists",
"GET /playlists/search": "action=search&type=playlist",
"GET /playlists/stats": "action=stats&type=playlist",
"GET /playlists/{playlist_id}": "action=playlist&filter={playlist_id}",
"GET /playlists/{playlist_id}/art": "action=get_art&filter={playlist_id}&type=playlist",
"GET /playlists/{playlist_id}/download": "action=download&filter={playlist_id}&type=playlist",
"GET /playlists/{playlist_id}/hash": "action=playlist_hash&filter={playlist_id}",
"GET /playlists/{playlist_id}/songs": "action=playlist_songs&filter={playlist_id}",
"GET /playlists/{playlist_id}/stream": "action=stream&filter={playlist_id}&type=playlist",
"GET /podcast-episodes": "action=podcast_episodes",
"GET /podcast-episodes/deleted": "action=deleted_podcast_episodes",
"GET /podcast-episodes/search": "action=search&type=podcast_episode",
"GET /podcast-episodes/stats": "action=stats&type=podcast_episode",
"GET /podcast-episodes/{episode_id}": "action=podcast_episode&filter={episode_id}",
"GET /podcast-episodes/{episode_id}/bookmark": "action=bookmark&filter={episode_id}&type=podcast_episode",
"GET /podcast-episodes/{episode_id}/download": "action=download&filter={episode_id}&type=podcast_episode",
"GET /podcast-episodes/{episode_id}/stream": "action=stream&filter={episode_id}&type=podcast_episode",
"GET /podcasts": "action=podcasts",
"GET /podcasts/search": "action=search&type=podcast",
"GET /podcasts/stats": "action=stats&type=podcast",
"GET /podcasts/{podcast_id}": "action=podcast&filter={podcast_id}",
"GET /podcasts/{podcast_id}/art": "action=get_art&filter={podcast_id}&type=podcast",
"GET /podcasts/{podcast_id}/browse": "action=browse&filter={podcast_id}&type=podcast",
"GET /podcasts/{podcast_id}/podcast-episodes": "action=podcast_episodes&filter={podcast_id}",
"GET /preferences": "action=user_preferences",
"GET /preferences/{preference_name}": "action=user_preference&filter={preference_name}",
"GET /random": "action=random&type={type}",
"GET /search/{search_type}/groups": "action=search_group&filter={search_type}",
"GET /search/{search_type}/rules": "action=search_rules&filter={search_type}",
"GET /shares": "action=shares",
"GET /shares/{share_id}": "action=share&filter={share_id}",
"GET /smartlists": "action=smartlists",
"GET /smartlists/{smartlist_id}": "action=smartlist&filter={smartlist_id}",
"GET /smartlists/{smartlist_id}/art": "action=get_art&filter={smartlist_id}&type=smartlist",
"GET /smartlists/{smartlist_id}/download": "action=download&filter={smartlist_id}&type=smartlist",
"GET /smartlists/{smartlist_id}/songs": "action=smartlist_songs&filter={smartlist_id}",
"GET /smartlists/{smartlist_id}/stream": "action=stream&filter={smartlist_id}&type=smartlist",
"GET /songs": "action=songs",
"GET /songs/deleted": "action=deleted_songs",
"GET /songs/lookup/url-to-song": "action=url_to_song",
"GET /songs/playlist-generate": "action=playlist_generate",
"GET /songs/search": "action=search&type=song",
"GET /songs/stats": "action=stats&type=song",
"GET /songs/{song_id}": "action=song&filter={song_id}",
"GET /songs/{song_id}/art": "action=get_art&filter={song_id}&type=song",
"GET /songs/{song_id}/bookmark": "action=bookmark&filter={song_id}&type=song",
"GET /songs/{song_id}/download": "action=download&filter={song_id}",
"GET /songs/{song_id}/fetch-metadata": "action=get_external_metadata&filter={song_id}&type=song",
"GET /songs/{song_id}/lyrics": "action=get_lyrics&filter={song_id}",
"GET /songs/{song_id}/similar": "action=get_similar&filter={song_id}&type=song",
"GET /songs/{song_id}/sonic-match": "action=sonic_match&filter={song_id}",
"GET /songs/{song_id}/stream": "action=stream&filter={song_id}&type=song",
"GET /songs/{song_id}/tags": "action=song_tags&filter={song_id}",
"GET /system-preferences": "action=system_preferences",
"GET /system-preferences/{preference_name}": "action=system_preference&filter={preference_name}",
"GET /update": "action=system_update",
"GET /users": "action=users",
"GET /users/search": "action=search&type=user",
"GET /users/{user_id}": "action=user&filter={user_id}",
"GET /users/{user_id}/followers": "action=followers&filter={user_id}",
"GET /users/{user_id}/following": "action=following&filter={user_id}",
"GET /users/{user_id}/timeline": "action=timeline&filter={user_id}",
"GET /videos": "action=videos",
"GET /videos/deleted": "action=deleted_videos",
"GET /videos/search": "action=search&type=video",
"GET /videos/stats": "action=stats&type=video",
"GET /videos/{video_id}": "action=video&filter={video_id}",
"GET /videos/{video_id}/bookmark": "action=bookmark&filter={video_id}&type=video",
"PATCH /bookmarks/{bookmark_id}": "action=bookmark_edit&filter={bookmark_id}",
"PATCH /collections/{collection_id}": "action=collection_edit&filter={collection_id}",
"PATCH /live-streams/{live_stream_id}": "action=live_stream_edit&filter={live_stream_id}",
"PATCH /playlist-folders/{playlist_folder_id}": "action=playlist_folder_edit&filter={playlist_folder_id}",
"PATCH /playlists/{playlist_id}": "action=playlist_edit&filter={playlist_id}",
"PATCH /podcast-episodes/{episode_id}/bookmark": "action=bookmark_edit&filter={episode_id}&type=podcast_episode",
"PATCH /podcasts/{podcast_id}": "action=podcast_edit&filter={podcast_id}",
"PATCH /preferences/{preference_name}": "action=preference_edit&filter={preference_name}",
"PATCH /shares/{share_id}": "action=share_edit&filter={share_id}",
"PATCH /songs/{song_id}/bookmark": "action=bookmark_edit&filter={song_id}&type=song",
"PATCH /users/{user_id}": "action=user_edit&filter={user_id}",
"PATCH /videos/{video_id}/bookmark": "action=bookmark_edit&filter={video_id}&type=video",
"POST /album-disks/{album_disk_id}/flag": "action=flag&filter={album_disk_id}&type=album_disk",
"POST /album-disks/{album_disk_id}/rate": "action=rate&filter={album_disk_id}&type=album_disk",
"POST /albums/{album_id}/flag": "action=flag&filter={album_id}&type=album",
"POST /albums/{album_id}/rate": "action=rate&filter={album_id}&type=album",
"POST /albums/{album_id}/share": "action=share_create&filter={album_id}&type=album",
"POST /albums/{album_id}/update-art": "action=update_art&filter={album_id}&type=album",
"POST /albums/{album_id}/update-tags": "action=update_from_tags&filter={album_id}&type=album",
"POST /artists/{artist_id}/fetch-info": "action=update_artist_info&filter={artist_id}&type=artist",
"POST /artists/{artist_id}/flag": "action=flag&filter={artist_id}&type=artist",
"POST /artists/{artist_id}/rate": "action=rate&filter={artist_id}&type=artist",
"POST /artists/{artist_id}/share": "action=share_create&filter={artist_id}&type=artist",
"POST /artists/{artist_id}/update-art": "action=update_art&filter={artist_id}&type=artist",
"POST /artists/{artist_id}/update-tags": "action=update_from_tags&filter={artist_id}&type=artist",
"POST /catalogs/{catalog_id}/action": "action=catalog_action&filter={catalog_id}",
"POST /catalogs/{catalog_id}/add": "action=catalog_action&filter={catalog_id}&task=add_to_catalog",
"POST /catalogs/{catalog_id}/clean": "action=catalog_action&filter={catalog_id}&task=clean_catalog",
"POST /catalogs/{catalog_id}/file": "action=catalog_file&filter={catalog_id}",
"POST /catalogs/{catalog_id}/folder": "action=catalog_folder&filter={catalog_id}",
"POST /catalogs/{catalog_id}/update": "action=catalog_action&filter={catalog_id}&task=update_catalog",
"POST /catalogs/{catalog_id}/verify": "action=catalog_action&filter={catalog_id}&task=verify_catalog",
"POST /democratic/{object_id}": "action=democratic&filter={object_id}",
"POST /democratic/{object_id}/localplay": "action=localplay&filter={object_id}&type=democratic",
"POST /goodbye": "action=goodbye",
"POST /handshake": "action=handshake",
"POST /live-streams/{live_stream_id}/localplay": "action=localplay&command=add&filter={live_stream_id}&type=live_stream",
"POST /localplay/add": "action=localplay&command=add&filter={object_id}&type={object_type}",
"POST /localplay/delete-all": "action=localplay&command=delete_all",
"POST /localplay/next": "action=localplay&command=next",
"POST /localplay/pause": "action=localplay&command=pause",
"POST /localplay/play": "action=localplay&command=play",
"POST /localplay/prev": "action=localplay&command=prev",
"POST /localplay/skip": "action=localplay&command=skip",
"POST /localplay/stop": "action=localplay&command=stop",
"POST /localplay/volume-down": "action=localplay&command=volume_down",
"POST /localplay/volume-mute": "action=localplay&command=volume_mute",
"POST /localplay/volume-up": "action=localplay&command=volume_up",
"POST /playlists/{playlist_id}/add": "action=playlist_add&filter={playlist_id}",
"POST /playlists/{playlist_id}/flag": "action=flag&filter={playlist_id}",
"POST /playlists/{playlist_id}/rate": "action=rate&filter={playlist_id}",
"POST /playlists/{playlist_id}/remove": "action=playlist_remove&filter={playlist_id}&id={object_id}&type={object_type}",
"POST /playlists/{playlist_id}/remove-song": "action=playlist_remove_song&filter={playlist_id}&song={song_id}",
"POST /playlists/{playlist_id}/share": "action=share_create&filter={playlist_id}",
"POST /podcast-episodes/{episode_id}/flag": "action=flag&filter={episode_id}&type=podcast_episode",
"POST /podcast-episodes/{episode_id}/localplay": "action=localplay&command=add&filter={episode_id}&type=podcast_episode",
"POST /podcast-episodes/{episode_id}/playback": "action=player&filter={episode_id}&type=podcast_episode",
"POST /podcast-episodes/{episode_id}/rate": "action=rate&filter={episode_id}&type=podcast_episode",
"POST /podcast-episodes/{episode_id}/share": "action=share_create&filter={episode_id}&type=podcast_episode",
"POST /podcasts/{podcast_id}/flag": "action=flag&filter={podcast_id}",
"POST /podcasts/{podcast_id}/rate": "action=rate&filter={podcast_id}",
"POST /podcasts/{podcast_id}/share": "action=share_create&filter={podcast_id}",
"POST /podcasts/{podcast_id}/sync": "action=update_podcast&filter={podcast_id}",
"POST /register": "action=register",
"POST /scrobble": "action=scrobble",
"POST /smartlists/{smartlist_id}/flag": "action=flag&filter={smartlist_id}&type=smartlist",
"POST /smartlists/{smartlist_id}/rate": "action=rate&filter={smartlist_id}&type=smartlist",
"POST /smartlists/{smartlist_id}/share": "action=share_create&filter={smartlist_id}&type=smartlist",
"POST /songs/{song_id}/flag": "action=flag&filter={song_id}",
"POST /songs/{song_id}/localplay": "action=localplay&command=add&filter={song_id}&type=song",
"POST /songs/{song_id}/playback": "action=player&filter={song_id}&type=song",
"POST /songs/{song_id}/rate": "action=rate&filter={song_id}",
"POST /songs/{song_id}/record-play": "action=record_play&filter={song_id}",
"POST /songs/{song_id}/share": "action=share_create&filter={song_id}",
"POST /songs/{song_id}/update-tags": "action=update_from_tags&filter={song_id}&type=song",
"POST /upload": "action=upload",
"POST /users/{user_id}/follow": "action=toggle_follow&filter={user_id}",
"POST /videos/{video_id}/flag": "action=flag&filter={video_id}&type=video",
"POST /videos/{video_id}/localplay": "action=localplay&command=add&filter={video_id}&type=video",
"POST /videos/{video_id}/playback": "action=player&filter={video_id}&type=video",
"POST /videos/{video_id}/rate": "action=rate&filter={video_id}&type=video",
"POST /videos/{video_id}/share": "action=share_create&filter={video_id}&type=video",
"PUT /bookmarks": "action=bookmark_create&filter={object_id}&type={object_type}",
"PUT /catalogs": "action=catalog_create",
"PUT /collections": "action=collection_create",
"PUT /collections/{collection_id}/items": "action=collection_add&filter={collection_id}",
"PUT /live-streams": "action=live_stream_create",
"PUT /playlist-folders": "action=playlist_folder_create",
"PUT /playlist-folders/{playlist_folder_id}/items": "action=playlist_folder_add&filter={playlist_folder_id}",
"PUT /playlists": "action=playlist_create",
"PUT /podcast-episodes/{episode_id}/bookmark": "action=bookmark_create&filter={episode_id}&type=podcast_episode",
"PUT /podcasts": "action=podcast_create",
"PUT /preferences": "action=preference_create",
"PUT /shares": "action=share_create",
"PUT /songs/{song_id}/bookmark": "action=bookmark_create&filter={song_id}&type=song",
"PUT /users": "action=user_create",
"PUT /videos/{video_id}/bookmark": "action=bookmark_create&filter={video_id}&type=video"
},
"paths": {
"/album-disks/search": {
"get": {
"description": "Provide operator plus one or more rule triplets. At minimum, rule_1, rule_1_operator, rule_1_input are required. Additional rules may be supplied as rule_2, rule_2_operator, rule_2_input, etc.",
"operationId": "searchAlbumDisks",
"parameters": [
{
"$ref": "#/components/parameters/Operator"
},
{
"description": "0, 1 (random order of results; default to 0)",
"in": "query",
"name": "random",
"required": false,
"schema": {
"default": false,
"type": "boolean"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Rule1"
},
{
"$ref": "#/components/parameters/Rule1Operator"
},
{
"$ref": "#/components/parameters/Rule1Input"
},
{
"$ref": "#/components/parameters/Rule2"
},
{
"$ref": "#/components/parameters/Rule2Operator"
},
{
"$ref": "#/components/parameters/Rule2Input"
},
{
"$ref": "#/components/parameters/Rule3"
},
{
"$ref": "#/components/parameters/Rule3Operator"
},
{
"$ref": "#/components/parameters/Rule3Input"
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AlbumDisksResponse"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Advanced search for album disks",
"tags": [
"Albums",
"Search"
]
}
},
"/album-disks/stats": {
"get": {
"parameters": [
{
"description": "newest, highest, frequent, recent, forgotten, flagged, random",
"in": "query",
"name": "filter",
"required": true,
"schema": {
"default": "random",
"enum": [
"newest",
"highest",
"frequent",
"recent",
"forgotten",
"flagged",
"random"
],
"type": "string"
}
},
{
"in": "query",
"name": "user_id",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "username",
"required": false,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AlbumDisksResponse"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get album disk stats",
"tags": [
"Browsing, Indexes and Lists"
],
"operationId": "statsAlbumDisks",
"description": "Get some items based on some simple search types and filters. (Random by default) This method **HAD** partial backwards compatibility with older api versions but it has now been removed Pass -1 limit to get all results. (0 will fall back to the `popular_threshold` value)"
}
},
"/album-disks/{album_disk_id}": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/AlbumDiskId"
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
"songs"
],
"type": "string"
},
"description": "songs (include child objects in the response)"
}
],
"summary": "Get album disk by ID",
"tags": [
"Albums"
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AlbumDiskObject"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"operationId": "albumDisk",
"description": "This returns a single album disk based on the UID provided"
}
},
"/album-disks/{album_disk_id}/art": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/AlbumDiskId"
},
{
"in": "query",
"name": "size",
"required": false,
"schema": {
"type": "string"
},
"description": "widthxheight, e.g. 640x480"
}
],
"summary": "Get art image (binary)",
"tags": [
"Artwork"
],
"responses": {
"200": {
"description": "The image itself, written straight to the response body",
"headers": {
"Content-Type": {
"description": "The stored art mime type (e.g. `image/jpeg`, `image/png`)",
"schema": {
"type": "string"
}
},
"Content-Length": {
"description": "Size of the image in bytes",
"schema": {
"type": "integer"
}
},
"Access-Control-Allow-Origin": {
"description": "Always `*`, so art can be loaded cross-origin",
"schema": {
"type": "string"
}
}
},
"content": {
"image/*": {
"schema": {
"type": "string",
"format": "binary"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"operationId": "getArtAlbumDisks",
"description": "Get an art image."
}
},
"/album-disks/{album_disk_id}/browse": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/AlbumDiskId"
},
{
"in": "query",
"name": "catalog",
"required": false,
"description": "Restrict the children to a single catalog. Omit it to browse every catalog you can see.",
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BrowseResponse"
}
}
},
"description": "Browse results"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Browse songs of an album disk",
"tags": [
"Albums",
"Browsing, Indexes and Lists"
],
"description": "Return children of a parent object in a folder traversal/browse style. The catalog is an optional filter from API version 8; omit it to browse the children in every catalog you can see.",
"operationId": "browseAlbumDisks"
}
},
"/album-disks/{album_disk_id}/flag": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/AlbumDiskId"
},
{
"in": "query",
"name": "flag",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"summary": "Flag a library item",
"tags": [
"Ratings and Flags"
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "flag",
"value": {
"success": "flag ADDED to 12"
}
}
}
}
},
"description": "Updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FlagRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/FlagRequest"
}
}
}
},
"operationId": "flagAlbumDisks",
"description": "This flags a library item as a favorite"
}
},
"/album-disks/{album_disk_id}/rate": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/AlbumDiskId"
},
{
"in": "query",
"name": "rating",
"required": false,
"schema": {
"type": "integer"
}
}
],
"summary": "Rate a library item",
"tags": [
"Ratings and Flags"
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "rate",
"value": {
"success": "rating set to 5 for 12"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/RateRequest"
}
}
}
},
"operationId": "rateAlbumDisks",
"description": "This rates a library item"
}
},
"/album-disks/{album_disk_id}/songs": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/AlbumDiskId"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"summary": "Get songs for an album disk",
"tags": [
"Albums",
"Songs"
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SongsResponse"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"operationId": "albumDiskSongs",
"description": "This returns the songs of a specified album disk"
}
},
"/albums": {
"get": {
"parameters": [
{
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "exact",
"required": false,
"schema": {
"type": "boolean"
}
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AlbumsResponse"
},
"examples": {
"albums": {
"summary": "albums",
"value": {
"total_count": 1,
"md5": "c4b66550e50f6ae8347c6592ebc1a4d1",
"album": [
{
"id": "21",
"name": "Forget and Remember",
"prefix": null,
"basename": "Forget and Remember",
"artist": {
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
},
"artists": [
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
}
],
"songartists": [
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
}
],
"time": 4248,
"year": 2005,
"tracks": [],
"songcount": 20,
"diskcount": 1,
"type": "album",
"genre": [
{
"id": "8",
"name": "Hip-Hop"
}
],
"art": "https://music.com.au/image.php?object_id=21&object_type=album&id=435&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": "6e1d48f7-717c-416e-af35-5d2454a13af2",
"mbid_group": "1501fe8a-f060-3b6f-8cb0-7babfc65192a",
"catalog": "4"
}
]
}
}
}
}
},
"description": "Albums list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List albums",
"tags": [
"Albums"
],
"operationId": "albums",
"description": "This returns albums based on the provided search filters"
}
},
"/albums/search": {
"get": {
"description": "Provide operator plus one or more rule triplets. At minimum, rule_1, rule_1_operator, rule_1_input are required. Additional rules may be supplied as rule_2, rule_2_operator, rule_2_input, etc.",
"operationId": "searchAlbums",
"parameters": [
{
"$ref": "#/components/parameters/Operator"
},
{
"description": "0, 1 (random order of results; default to 0)",
"in": "query",
"name": "random",
"required": false,
"schema": {
"default": false,
"type": "boolean"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Rule1"
},
{
"$ref": "#/components/parameters/Rule1Operator"
},
{
"$ref": "#/components/parameters/Rule1Input"
},
{
"$ref": "#/components/parameters/Rule2"
},
{
"$ref": "#/components/parameters/Rule2Operator"
},
{
"$ref": "#/components/parameters/Rule2Input"
},
{
"$ref": "#/components/parameters/Rule3"
},
{
"$ref": "#/components/parameters/Rule3Operator"
},
{
"$ref": "#/components/parameters/Rule3Input"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AlbumsResponse"
},
"examples": {
"albums": {
"summary": "albums (search results)",
"value": {
"total_count": 1,
"md5": "c4b66550e50f6ae8347c6592ebc1a4d1",
"album": [
{
"id": "21",
"name": "Forget and Remember",
"prefix": null,
"basename": "Forget and Remember",
"artist": {
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
},
"artists": [
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
}
],
"songartists": [
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
}
],
"time": 4248,
"year": 2005,
"tracks": [],
"songcount": 20,
"diskcount": 1,
"type": "album",
"genre": [
{
"id": "8",
"name": "Hip-Hop"
}
],
"art": "https://music.com.au/image.php?object_id=21&object_type=album&id=435&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": "6e1d48f7-717c-416e-af35-5d2454a13af2",
"mbid_group": "1501fe8a-f060-3b6f-8cb0-7babfc65192a",
"catalog": "4"
}
]
}
}
}
}
},
"description": "Search results"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Search for media entities using rule triplets",
"tags": [
"Albums",
"Search"
]
}
},
"/albums/stats": {
"get": {
"parameters": [
{
"description": "newest, highest, frequent, recent, forgotten, flagged, random",
"in": "query",
"name": "filter",
"required": true,
"schema": {
"default": "random",
"enum": [
"newest",
"highest",
"frequent",
"recent",
"forgotten",
"flagged",
"random"
],
"type": "string"
}
},
{
"in": "query",
"name": "user_id",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "username",
"required": false,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AlbumsResponse"
},
"examples": {
"stats_album": {
"summary": "stats (album)",
"value": {
"total_count": 2,
"md5": "94e14f164c95aa0ab6a40a2563d07c3f",
"album": [
{
"id": "21",
"name": "Forget and Remember",
"prefix": null,
"basename": "Forget and Remember",
"artist": {
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
},
"artists": [
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
}
],
"songartists": [
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
}
],
"time": 4248,
"year": 2005,
"tracks": [],
"songcount": 20,
"diskcount": 1,
"type": "album",
"genre": [
{
"id": "8",
"name": "Hip-Hop"
}
],
"art": "https://music.com.au/image.php?object_id=21&object_type=album&id=435&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": "6e1d48f7-717c-416e-af35-5d2454a13af2",
"mbid_group": "1501fe8a-f060-3b6f-8cb0-7babfc65192a",
"catalog": "4"
},
{
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea",
"artist": {
"id": "19",
"name": "Various Artists",
"prefix": null,
"basename": "Various Artists"
},
"artists": [
{
"id": "19",
"name": "Various Artists",
"prefix": null,
"basename": "Various Artists"
}
],
"songartists": [
{
"id": "20",
"name": "R/B",
"prefix": null,
"basename": "R/B"
},
{
"id": "21",
"name": "Tip-C (featuring Mike Beers)",
"prefix": null,
"basename": "Tip-C (featuring Mike Beers)"
},
{
"id": "23",
"name": "Manic Notion",
"prefix": null,
"basename": "Manic Notion"
},
{
"id": "26",
"name": "Stress Builds Character",
"prefix": null,
"basename": "Stress Builds Character"
},
{
"id": "27",
"name": "Chi.Otic",
"prefix": null,
"basename": "Chi.Otic"
},
{
"id": "32",
"name": "Shorty Mac",
"prefix": null,
"basename": "Shorty Mac"
},
{
"id": "33",
"name": "MxBxCx",
"prefix": null,
"basename": "MxBxCx"
},
{
"id": "34",
"name": "Comedown Kid",
"prefix": null,
"basename": "Comedown Kid"
},
{
"id": "35",
"name": "Tip-C",
"prefix": null,
"basename": "Tip-C"
}
],
"time": 1879,
"year": 2012,
"tracks": [],
"songcount": 9,
"diskcount": 1,
"type": "compilation",
"genre": [
{
"id": "7",
"name": "Punk"
}
],
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": null,
"mbid_group": null,
"catalog": "1"
}
]
}
}
}
}
},
"description": "Stats result"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get stats (song/album/artist etc) by type and filter",
"tags": [
"Browsing, Indexes and Lists"
],
"operationId": "statsAlbums",
"description": "Get some items based on some simple search types and filters. (Random by default) This method **HAD** partial backwards compatibility with older api versions but it has now been removed Pass -1 limit to get all results. (0 will fall back to the `popular_threshold` value)"
}
},
"/albums/{album_id}": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/AlbumId"
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AlbumObject"
},
"examples": {
"album": {
"summary": "album",
"value": {
"id": "18",
"name": "Inominavel (live.v.01)",
"prefix": null,
"basename": "Inominavel (live.v.01)",
"artist": {
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
},
"artists": [
{
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
}
],
"songartists": [
{
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
}
],
"time": 1339,
"year": 2007,
"tracks": [],
"songcount": 6,
"diskcount": 1,
"type": null,
"genre": [
{
"id": "3",
"name": "Noise"
}
],
"art": "https://music.com.au/image.php?object_id=18&object_type=album&id=278&name=art.jpg",
"has_art": true,
"flag": false,
"rating": 4,
"averagerating": 3.67,
"mbid": null,
"mbid_group": null,
"catalog": "1"
}
}
}
}
},
"description": "Album details"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get album by ID",
"tags": [
"Albums"
],
"operationId": "album",
"description": "This returns a single album based on the UID provided"
}
},
"/albums/{album_id}/art": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/AlbumId"
},
{
"description": "widthxheight, e.g. 640x480",
"in": "query",
"name": "size",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "The image itself, written straight to the response body",
"headers": {
"Content-Type": {
"description": "The stored art mime type (e.g. `image/jpeg`, `image/png`)",
"schema": {
"type": "string"
}
},
"Content-Length": {
"description": "Size of the image in bytes",
"schema": {
"type": "integer"
}
},
"Access-Control-Allow-Origin": {
"description": "Always `*`, so art can be loaded cross-origin",
"schema": {
"type": "string"
}
}
},
"content": {
"image/*": {
"schema": {
"type": "string",
"format": "binary"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get art image (binary)",
"tags": [
"Artwork"
],
"operationId": "getArtAlbums",
"description": "Get an art image."
}
},
"/albums/{album_id}/browse": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/AlbumId"
},
{
"in": "query",
"name": "catalog",
"required": false,
"description": "Restrict the children to a single catalog. Omit it to browse every catalog you can see.",
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BrowseResponse"
}
}
},
"description": "Browse results"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Browse songs of an album",
"tags": [
"Albums",
"Browsing, Indexes and Lists"
],
"description": "Return children of a parent object in a folder traversal/browse style. The catalog is an optional filter from API version 8; omit it to browse the children in every catalog you can see.",
"operationId": "browseAlbums"
}
},
"/albums/{album_id}/disks": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/AlbumId"
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
"songs"
],
"type": "string"
},
"description": "songs (include child objects in the response)"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"summary": "Get the disks of an album",
"tags": [
"Albums"
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AlbumDisksResponse"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"operationId": "albumDisks",
"description": "This returns the disks of a specified album"
}
},
"/albums/{album_id}/fetch-metadata": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/AlbumId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ExternalMetadataResponse"
},
"examples": {
"get_external_metadata": {
"summary": "get_external_metadata (no plugin answered)",
"value": {
"total_count": 0,
"md5": "40cd750bba9870f18aada2478b24840a",
"album": []
}
}
}
}
},
"description": "External metadata array"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get external metadata for an album",
"tags": [
"Albums",
"Utilities"
],
"operationId": "getExternalMetadataAlbumsFetchMetadata",
"description": "Return External plugin metadata searching by object id and type"
}
},
"/albums/{album_id}/flag": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/AlbumId"
},
{
"in": "query",
"name": "flag",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "flag",
"value": {
"success": "flag ADDED to 91"
}
}
}
}
},
"description": "Updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Flag or unflag an item as favourite",
"tags": [
"Ratings and Flags"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FlagRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/FlagRequest"
}
}
}
},
"operationId": "flagAlbums",
"description": "This flags a library item as a favorite"
}
},
"/albums/{album_id}/rate": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/AlbumId"
},
{
"in": "query",
"name": "rating",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "rate",
"value": {
"success": "rating set to 5 for 91"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Rate a library item",
"tags": [
"Ratings and Flags"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/RateRequest"
}
}
}
},
"operationId": "rateAlbums",
"description": "This rates a library item"
}
},
"/albums/{album_id}/share": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/AlbumId"
},
{
"in": "query",
"name": "description",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "days to keep active",
"in": "query",
"name": "expires",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareObject"
},
"examples": {
"share": {
"summary": "share",
"value": {
"id": "1",
"name": "Creeping Lawler 2",
"owner": "user",
"allow_stream": true,
"allow_download": false,
"creation_date": 1670202706,
"lastvisit_date": 1614129643,
"object_type": "album",
"object_id": "9",
"expire_days": 0,
"max_counter": 0,
"counter": 1,
"secret": "GJ7EzBPT",
"public_url": "https://music.com.au/share.php?id=1&secret=GJ7EzBPT",
"description": "Creeping Lawler 2 (Warfare 3.0)"
}
}
}
}
},
"description": "Share created"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a public share URL",
"tags": [
"Shares"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareCreateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/ShareCreateRequest"
}
}
}
},
"operationId": "shareCreateAlbums",
"description": "Create a public url that can be used by anyone to stream media. Takes the file id with optional description and expires parameters."
}
},
"/albums/{album_id}/songs": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/AlbumId"
},
{
"in": "query",
"name": "top50",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SongsResponse"
},
"examples": {
"album_songs": {
"summary": "album songs",
"value": {
"total_count": 6,
"md5": "00b72b7a8d7b621f7ceccff51fc7842a",
"song": [
{
"id": "78",
"title": "inominavel p01",
"name": "inominavel p01",
"artist": {
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
},
"artists": [
{
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
}
],
"album": {
"id": "18",
"name": "Inominavel (live.v.01)",
"prefix": null,
"basename": "Inominavel (live.v.01)"
},
"albumartist": {
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
},
"disk": 1,
"disksubtitle": null,
"track": 1,
"filename": "/mnt/files-music/ampache-test/music/Structura/Inominavel (live.v.01)/01_structura_-_inominavel_p01.mp3",
"genre": [
{
"id": "3",
"name": "Noise"
}
],
"playlisttrack": 1,
"time": 84,
"year": 2007,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 192000,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "cbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=78&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=structura%20-%20inominavel%20p01.mp3",
"size": 2036632,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=18&object_type=album&id=278&name=art.jpg",
"has_art": true,
"flag": true,
"rating": 5,
"averagerating": null,
"playcount": 2,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "http://enoughrecords.scene.org",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": 0,
"replaygain_track_peak": 0,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "77",
"title": "inominavel p02",
"name": "inominavel p02",
"artist": {
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
},
"artists": [
{
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
}
],
"album": {
"id": "18",
"name": "Inominavel (live.v.01)",
"prefix": null,
"basename": "Inominavel (live.v.01)"
},
"albumartist": {
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
},
"disk": 1,
"disksubtitle": null,
"track": 2,
"filename": "/mnt/files-music/ampache-test/music/Structura/Inominavel (live.v.01)/02_structura_-_inominavel_p02.mp3",
"genre": [
{
"id": "3",
"name": "Noise"
}
],
"playlisttrack": 2,
"time": 237,
"year": 2007,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 192000,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "cbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=77&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=structura%20-%20inominavel%20p02.mp3",
"size": 5723290,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=18&object_type=album&id=278&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "http://enoughrecords.scene.org",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": 0,
"replaygain_track_peak": 0,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "74",
"title": "inominavel p03",
"name": "inominavel p03",
"artist": {
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
},
"artists": [
{
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
}
],
"album": {
"id": "18",
"name": "Inominavel (live.v.01)",
"prefix": null,
"basename": "Inominavel (live.v.01)"
},
"albumartist": {
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
},
"disk": 1,
"disksubtitle": null,
"track": 3,
"filename": "/mnt/files-music/ampache-test/music/Structura/Inominavel (live.v.01)/03_structura_-_inominavel_p03.mp3",
"genre": [
{
"id": "3",
"name": "Noise"
}
],
"playlisttrack": 3,
"time": 143,
"year": 2007,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 192000,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "cbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=74&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=structura%20-%20inominavel%20p03.mp3",
"size": 3449255,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=18&object_type=album&id=278&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "http://enoughrecords.scene.org",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": 0,
"replaygain_track_peak": 0,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "76",
"title": "inominavel p04",
"name": "inominavel p04",
"artist": {
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
},
"artists": [
{
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
}
],
"album": {
"id": "18",
"name": "Inominavel (live.v.01)",
"prefix": null,
"basename": "Inominavel (live.v.01)"
},
"albumartist": {
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
},
"disk": 1,
"disksubtitle": null,
"track": 4,
"filename": "/mnt/files-music/ampache-test/music/Structura/Inominavel (live.v.01)/04_structura_-_inominavel_p04.mp3",
"genre": [
{
"id": "3",
"name": "Noise"
}
],
"playlisttrack": 4,
"time": 317,
"year": 2007,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 192000,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "cbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=76&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=structura%20-%20inominavel%20p04.mp3",
"size": 7629821,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=18&object_type=album&id=278&name=art.jpg",
"has_art": true,
"flag": false,
"rating": 3,
"averagerating": 3,
"playcount": 1,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "http://enoughrecords.scene.org",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": 0,
"replaygain_track_peak": 0,
"r128_album_gain": null,
"r128_track_gain": null
}
]
}
}
}
}
},
"description": "Song list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get songs for an album",
"tags": [
"Albums",
"Songs"
],
"operationId": "albumSongs",
"description": "This returns the songs of a specified album"
}
},
"/albums/{album_id}/update-art": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/AlbumId"
},
{
"in": "query",
"name": "overwrite",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "update art",
"value": {
"success": "Gathered new art for: 2 (album)",
"art": "https://music.com.au/image.php?object_id=2&object_type=album&id=84&name=art.png"
}
}
}
}
},
"description": "Updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Update art for an object (Catalog Manager)",
"tags": [
"Utilities"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateArtRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/UpdateArtRequest"
}
}
}
},
"operationId": "updateArtAlbums",
"description": "Updates a single album, artist, song running the gather_art process Existing art is replaced unless you send overwrite=0, which keeps whatever is already there."
}
},
"/albums/{album_id}/update-tags": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/AlbumId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "update from tags",
"value": {
"success": "Updated tags for: 2 (album)"
}
}
}
}
},
"description": "Updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Update object metadata from tags",
"tags": [
"Utilities"
],
"operationId": "updateFromTagsAlbums",
"description": "Update a single album, artist, song from the tag data"
}
},
"/artists": {
"get": {
"parameters": [
{
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "exact",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"description": "albums,songs",
"in": "query",
"name": "include",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "album_artist",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ArtistsResponse"
},
"examples": {
"artists": {
"summary": "artists",
"value": {
"total_count": 18,
"md5": "2d3fc4f09bcaf62b4f5db0821edd5b1f",
"artist": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN",
"albums": [],
"albumcount": 1,
"songs": [],
"songcount": 9,
"genre": [],
"art": "https://music.com.au/image.php?object_id=16&object_type=artist&id=134&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": null,
"summary": "Formerly called DEFY CHRIST. CARNÚN were formed in 1995. Incorporating a mix of Black, Doom and Death Metal, and influenced by bands like BURZUM, DARKTHRONE, BATHORY, THOU ART LORD, IN THE WOODS…, early KATATONIA and PRIMORDIAL, who Mick would eventually go on to join full-time.\n\nThey released one demo, ‘Malkuth’, which was recorded in Connolly’s Of Leap, 4th January 1996 by Paddy McNicholl. The line-up for this recording was Marc (Bard Nocturnus) on Vocals, Damien on keyboards and Mick playing guitars, bass and drums. ",
"time": 3873,
"yearformed": 0,
"placeformed": null
},
{
"id": "27",
"name": "Chi.Otic",
"prefix": null,
"basename": "Chi.Otic",
"albums": [],
"albumcount": 0,
"songs": [],
"songcount": 1,
"genre": [],
"art": "https://music.com.au/image.php?object_id=27&object_type=artist&id=136&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": "7",
"summary": null,
"time": 433,
"yearformed": 0,
"placeformed": null
},
{
"id": "34",
"name": "Comedown Kid",
"prefix": null,
"basename": "Comedown Kid",
"albums": [],
"albumcount": 0,
"songs": [],
"songcount": 1,
"genre": [],
"art": "https://music.com.au/image.php?object_id=34&object_type=artist&id=288&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": null,
"summary": null,
"time": 116,
"yearformed": 0,
"placeformed": null
},
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit",
"albums": [],
"albumcount": 1,
"songs": [],
"songcount": 20,
"genre": [
{
"id": "8",
"name": "Hip-Hop"
}
],
"art": "https://music.com.au/image.php?object_id=36&object_type=artist&id=320&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": "e6e2b787-0b4c-4267-8161-310399b101a5",
"summary": "Comfort Fit’s(Boris Mezga) versatile influences range from early detroit techno and minimal electronica to jazz, broken beats and hip-hop. This makes it easy for him to invisibly switch between musical styles within a fingersnap, taking the listener onto long and exciting journies.\n\nWisely using music codes of genres such as hip-hop, dubstep and techno as a mere comic template, Comfort Fit has inspired hip-hop and techno artists around the world with his heavy beat techniques. ",
"time": 4248,
"yearformed": 0,
"placeformed": null
}
]
}
}
}
}
},
"description": "Artist list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List artists",
"tags": [
"Artists"
],
"operationId": "artists",
"description": "This takes a collection of inputs and returns artist objects."
}
},
"/artists/search": {
"get": {
"description": "Provide operator plus one or more rule triplets. At minimum, rule_1, rule_1_operator, rule_1_input are required. Additional rules may be supplied as rule_2, rule_2_operator, rule_2_input, etc.",
"operationId": "searchArtists",
"parameters": [
{
"$ref": "#/components/parameters/Operator"
},
{
"description": "Specify the subtype of artist to search for",
"in": "query",
"name": "subtype",
"required": false,
"schema": {
"enum": [
"album_artists",
"song_artists"
],
"type": "string"
}
},
{
"description": "0, 1 (random order of results; default to 0)",
"in": "query",
"name": "random",
"required": false,
"schema": {
"default": false,
"type": "boolean"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Rule1"
},
{
"$ref": "#/components/parameters/Rule1Operator"
},
{
"$ref": "#/components/parameters/Rule1Input"
},
{
"$ref": "#/components/parameters/Rule2"
},
{
"$ref": "#/components/parameters/Rule2Operator"
},
{
"$ref": "#/components/parameters/Rule2Input"
},
{
"$ref": "#/components/parameters/Rule3"
},
{
"$ref": "#/components/parameters/Rule3Operator"
},
{
"$ref": "#/components/parameters/Rule3Input"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ArtistsResponse"
},
"examples": {
"artists": {
"summary": "artists (search results)",
"value": {
"total_count": 18,
"md5": "2d3fc4f09bcaf62b4f5db0821edd5b1f",
"artist": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN",
"albums": [],
"albumcount": 1,
"songs": [],
"songcount": 9,
"genre": [],
"art": "https://music.com.au/image.php?object_id=16&object_type=artist&id=134&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": null,
"summary": "Formerly called DEFY CHRIST. CARNÚN were formed in 1995. Incorporating a mix of Black, Doom and Death Metal, and influenced by bands like BURZUM, DARKTHRONE, BATHORY, THOU ART LORD, IN THE WOODS…, early KATATONIA and PRIMORDIAL, who Mick would eventually go on to join full-time.\n\nThey released one demo, ‘Malkuth’, which was recorded in Connolly’s Of Leap, 4th January 1996 by Paddy McNicholl. The line-up for this recording was Marc (Bard Nocturnus) on Vocals, Damien on keyboards and Mick playing guitars, bass and drums. ",
"time": 3873,
"yearformed": 0,
"placeformed": null
},
{
"id": "27",
"name": "Chi.Otic",
"prefix": null,
"basename": "Chi.Otic",
"albums": [],
"albumcount": 0,
"songs": [],
"songcount": 1,
"genre": [],
"art": "https://music.com.au/image.php?object_id=27&object_type=artist&id=136&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": "7",
"summary": null,
"time": 433,
"yearformed": 0,
"placeformed": null
},
{
"id": "34",
"name": "Comedown Kid",
"prefix": null,
"basename": "Comedown Kid",
"albums": [],
"albumcount": 0,
"songs": [],
"songcount": 1,
"genre": [],
"art": "https://music.com.au/image.php?object_id=34&object_type=artist&id=288&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": null,
"summary": null,
"time": 116,
"yearformed": 0,
"placeformed": null
},
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit",
"albums": [],
"albumcount": 1,
"songs": [],
"songcount": 20,
"genre": [
{
"id": "8",
"name": "Hip-Hop"
}
],
"art": "https://music.com.au/image.php?object_id=36&object_type=artist&id=320&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": "e6e2b787-0b4c-4267-8161-310399b101a5",
"summary": "Comfort Fit’s(Boris Mezga) versatile influences range from early detroit techno and minimal electronica to jazz, broken beats and hip-hop. This makes it easy for him to invisibly switch between musical styles within a fingersnap, taking the listener onto long and exciting journies.\n\nWisely using music codes of genres such as hip-hop, dubstep and techno as a mere comic template, Comfort Fit has inspired hip-hop and techno artists around the world with his heavy beat techniques. ",
"time": 4248,
"yearformed": 0,
"placeformed": null
}
]
}
}
}
}
},
"description": "Search results"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Search for media entities using rule triplets",
"tags": [
"Artists",
"Search"
]
}
},
"/artists/stats": {
"get": {
"parameters": [
{
"description": "newest, highest, frequent, recent, forgotten, flagged, random",
"in": "query",
"name": "filter",
"required": true,
"schema": {
"default": "random",
"enum": [
"newest",
"highest",
"frequent",
"recent",
"forgotten",
"flagged",
"random"
],
"type": "string"
}
},
{
"in": "query",
"name": "user_id",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "username",
"required": false,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ArtistsResponse"
},
"examples": {
"stats_artist": {
"summary": "stats (artist)",
"value": {
"total_count": 2,
"md5": "ee5163982df0eb85bbc4aa2ff891ddb1",
"artist": [
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit",
"albums": [],
"albumcount": 1,
"songs": [],
"songcount": 20,
"genre": [
{
"id": "8",
"name": "Hip-Hop"
}
],
"art": "https://music.com.au/image.php?object_id=36&object_type=artist&id=320&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": "e6e2b787-0b4c-4267-8161-310399b101a5",
"summary": "Comfort Fit’s(Boris Mezga) versatile influences range from early detroit techno and minimal electronica to jazz, broken beats and hip-hop. This makes it easy for him to invisibly switch between musical styles within a fingersnap, taking the listener onto long and exciting journies.\n\nWisely using music codes of genres such as hip-hop, dubstep and techno as a mere comic template, Comfort Fit has inspired hip-hop and techno artists around the world with his heavy beat techniques. ",
"time": 4248,
"yearformed": 0,
"placeformed": null
},
{
"id": "21",
"name": "Tip-C (featuring Mike Beers)",
"prefix": null,
"basename": "Tip-C (featuring Mike Beers)",
"albums": [],
"albumcount": 0,
"songs": [],
"songcount": 1,
"genre": [],
"art": "https://music.com.au/image.php?object_id=21&object_type=artist&id=144&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": "6",
"summary": null,
"time": 252,
"yearformed": 0,
"placeformed": null
}
]
}
}
}
}
},
"description": "Stats result"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get stats (song/album/artist etc) by type and filter",
"tags": [
"Browsing, Indexes and Lists"
],
"operationId": "statsArtists",
"description": "Get some items based on some simple search types and filters. (Random by default) This method **HAD** partial backwards compatibility with older api versions but it has now been removed Pass -1 limit to get all results. (0 will fall back to the `popular_threshold` value)"
}
},
"/artists/{artist_id}": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/ArtistId"
},
{
"description": "albums,songs",
"in": "query",
"name": "include",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ArtistObject"
},
"examples": {
"artist": {
"summary": "artist",
"value": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found.",
"albums": [],
"albumcount": 1,
"songs": [],
"songcount": 11,
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"art": "https://music.com.au/image.php?object_id=14&object_type=artist&name=art.jpg",
"has_art": false,
"flag": false,
"rating": 2,
"averagerating": null,
"mbid": null,
"summary": "Nofi/found. is the work of Jeffrey Melton released prior to 2005. From the website:\nNofi is neither hi-fi nor lo-fi, but a state of being-without-boundaries (i.e. ’stateless’). ",
"time": 4423,
"yearformed": 0,
"placeformed": null
}
}
}
}
},
"description": "Artist object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get artist by ID",
"tags": [
"Artists"
],
"operationId": "artist",
"description": "This returns a single artist based on the UID of said artist"
}
},
"/artists/{artist_id}/albums": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/ArtistId"
},
{
"in": "query",
"name": "album_artist",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AlbumsResponse"
},
"examples": {
"artist_albums": {
"summary": "artist albums",
"value": {
"total_count": 1,
"md5": "60fda3b54003017dc64a0c492471bbfe",
"album": [
{
"id": "8",
"name": "Nofi Devices",
"prefix": null,
"basename": "Nofi Devices",
"artist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"artists": [
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
}
],
"songartists": [
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
}
],
"time": 4423,
"year": 0,
"tracks": [],
"songcount": 11,
"diskcount": 1,
"type": null,
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"art": "https://music.com.au/image.php?object_id=8&object_type=album&id=450&name=art.jpg",
"has_art": true,
"flag": false,
"rating": 2,
"averagerating": null,
"mbid": null,
"mbid_group": null,
"catalog": "1"
}
]
}
}
}
}
},
"description": "Album list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get albums for an artist",
"tags": [
"Albums",
"Artists"
],
"operationId": "artistAlbums",
"description": "This returns the albums of an artist"
}
},
"/artists/{artist_id}/art": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/ArtistId"
},
{
"description": "widthxheight, e.g. 640x480",
"in": "query",
"name": "size",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "The image itself, written straight to the response body",
"headers": {
"Content-Type": {
"description": "The stored art mime type (e.g. `image/jpeg`, `image/png`)",
"schema": {
"type": "string"
}
},
"Content-Length": {
"description": "Size of the image in bytes",
"schema": {
"type": "integer"
}
},
"Access-Control-Allow-Origin": {
"description": "Always `*`, so art can be loaded cross-origin",
"schema": {
"type": "string"
}
}
},
"content": {
"image/*": {
"schema": {
"type": "string",
"format": "binary"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get art image (binary)",
"tags": [
"Artwork"
],
"operationId": "getArtArtists",
"description": "Get an art image."
}
},
"/artists/{artist_id}/browse": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/ArtistId"
},
{
"in": "query",
"name": "catalog",
"required": false,
"description": "Restrict the children to a single catalog. Omit it to browse every catalog you can see.",
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BrowseResponse"
}
}
},
"description": "Browse results"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Browse albums of an artist",
"tags": [
"Artists",
"Browsing, Indexes and Lists"
],
"description": "Return children of a parent object in a folder traversal/browse style. The catalog is an optional filter from API version 8; omit it to browse the children in every catalog you can see.",
"operationId": "browseArtists"
}
},
"/artists/{artist_id}/fetch-info": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/ArtistId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "update artist info",
"value": {
"success": "Updated artist info: 36"
}
}
}
}
},
"description": "Updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Update artist info and fetch similar artists",
"tags": [
"Utilities"
],
"operationId": "updateArtistInfoFetchInfo",
"description": "Update artist information and fetch similar artists from last.fm Make sure lastfm_API_key is set in your configuration file"
}
},
"/artists/{artist_id}/fetch-metadata": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/ArtistId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ExternalMetadataResponse"
},
"examples": {
"get_external_metadata": {
"summary": "get_external_metadata (no plugin answered)",
"value": {
"total_count": 0,
"md5": "40cd750bba9870f18aada2478b24840a",
"artist": []
}
}
}
}
},
"description": "External metadata array"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get external metadata for an artist",
"tags": [
"Artists",
"Utilities"
],
"operationId": "getExternalMetadataArtistsFetchMetadata",
"description": "Return External plugin metadata searching by object id and type"
}
},
"/artists/{artist_id}/flag": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/ArtistId"
},
{
"in": "query",
"name": "flag",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "flag",
"value": {
"success": "flag ADDED to 91"
}
}
}
}
},
"description": "Updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Flag or unflag an item as favourite",
"tags": [
"Ratings and Flags"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FlagRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/FlagRequest"
}
}
}
},
"operationId": "flagArtists",
"description": "This flags a library item as a favorite"
}
},
"/artists/{artist_id}/rate": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/ArtistId"
},
{
"in": "query",
"name": "rating",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "rate",
"value": {
"success": "rating set to 5 for 91"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Rate a library item",
"tags": [
"Ratings and Flags"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/RateRequest"
}
}
}
},
"operationId": "rateArtists",
"description": "This rates a library item"
}
},
"/artists/{artist_id}/share": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/ArtistId"
},
{
"in": "query",
"name": "description",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "days to keep active",
"in": "query",
"name": "expires",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareObject"
},
"examples": {
"share": {
"summary": "share",
"value": {
"id": "1",
"name": "Creeping Lawler 2",
"owner": "user",
"allow_stream": true,
"allow_download": false,
"creation_date": 1670202706,
"lastvisit_date": 1614129643,
"object_type": "album",
"object_id": "9",
"expire_days": 0,
"max_counter": 0,
"counter": 1,
"secret": "GJ7EzBPT",
"public_url": "https://music.com.au/share.php?id=1&secret=GJ7EzBPT",
"description": "Creeping Lawler 2 (Warfare 3.0)"
}
}
}
}
},
"description": "Share created"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a public share URL",
"tags": [
"Shares"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareCreateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/ShareCreateRequest"
}
}
}
},
"operationId": "shareCreateArtists",
"description": "Create a public url that can be used by anyone to stream media. Takes the file id with optional description and expires parameters."
}
},
"/artists/{artist_id}/similar": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/ArtistId"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ArtistsResponse"
},
"examples": {
"get_similar": {
"summary": "get similar",
"value": {
"total_count": 18,
"md5": "2d3fc4f09bcaf62b4f5db0821edd5b1f",
"artist": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN",
"albums": [],
"albumcount": 1,
"songs": [],
"songcount": 9,
"genre": [],
"art": "https://music.com.au/image.php?object_id=16&object_type=artist&id=134&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": null,
"summary": "Formerly called DEFY CHRIST. CARNÚN were formed in 1995. Incorporating a mix of Black, Doom and Death Metal, and influenced by bands like BURZUM, DARKTHRONE, BATHORY, THOU ART LORD, IN THE WOODS…, early KATATONIA and PRIMORDIAL, who Mick would eventually go on to join full-time.\n\nThey released one demo, ‘Malkuth’, which was recorded in Connolly’s Of Leap, 4th January 1996 by Paddy McNicholl. The line-up for this recording was Marc (Bard Nocturnus) on Vocals, Damien on keyboards and Mick playing guitars, bass and drums. ",
"time": 3873,
"yearformed": 0,
"placeformed": null
},
{
"id": "27",
"name": "Chi.Otic",
"prefix": null,
"basename": "Chi.Otic",
"albums": [],
"albumcount": 0,
"songs": [],
"songcount": 1,
"genre": [],
"art": "https://music.com.au/image.php?object_id=27&object_type=artist&id=136&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": "7",
"summary": null,
"time": 433,
"yearformed": 0,
"placeformed": null
},
{
"id": "34",
"name": "Comedown Kid",
"prefix": null,
"basename": "Comedown Kid",
"albums": [],
"albumcount": 0,
"songs": [],
"songcount": 1,
"genre": [],
"art": "https://music.com.au/image.php?object_id=34&object_type=artist&id=288&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": null,
"summary": null,
"time": 116,
"yearformed": 0,
"placeformed": null
},
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit",
"albums": [],
"albumcount": 1,
"songs": [],
"songcount": 20,
"genre": [
{
"id": "8",
"name": "Hip-Hop"
}
],
"art": "https://music.com.au/image.php?object_id=36&object_type=artist&id=320&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": "e6e2b787-0b4c-4267-8161-310399b101a5",
"summary": "Comfort Fit’s(Boris Mezga) versatile influences range from early detroit techno and minimal electronica to jazz, broken beats and hip-hop. This makes it easy for him to invisibly switch between musical styles within a fingersnap, taking the listener onto long and exciting journies.\n\nWisely using music codes of genres such as hip-hop, dubstep and techno as a mere comic template, Comfort Fit has inspired hip-hop and techno artists around the world with his heavy beat techniques. ",
"time": 4248,
"yearformed": 0,
"placeformed": null
}
]
}
}
}
}
},
"description": "Similar list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get similar artists",
"tags": [
"Artists"
],
"operationId": "getSimilarArtists",
"description": "Return similar artist id's or similar song ids compared to the input filter"
}
},
"/artists/{artist_id}/songs": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/ArtistId"
},
{
"in": "query",
"name": "top50",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SongsResponse"
},
"examples": {
"artist_songs": {
"summary": "artist songs",
"value": {
"total_count": 1,
"md5": "779824090289b105333c6256857f48cf",
"song": [
{
"id": "109",
"title": "Dance with the Devil",
"name": "Dance with the Devil",
"artist": {
"id": "34",
"name": "Comedown Kid",
"prefix": null,
"basename": "Comedown Kid"
},
"artists": [
{
"id": "34",
"name": "Comedown Kid",
"prefix": null,
"basename": "Comedown Kid"
}
],
"album": {
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea"
},
"albumartist": {
"id": "19",
"name": "Various Artists",
"prefix": null,
"basename": "Various Artists"
},
"disk": 1,
"disksubtitle": null,
"track": 3,
"filename": "/mnt/files-music/ampache-test/music/Various Artists/Buried In Nausea/03ComedownKid-DanceWithTheDevil.wma",
"genre": [],
"playlisttrack": 1,
"time": 116,
"year": 2012,
"format": "wma",
"stream_format": "mp3",
"bitrate": 32582,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "cbr",
"mime": "audio/x-ms-wma",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=109&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Comedown%20Kid%20-%20Dance%20with%20the%20Devil.mp3",
"size": 483444,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 1,
"comment": null,
"license": null,
"publisher": null,
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": null,
"replaygain_track_peak": null,
"r128_album_gain": null,
"r128_track_gain": null
}
]
}
}
}
}
},
"description": "Song list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get songs for an artist",
"tags": [
"Artists",
"Songs"
],
"operationId": "artistSongs",
"description": "This returns the songs of the specified artist"
}
},
"/artists/{artist_id}/update-art": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/ArtistId"
},
{
"in": "query",
"name": "overwrite",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "update art",
"value": {
"success": "Gathered new art for: 2 (album)",
"art": "https://music.com.au/image.php?object_id=2&object_type=album&id=84&name=art.png"
}
}
}
}
},
"description": "Updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Update art for an object (Catalog Manager)",
"tags": [
"Utilities"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateArtRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/UpdateArtRequest"
}
}
}
},
"operationId": "updateArtArtists",
"description": "Updates a single album, artist, song running the gather_art process Existing art is replaced unless you send overwrite=0, which keeps whatever is already there."
}
},
"/artists/{artist_id}/update-tags": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/ArtistId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "update from tags",
"value": {
"success": "Updated tags for: 2 (album)"
}
}
}
}
},
"description": "Updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Update object metadata from tags",
"tags": [
"Utilities"
],
"operationId": "updateFromTagsArtists",
"description": "Update a single album, artist, song from the tag data"
}
},
"/bookmarks": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/Client"
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarksResponse"
},
"examples": {
"bookmarks": {
"summary": "bookmarks",
"value": {
"total_count": 6,
"md5": "8bfb77a606c708e933b6e030dc738d32",
"bookmark": [
{
"id": "3",
"owner": "user",
"object_type": "song",
"object_id": "115",
"position": 0,
"client": "client1",
"creation_date": 1670202706,
"update_date": 1698974919
},
{
"id": "4",
"owner": "user",
"object_type": "song",
"object_id": "64",
"position": 10,
"client": "client",
"creation_date": 1670202706,
"update_date": 1698974919
},
{
"id": "5",
"owner": "user",
"object_type": "song",
"object_id": "115",
"position": 0,
"client": "client1",
"creation_date": 1670202706,
"update_date": 1698974919
},
{
"id": "6",
"owner": "user",
"object_type": "song",
"object_id": "64",
"position": 10,
"client": "client",
"creation_date": 1670202706,
"update_date": 1698974919
},
{
"id": "7",
"owner": "user",
"object_type": "song",
"object_id": "115",
"position": 0,
"client": "client1",
"creation_date": 1670202706,
"update_date": 1698974919
},
{
"id": "8",
"owner": "user",
"object_type": "song",
"object_id": "64",
"position": 10,
"client": "client",
"creation_date": 1670202706,
"update_date": 1698974919
}
]
}
}
}
}
},
"description": "Bookmark list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List bookmarks",
"tags": [
"Bookmarks"
],
"operationId": "bookmarks",
"description": "Get information about bookmarked media this user is allowed to manage."
},
"put": {
"parameters": [
{
"in": "query",
"name": "filter",
"description": "Object id",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"song",
"video",
"podcast_episode"
],
"type": "string"
}
},
{
"in": "query",
"name": "position",
"description": "Current track time in seconds",
"required": false,
"schema": {
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Client"
},
{
"in": "query",
"name": "date",
"description": "UNIXTIME()",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkObject"
},
"examples": {
"bookmark": {
"summary": "bookmark created",
"value": {
"id": "4",
"owner": "user",
"object_type": "song",
"object_id": "64",
"position": 10,
"client": "client",
"creation_date": 1670202706,
"update_date": 1698974919
}
}
}
}
},
"description": "Bookmark created"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a bookmark",
"tags": [
"Bookmarks"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkCreateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/BookmarkCreateRequest"
}
}
}
},
"operationId": "bookmarkCreate",
"description": "Create a placeholder for the current media that you can return to later."
}
},
"/bookmarks/{bookmark_id}": {
"delete": {
"parameters": [
{
"$ref": "#/components/parameters/BookmarkId"
},
{
"$ref": "#/components/parameters/Client"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"bookmark": {
"summary": "bookmark",
"value": {
"id": "4",
"owner": "user",
"object_type": "song",
"object_id": "64",
"position": 10,
"client": "client",
"creation_date": 1670202706,
"update_date": 1698974919
}
},
"bookmark_with_include": {
"summary": "bookmark (with include)",
"value": {
"id": "81",
"owner": "user",
"object_type": "song",
"object_id": "97",
"position": 10,
"client": "python3-ampache",
"creation_date": 1670202706,
"update_date": 1784539940,
"song": [
{
"id": "97",
"title": "Creeping Lawler 2",
"name": "Creeping Lawler 2",
"artist": {
"id": "15",
"name": "Warfare 3.0",
"prefix": null,
"basename": "Warfare 3.0"
},
"artists": [
{
"id": "15",
"name": "Warfare 3.0",
"prefix": null,
"basename": "Warfare 3.0"
}
],
"album": {
"id": "9",
"name": "Creeping Lawler 2",
"prefix": null,
"basename": "Creeping Lawler 2"
},
"albumartist": {
"id": "15",
"name": "Warfare 3.0",
"prefix": null,
"basename": "Warfare 3.0"
},
"disk": 1,
"disksubtitle": null,
"track": 1,
"filename": "/mnt/files-music/ampache-test/music/Warfare 3.0/Creeping Lawler 2/01 - Creeping Lawler 2.mp3",
"genre": [],
"playlisttrack": 1,
"time": 296,
"year": 0,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 177349,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=97&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Warfare%203.0%20-%20Creeping%20Lawler%202.mp3",
"size": 6652448,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=9&object_type=album&id=455&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "https://archive.org/details/Creeping_Lawler_2",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -4.32,
"replaygain_track_peak": 0.977,
"r128_album_gain": null,
"r128_track_gain": null
}
]
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Delete a bookmark",
"tags": [
"Bookmarks"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkDeleteRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/BookmarkDeleteRequest"
}
}
}
},
"operationId": "bookmarkDelete",
"description": "Delete an existing bookmark. (if it exists)"
},
"get": {
"parameters": [
{
"$ref": "#/components/parameters/BookmarkId"
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkObject"
},
"examples": {
"bookmark": {
"summary": "bookmark",
"value": {
"id": "4",
"owner": "user",
"object_type": "song",
"object_id": "64",
"position": 10,
"client": "client",
"creation_date": 1670202706,
"update_date": 1698974919
}
},
"bookmark_with_include": {
"summary": "bookmark (with include)",
"value": {
"id": "3",
"owner": "user",
"object_type": "song",
"object_id": "115",
"position": 0,
"client": "client1",
"creation_date": 1698974919,
"update_date": 1698974919,
"song": [
{
"id": "115",
"title": "Are we going Crazy",
"name": "Are we going Crazy",
"artist": {
"id": "27",
"name": "Chi.Otic",
"prefix": null,
"basename": "Chi.Otic"
},
"artists": [
{
"id": "27",
"name": "Chi.Otic",
"prefix": null,
"basename": "Chi.Otic"
}
],
"album": {
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea"
},
"albumartist": {
"id": "19",
"name": "Various Artists",
"prefix": null,
"basename": "Various Artists"
},
"disk": 1,
"disksubtitle": null,
"track": 7,
"filename": "/media/music/Various Artists/Buried In Nausea/07Chi.otic-AreWeGoingCrazy.wma",
"genre": [],
"playlisttrack": 1,
"time": 433,
"year": 2012,
"format": "wma",
"stream_format": "mp3",
"bitrate": 32582,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "cbr",
"mime": "audio/x-ms-wma",
"stream_mime": "audio/mpeg",
"url": "http://localhost:8989/play/index.php?ssid=2c3c6bebcfe14ae8ddbe6322ed7cf60f&type=song&oid=115&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Chi.Otic%20-%20Are%20we%20going%20Crazy.mp3",
"size": 1776580,
"mbid": null,
"art": "http://localhost:8989/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 1,
"comment": null,
"license": null,
"publisher": null,
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": null,
"replaygain_track_peak": null,
"r128_album_gain": null,
"r128_track_gain": null
}
]
}
}
}
}
},
"description": "Bookmark object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get bookmark by ID",
"tags": [
"Bookmarks"
],
"operationId": "bookmark",
"description": "Get a single bookmark by bookmark_id"
},
"patch": {
"parameters": [
{
"$ref": "#/components/parameters/BookmarkId"
},
{
"in": "query",
"name": "position",
"required": false,
"schema": {
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Client"
},
{
"in": "query",
"name": "date",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkObject"
},
"examples": {
"bookmark": {
"summary": "bookmark",
"value": {
"id": "4",
"owner": "user",
"object_type": "song",
"object_id": "64",
"position": 10,
"client": "client",
"creation_date": 1670202706,
"update_date": 1698974919
}
},
"bookmark_with_include": {
"summary": "bookmark (with include)",
"value": {
"id": "81",
"owner": "user",
"object_type": "song",
"object_id": "97",
"position": 10,
"client": "python3-ampache",
"creation_date": 1670202706,
"update_date": 1784539940,
"song": [
{
"id": "97",
"title": "Creeping Lawler 2",
"name": "Creeping Lawler 2",
"artist": {
"id": "15",
"name": "Warfare 3.0",
"prefix": null,
"basename": "Warfare 3.0"
},
"artists": [
{
"id": "15",
"name": "Warfare 3.0",
"prefix": null,
"basename": "Warfare 3.0"
}
],
"album": {
"id": "9",
"name": "Creeping Lawler 2",
"prefix": null,
"basename": "Creeping Lawler 2"
},
"albumartist": {
"id": "15",
"name": "Warfare 3.0",
"prefix": null,
"basename": "Warfare 3.0"
},
"disk": 1,
"disksubtitle": null,
"track": 1,
"filename": "/mnt/files-music/ampache-test/music/Warfare 3.0/Creeping Lawler 2/01 - Creeping Lawler 2.mp3",
"genre": [],
"playlisttrack": 1,
"time": 296,
"year": 0,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 177349,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=97&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Warfare%203.0%20-%20Creeping%20Lawler%202.mp3",
"size": 6652448,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=9&object_type=album&id=455&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "https://archive.org/details/Creeping_Lawler_2",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -4.32,
"replaygain_track_peak": 0.977,
"r128_album_gain": null,
"r128_track_gain": null
}
]
}
}
}
}
},
"description": "Bookmark array"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Edit a bookmark",
"tags": [
"Bookmarks"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkEditRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/BookmarkEditRequest"
}
}
}
},
"operationId": "bookmarkEdit",
"description": "Edit a placeholder for the current media that you can return to later."
}
},
"/browse": {
"get": {
"parameters": [
{
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"root",
"catalog",
"album_artist",
"artist",
"album",
"album_disk",
"podcast"
],
"type": "string"
}
},
{
"in": "query",
"name": "catalog",
"required": false,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BrowseResponse"
},
"examples": {
"browse": {
"summary": "browse",
"value": {
"total_count": 8,
"md5": "8c61d460940e9a9fc333207277d105cd",
"catalog_id": "",
"parent_id": "1",
"parent_type": "catalog",
"child_type": "artist",
"browse": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
{
"id": "13",
"name": "IOK-1",
"prefix": null,
"basename": "IOK-1"
},
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
{
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
}
]
}
},
"browse_root": {
"summary": "browse (root)",
"value": {
"total_count": 3,
"md5": "247915852400d7e282039d32106a4c62",
"catalog_id": "",
"parent_id": "",
"parent_type": "root",
"child_type": "catalog",
"browse": [
{
"id": "1",
"name": "music",
"prefix": null,
"basename": "music"
},
{
"id": "3",
"name": "podcast",
"prefix": null,
"basename": "podcast"
},
{
"id": "4",
"name": "upload",
"prefix": null,
"basename": "upload"
}
]
}
},
"browse_catalog": {
"summary": "browse (catalog)",
"value": {
"total_count": 8,
"md5": "8c61d460940e9a9fc333207277d105cd",
"catalog_id": "1",
"parent_id": "1",
"parent_type": "catalog",
"child_type": "artist",
"browse": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
{
"id": "13",
"name": "IOK-1",
"prefix": null,
"basename": "IOK-1"
},
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
{
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
}
]
}
},
"browse_music_catalog": {
"summary": "browse (music catalog)",
"value": {
"total_count": 8,
"md5": "8c61d460940e9a9fc333207277d105cd",
"catalog_id": "",
"parent_id": "1",
"parent_type": "catalog",
"child_type": "artist",
"browse": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
{
"id": "13",
"name": "IOK-1",
"prefix": null,
"basename": "IOK-1"
},
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
{
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
}
]
}
},
"browse_podcast_catalog": {
"summary": "browse (podcast catalog)",
"value": {
"total_count": 2,
"md5": "f10a2bea1318dba3bc03f946eb4b55e9",
"catalog_id": "",
"parent_id": "3",
"parent_type": "catalog",
"child_type": "podcast",
"browse": [
{
"id": "1",
"name": "60-Second Science",
"prefix": null,
"basename": "60-Second Science"
},
{
"id": "2",
"name": "Plays Well with Others",
"prefix": null,
"basename": "Plays Well with Others"
}
]
}
},
"browse_album": {
"summary": "browse (album)",
"value": {
"total_count": 6,
"md5": "41fa5df237d288621aa52b0f8f3ec9b2",
"catalog_id": "1",
"parent_id": "18",
"parent_type": "album",
"child_type": "song",
"browse": [
{
"id": "73",
"name": "inominavel p05",
"prefix": null,
"basename": "inominavel p05"
},
{
"id": "74",
"name": "inominavel p03",
"prefix": null,
"basename": "inominavel p03"
},
{
"id": "75",
"name": "T - live",
"prefix": null,
"basename": "T - live"
},
{
"id": "76",
"name": "inominavel p04",
"prefix": null,
"basename": "inominavel p04"
}
]
}
},
"browse_artist": {
"summary": "browse (artist)",
"value": {
"total_count": 1,
"md5": "786f74db2d226647e413a61fc7c696dc",
"catalog_id": "1",
"parent_id": "11",
"parent_type": "artist",
"child_type": "album",
"browse": [
{
"id": "18",
"name": "Inominavel (live.v.01)",
"prefix": null,
"basename": "Inominavel (live.v.01)"
}
]
}
},
"browse_podcast": {
"summary": "browse (podcast)",
"value": {
"total_count": 10,
"md5": "dbc012ed417ff066a0885345bffd7059",
"catalog_id": "3",
"parent_id": "1",
"parent_type": "podcast",
"child_type": "podcast_episode",
"browse": [
{
"id": "82863",
"name": "World Cup health monitoring ramps up as Mars mission ends and AI rules shift",
"prefix": null,
"basename": "World Cup health monitoring ramps up as Mars mission ends and AI rules shift"
},
{
"id": "82858",
"name": "How common viruses could quietly raise your cancer risk",
"prefix": null,
"basename": "How common viruses could quietly raise your cancer risk"
},
{
"id": "82864",
"name": "What’s in a name? When it comes to PCOS, a lot",
"prefix": null,
"basename": "What’s in a name? When it comes to PCOS, a lot"
},
{
"id": "82865",
"name": "The math behind your daily annoyances",
"prefix": "The",
"basename": "math behind your daily annoyances"
}
]
}
},
"browse_video_catalog": {
"summary": "browse (video catalog)",
"value": {
"total_count": 3,
"md5": "102b23593aecce73b9d9822ded3a181e",
"catalog_id": "",
"parent_id": "2",
"parent_type": "catalog",
"child_type": "video",
"browse": [
{
"id": "5",
"name": "Lisa Simpson playing a Beer Jug as her new instrument-fTGVV_4DNYI",
"prefix": null,
"basename": "Lisa Simpson playing a Beer Jug as her new instrument-fTGVV_4DNYI"
},
{
"id": "2",
"name": "Magic Fly",
"prefix": null,
"basename": "Magic Fly"
},
{
"id": "1",
"name": "SPACE Magic Fly (1977) - https://archive.org/details/SPACE_Magic_Fly_1977",
"prefix": null,
"basename": "SPACE Magic Fly (1977) - https://archive.org/details/SPACE_Magic_Fly_1977"
}
]
}
}
}
}
},
"description": "Browse array"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Browse folder-style children",
"tags": [
"Browsing, Indexes and Lists"
],
"operationId": "browse",
"description": "Return children of a parent object in a folder traversal/browse style. If you don't send any parameters you'll get a catalog list (the 'root' path)"
}
},
"/catalogs": {
"get": {
"parameters": [
{
"description": "music,clip,tvshow,movie,personal_video,podcast",
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CatalogsResponse"
},
"examples": {
"catalogs": {
"summary": "catalogs",
"value": {
"total_count": 4,
"md5": "a05f4e6584696143639b9a0776190ff0",
"catalog": [
{
"id": "1",
"name": "music",
"type": "local",
"gather_types": "music",
"enabled": true,
"last_add": 1627949046,
"last_clean": 1627949154,
"last_update": 1626835896,
"path": "/mnt/files-music/ampache-test/music",
"rename_pattern": "%T - %t",
"sort_pattern": "%a/%A"
},
{
"id": "2",
"name": "video",
"type": "local",
"gather_types": "video",
"enabled": true,
"last_add": 1783643353,
"last_clean": 1627949144,
"last_update": 0,
"path": "/mnt/files-music/ampache-test/video",
"rename_pattern": "%a - %t (%y)",
"sort_pattern": ""
},
{
"id": "3",
"name": "podcast",
"type": "local",
"gather_types": "podcast",
"enabled": true,
"last_add": 1617260634,
"last_clean": 1617260599,
"last_update": 1684394037,
"path": "/mnt/files-music/ampache-test/podcast",
"rename_pattern": "%T - %t",
"sort_pattern": "%a/%A"
},
{
"id": "4",
"name": "upload",
"type": "local",
"gather_types": "music",
"enabled": true,
"last_add": 1617260634,
"last_clean": 1617260634,
"last_update": 0,
"path": "/mnt/files-music/ampache-test/upload",
"rename_pattern": "%T - %t",
"sort_pattern": "%a/%A"
}
]
}
}
}
}
},
"description": "Catalog list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List catalogs",
"tags": [
"Catalogs"
],
"operationId": "catalogs",
"description": "This searches the catalogs and returns... catalogs"
},
"put": {
"parameters": [
{
"in": "query",
"name": "name",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "path",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"local",
"beets",
"remote",
"subsonic",
"seafile",
"beetsremote"
],
"type": "string"
}
},
{
"in": "query",
"name": "media_type",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "file_pattern",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "folder_pattern",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "username",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "password",
"required": false,
"schema": {
"type": "string"
},
"deprecated": true,
"description": "Deprecated: for privacy, send this in a form or JSON request body instead of the query string (query values land in server/proxy logs and browser history). Query-string support is retained for backward compatibility."
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CatalogObject"
},
"examples": {
"catalogs": {
"summary": "catalogs",
"value": {
"id": "1",
"name": "music",
"type": "local",
"gather_types": "music",
"enabled": true,
"last_add": 1627949046,
"last_clean": 1627949154,
"last_update": 1626835896,
"path": "/mnt/files-music/ampache-test/music",
"rename_pattern": "%T - %t",
"sort_pattern": "%a/%A"
}
}
}
}
},
"description": "Catalog object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a catalog",
"tags": [
"Catalogs"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CatalogCreateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/CatalogCreateRequest"
}
}
}
},
"operationId": "catalogCreate",
"description": "Create a new catalog."
}
},
"/catalogs/{catalog_id}": {
"delete": {
"parameters": [
{
"$ref": "#/components/parameters/CatalogId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"catalog": {
"summary": "catalog",
"value": {
"id": "1",
"name": "music",
"type": "local",
"gather_types": "music",
"enabled": true,
"last_add": 1627949046,
"last_clean": 1627949154,
"last_update": 1626835896,
"path": "/mnt/files-music/ampache-test/music",
"rename_pattern": "%T - %t",
"sort_pattern": "%a/%A"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Delete a catalog",
"tags": [
"Catalogs"
],
"operationId": "catalogDelete",
"description": "Delete an existing catalog."
},
"get": {
"parameters": [
{
"$ref": "#/components/parameters/CatalogId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CatalogObject"
},
"examples": {
"catalog": {
"summary": "catalog",
"value": {
"id": "1",
"name": "music",
"type": "local",
"gather_types": "music",
"enabled": true,
"last_add": 1627949046,
"last_clean": 1627949154,
"last_update": 1626835896,
"path": "/mnt/files-music/ampache-test/music",
"rename_pattern": "%T - %t",
"sort_pattern": "%a/%A"
}
}
}
}
},
"description": "Catalog object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get catalog by ID",
"tags": [
"Catalogs"
],
"operationId": "catalog",
"description": "Return catalog by UID"
}
},
"/catalogs/{catalog_id}/action": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/CatalogId"
},
{
"description": "Catalog task to run",
"in": "query",
"name": "task",
"required": false,
"schema": {
"enum": [
"add_to_catalog",
"clean_catalog",
"verify_catalog",
"update_catalog",
"gather_art",
"garbage_collect"
],
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "catalog action",
"value": {
"success": "successfully started: add_to_catalog for music"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Kick off a catalog task (add/clean/verify/gather art) for the selected catalog",
"tags": [
"Catalogs"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CatalogActionRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/CatalogActionRequest"
}
}
}
},
"operationId": "catalogAction",
"description": "Kick off a catalog update or clean for the selected catalog"
}
},
"/catalogs/{catalog_id}/add": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/CatalogId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "catalog action",
"value": {
"success": "successfully started: add_to_catalog for music"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Run the add_to_catalog task on a catalog",
"tags": [
"Catalogs"
],
"description": "Convenience alias of `catalog_action` with `task=add_to_catalog`. The task is taken from the path, so no `task` parameter is sent.",
"operationId": "catalogActionAdd"
}
},
"/catalogs/{catalog_id}/browse": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/CatalogId"
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BrowseResponse"
},
"examples": {
"browse": {
"summary": "browse",
"value": {
"total_count": 8,
"md5": "8c61d460940e9a9fc333207277d105cd",
"catalog_id": "",
"parent_id": "1",
"parent_type": "catalog",
"child_type": "artist",
"browse": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
{
"id": "13",
"name": "IOK-1",
"prefix": null,
"basename": "IOK-1"
},
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
{
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
}
]
}
}
}
}
},
"description": "Browse results"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Browse children of a catalog (root of the catalog)",
"tags": [
"Catalogs"
],
"operationId": "browseCatalogs",
"description": "Return children of a parent object in a folder traversal/browse style. If you don't send any parameters you'll get a catalog list (the 'root' path)"
}
},
"/catalogs/{catalog_id}/browse/albums/{album_id}": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/CatalogId"
},
{
"$ref": "#/components/parameters/AlbumId"
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BrowseResponse"
},
"examples": {
"browse_album": {
"summary": "browse (album)",
"value": {
"total_count": 6,
"md5": "41fa5df237d288621aa52b0f8f3ec9b2",
"catalog_id": "1",
"parent_id": "18",
"parent_type": "album",
"child_type": "song",
"browse": [
{
"id": "73",
"name": "inominavel p05",
"prefix": null,
"basename": "inominavel p05"
},
{
"id": "74",
"name": "inominavel p03",
"prefix": null,
"basename": "inominavel p03"
},
{
"id": "75",
"name": "T - live",
"prefix": null,
"basename": "T - live"
},
{
"id": "76",
"name": "inominavel p04",
"prefix": null,
"basename": "inominavel p04"
}
]
}
}
}
}
},
"description": "Browse results"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Browse songs of an album within a catalog",
"tags": [
"Catalogs"
],
"operationId": "browseCatalogsAlbums",
"description": "Return children of a parent object in a folder traversal/browse style. If you don't send any parameters you'll get a catalog list (the 'root' path)"
}
},
"/catalogs/{catalog_id}/browse/artists/{artist_id}": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/CatalogId"
},
{
"$ref": "#/components/parameters/ArtistId"
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BrowseResponse"
},
"examples": {
"browse_artist": {
"summary": "browse (artist)",
"value": {
"total_count": 1,
"md5": "786f74db2d226647e413a61fc7c696dc",
"catalog_id": "1",
"parent_id": "11",
"parent_type": "artist",
"child_type": "album",
"browse": [
{
"id": "18",
"name": "Inominavel (live.v.01)",
"prefix": null,
"basename": "Inominavel (live.v.01)"
}
]
}
}
}
}
},
"description": "Browse results"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Browse albums of an artist within a catalog",
"tags": [
"Catalogs"
],
"operationId": "browseCatalogsArtists",
"description": "Return children of a parent object in a folder traversal/browse style. If you don't send any parameters you'll get a catalog list (the 'root' path)"
}
},
"/catalogs/{catalog_id}/browse/podcasts/{podcast_id}": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/CatalogId"
},
{
"$ref": "#/components/parameters/PodcastId"
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BrowseResponse"
},
"examples": {
"browse_podcast": {
"summary": "browse (podcast)",
"value": {
"total_count": 10,
"md5": "dbc012ed417ff066a0885345bffd7059",
"catalog_id": "3",
"parent_id": "1",
"parent_type": "podcast",
"child_type": "podcast_episode",
"browse": [
{
"id": "82863",
"name": "World Cup health monitoring ramps up as Mars mission ends and AI rules shift",
"prefix": null,
"basename": "World Cup health monitoring ramps up as Mars mission ends and AI rules shift"
},
{
"id": "82858",
"name": "How common viruses could quietly raise your cancer risk",
"prefix": null,
"basename": "How common viruses could quietly raise your cancer risk"
},
{
"id": "82864",
"name": "What’s in a name? When it comes to PCOS, a lot",
"prefix": null,
"basename": "What’s in a name? When it comes to PCOS, a lot"
},
{
"id": "82865",
"name": "The math behind your daily annoyances",
"prefix": "The",
"basename": "math behind your daily annoyances"
}
]
}
}
}
}
},
"description": "Browse results"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Browse episodes of a podcast within a catalog",
"tags": [
"Catalogs"
],
"operationId": "browseCatalogsPodcasts",
"description": "Return children of a parent object in a folder traversal/browse style. If you don't send any parameters you'll get a catalog list (the 'root' path)"
}
},
"/catalogs/{catalog_id}/clean": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/CatalogId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "catalog action",
"value": {
"success": "successfully started: clean_catalog for music"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Run the clean_catalog task on a catalog",
"tags": [
"Catalogs"
],
"description": "Convenience alias of `catalog_action` with `task=clean_catalog`. The task is taken from the path, so no `task` parameter is sent.",
"operationId": "catalogActionClean"
}
},
"/catalogs/{catalog_id}/file": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/CatalogId"
},
{
"in": "query",
"name": "file",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "add,clean,verify,remove (comma-separated allowed)",
"in": "query",
"name": "task",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "catalog file",
"value": {
"success": "successfully started: clean for /mnt/files-music/ampache-test/music/Nofi_found/Nofi Devices LP/09_Home_Capsules.mp3"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Perform actions on a catalog file",
"tags": [
"Catalogs"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CatalogFileRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/CatalogFileRequest"
}
}
}
},
"operationId": "catalogFile",
"description": "Perform actions on local catalog files. Single file versions of catalog add, clean, verify and remove (delete) Make sure you remember to urlencode those file names!"
}
},
"/catalogs/{catalog_id}/folder": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/CatalogId"
},
{
"in": "query",
"name": "folder",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "add,clean,verify,remove (comma-separated allowed)",
"in": "query",
"name": "task",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "catalog folder",
"value": {
"success": "successfully started: clean for /mnt/files-music/ampache-test/music/Nofi_found/Nofi Devices LP"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Perform actions on a catalog folder",
"tags": [
"Catalogs"
],
"description": "Resolves to the same `catalog_folder` action as POST; the REST layer only suffixes DELETE, PATCH and PUT.",
"operationId": "catalogFolderCatalogsFolderGet"
},
"post": {
"parameters": [
{
"$ref": "#/components/parameters/CatalogId"
},
{
"in": "query",
"name": "folder",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "add,clean,verify,remove (comma-separated allowed)",
"in": "query",
"name": "task",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "catalog folder",
"value": {
"success": "successfully started: clean for /mnt/files-music/ampache-test/music/Nofi_found/Nofi Devices LP"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Perform actions on a catalog folder",
"tags": [
"Catalogs"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CatalogFolderRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/CatalogFolderRequest"
}
}
}
},
"operationId": "catalogFolderCatalogsFolderPost",
"description": "Perform actions on local catalog folders. Single folder versions of catalog add, clean, verify and remove (delete) Make sure you remember to urlencode those folder names!"
}
},
"/catalogs/{catalog_id}/update": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/CatalogId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "catalog action",
"value": {
"success": "successfully started: update_catalog for music"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Run the update_catalog task on a catalog",
"tags": [
"Catalogs"
],
"description": "Convenience alias of `catalog_action` with `task=update_catalog`. The task is taken from the path, so no `task` parameter is sent.",
"operationId": "catalogActionUpdate"
}
},
"/catalogs/{catalog_id}/verify": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/CatalogId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "catalog action",
"value": {
"success": "successfully started: verify_catalog for music"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Run the verify_catalog task on a catalog",
"tags": [
"Catalogs"
],
"description": "Convenience alias of `catalog_action` with `task=verify_catalog`. The task is taken from the path, so no `task` parameter is sent.",
"operationId": "catalogActionVerify"
}
},
"/collections": {
"get": {
"parameters": [
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CollectionsResponse"
}
}
},
"description": "Collections list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List collections",
"tags": [
"Collections"
],
"description": "A collection is a hand-curated list of objects of any type: the static counterpart to a search, and the non-media counterpart to a playlist. This returns every collection you own plus every public one, optionally narrowed to the collections pinned to a single object_type.",
"operationId": "collections"
},
"put": {
"parameters": [
{
"in": "query",
"name": "name",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"public",
"private"
],
"type": "string"
}
},
{
"in": "query",
"name": "object_type",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CollectionsResponse"
}
}
},
"description": "The collection that was created"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a collection",
"tags": [
"Collections"
],
"description": "Creates an empty collection. Leave object_type out for a mixed collection, or set it to pin the collection to a single type so anything else is refused when it is added.",
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CollectionCreateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/CollectionCreateRequest"
}
}
}
},
"operationId": "collectionCreate"
}
},
"/collections/{collection_id}": {
"delete": {
"parameters": [
{
"in": "path",
"name": "collection_id",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
}
}
},
"description": "Deletion confirmation"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Delete a collection",
"tags": [
"Collections"
],
"description": "Deletes the collection and its membership rows. The objects it referenced are untouched. Owner or admin only: a collaborator may curate the contents but not destroy the list.",
"operationId": "collectionDelete"
},
"get": {
"parameters": [
{
"in": "path",
"name": "collection_id",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CollectionsResponse"
}
}
},
"description": "A single collection"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get a collection",
"tags": [
"Collections"
],
"description": "One collection's own details, without its contents.",
"operationId": "collection"
},
"patch": {
"parameters": [
{
"in": "path",
"name": "collection_id",
"required": true,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "name",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"public",
"private"
],
"type": "string"
}
},
{
"in": "query",
"name": "object_type",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "collaborate",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CollectionsResponse"
}
}
},
"description": "The collection that was edited"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Edit a collection",
"tags": [
"Collections"
],
"description": "Only the fields you send are changed. Send an empty object_type to un-pin a collection back to mixed; pinning is refused while the collection still holds a different type.",
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CollectionEditRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/CollectionEditRequest"
}
}
}
},
"operationId": "collectionEdit"
}
},
"/collections/{collection_id}/items": {
"delete": {
"parameters": [
{
"in": "path",
"name": "collection_id",
"required": true,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "id",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "object_type",
"required": false,
"schema": {
"type": "string"
},
"description": "Type of the object"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
}
}
},
"description": "Removal confirmation"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Remove an object from a collection",
"tags": [
"Collections"
],
"description": "Removes one member. The object itself is untouched, and removing something that was never a member is not an error.",
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CollectionRemoveRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/CollectionRemoveRequest"
}
}
}
},
"operationId": "collectionRemoveItems"
},
"get": {
"parameters": [
{
"in": "path",
"name": "collection_id",
"required": true,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CollectionItemsResponse"
}
}
},
"description": "The collection and its contents"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get the contents of a collection",
"tags": [
"Collections"
],
"description": "The collection's members, grouped by object_type under `contents`. A collection is heterogeneous by design, so a flat list would leave the client guessing what each id is. The scalar `items` stays the member count.",
"operationId": "collectionItems"
},
"put": {
"parameters": [
{
"in": "path",
"name": "collection_id",
"required": true,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "id",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "object_type",
"required": false,
"schema": {
"type": "string"
},
"description": "Type of the object"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
}
}
},
"description": "Confirmation the object was added"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Add an object to a collection",
"tags": [
"Collections"
],
"description": "Adding the same object twice is a no-op rather than a duplicate. A pinned collection refuses anything but its own type, and an object that does not exist is refused rather than stored as a dangling id.",
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CollectionAddRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/CollectionAddRequest"
}
}
}
},
"operationId": "collectionAddItems"
}
},
"/democratic/{object_id}": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/ObjectId"
},
{
"in": "query",
"name": "method",
"required": false,
"schema": {
"enum": [
"vote",
"devote",
"playlist",
"play"
],
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DemocraticResponse"
},
"examples": {
"democratic": {
"summary": "democratic",
"value": {
"method": "vote",
"result": true
}
},
"democratic_play": {
"summary": "democratic (play)",
"value": {
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&uid=4&demo_id=1"
}
},
"democratic_playlist": {
"summary": "democratic (playlist)",
"value": {
"song": [
{
"id": "110",
"title": "I wanna walk through the fire",
"artist": {
"id": "23",
"name": "Manic Notion",
"prefix": null,
"basename": "Manic Notion"
},
"album": {
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea"
},
"genre": [],
"track": 1,
"time": 197,
"format": "m4a",
"bitrate": 267320,
"mime": "audio/mp4",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=110&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Manic%20Notion%20-%20I%20wanna%20walk%20through%20the%20fire.mp3",
"size": 6651911,
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"rating": 5,
"averagerating": null,
"playcount": 1,
"vote": 0
},
{
"id": "114",
"title": "He is the Master of War",
"artist": {
"id": "26",
"name": "Stress Builds Character",
"prefix": null,
"basename": "Stress Builds Character"
},
"album": {
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea"
},
"genre": [],
"track": 2,
"time": 233,
"format": "m4a",
"bitrate": 256245,
"mime": "audio/mp4",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=114&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Stress%20Builds%20Character%20-%20He%20is%20the%20Master%20of%20War.mp3",
"size": 7535126,
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"rating": null,
"averagerating": null,
"playcount": 0,
"vote": 0
},
{
"id": "109",
"title": "Dance with the Devil",
"artist": {
"id": "34",
"name": "Comedown Kid",
"prefix": null,
"basename": "Comedown Kid"
},
"album": {
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea"
},
"genre": [],
"track": 3,
"time": 116,
"format": "wma",
"bitrate": 32582,
"mime": "audio/x-ms-wma",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=109&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Comedown%20Kid%20-%20Dance%20with%20the%20Devil.mp3",
"size": 483444,
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"rating": null,
"averagerating": null,
"playcount": 0,
"vote": 0
},
{
"id": "113",
"title": "Representin",
"artist": {
"id": "32",
"name": "Shorty Mac",
"prefix": null,
"basename": "Shorty Mac"
},
"album": {
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea"
},
"genre": [],
"track": 4,
"time": 234,
"format": "mp3",
"bitrate": 123814,
"mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=113&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Shorty%20Mac%20-%20Representin.mp3",
"size": 3628327,
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"rating": null,
"averagerating": null,
"playcount": 0,
"vote": 0
},
{
"id": "111",
"title": "The art of free expression",
"artist": {
"id": "35",
"name": "Tip-C",
"prefix": null,
"basename": "Tip-C"
},
"album": {
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea"
},
"genre": [],
"track": 5,
"time": 110,
"format": "wma",
"bitrate": 32582,
"mime": "audio/x-ms-wma",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=111&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Tip-C%20-%20The%20art%20of%20free%20expression.mp3",
"size": 460498,
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"rating": 5,
"averagerating": null,
"playcount": 1,
"vote": 0
},
{
"id": "108",
"title": "I've been down this road before",
"artist": {
"id": "21",
"name": "Tip-C (featuring Mike Beers)",
"prefix": null,
"basename": "Tip-C (featuring Mike Beers)"
},
"album": {
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea"
},
"genre": [],
"track": 6,
"time": 252,
"format": "wma",
"bitrate": 32582,
"mime": "audio/x-ms-wma",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=108&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Tip-C%20-featuring%20Mike%20Beers-%20-%20I-ve%20been%20down%20this%20road%20before.mp3",
"size": 1035322,
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"rating": 5,
"averagerating": null,
"playcount": 0,
"vote": 0
},
{
"id": "115",
"title": "Are we going Crazy",
"artist": {
"id": "27",
"name": "Chi.Otic",
"prefix": null,
"basename": "Chi.Otic"
},
"album": {
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea"
},
"genre": [],
"track": 7,
"time": 433,
"format": "wma",
"bitrate": 32582,
"mime": "audio/x-ms-wma",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=115&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Chi.Otic%20-%20Are%20we%20going%20Crazy.mp3",
"size": 1776580,
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"rating": null,
"averagerating": null,
"playcount": 0,
"vote": 0
},
{
"id": "112",
"title": "Personal Truth",
"artist": {
"id": "33",
"name": "MxBxCx",
"prefix": null,
"basename": "MxBxCx"
},
"album": {
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea"
},
"genre": [],
"track": 8,
"time": 208,
"format": "mp3",
"bitrate": 179860,
"mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=112&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=MxBxCx%20-%20Personal%20Truth.mp3",
"size": 4693165,
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"rating": null,
"averagerating": null,
"playcount": 0,
"vote": 0
},
{
"id": "107",
"title": "Arrest Me",
"artist": {
"id": "20",
"name": "R/B",
"prefix": null,
"basename": "R/B"
},
"album": {
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea"
},
"genre": [
{
"id": "7",
"name": "Punk"
}
],
"track": 9,
"time": 96,
"format": "m4a",
"bitrate": 252864,
"mime": "audio/mp4",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=107&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=R-B%20-%20Arrest%20Me.mp3",
"size": 3091727,
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"rating": null,
"averagerating": null,
"playcount": 0,
"vote": 0
},
{
"id": "88",
"title": "Netro",
"artist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"album": {
"id": "8",
"name": "Nofi Devices",
"prefix": null,
"basename": "Nofi Devices"
},
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"track": 10,
"time": 601,
"format": "mp3",
"bitrate": 192000,
"mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=88&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Nofi-found.%20-%20Netro.mp3",
"size": 14445467,
"art": "https://music.com.au/image.php?object_id=8&object_type=album&id=450&name=art.jpg",
"has_art": true,
"rating": 5,
"averagerating": null,
"playcount": 1,
"vote": 0
},
{
"id": "96",
"title": "Creeping Lawler 2",
"artist": {
"id": "15",
"name": "Warfare 3.0",
"prefix": null,
"basename": "Warfare 3.0"
},
"album": {
"id": "9",
"name": "Creeping Lawler 2",
"prefix": null,
"basename": "Creeping Lawler 2"
},
"genre": [],
"track": 1,
"time": 296,
"format": "wav",
"bitrate": 1411200,
"mime": "audio/wav",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=96&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Warfare%203.0%20-%20Creeping%20Lawler%202.mp3",
"size": 52345628,
"art": "https://music.com.au/image.php?object_id=9&object_type=album&id=455&name=art.jpg",
"has_art": true,
"rating": 5,
"averagerating": null,
"playcount": 5,
"vote": 0
},
{
"id": "90",
"title": "Invo",
"artist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"album": {
"id": "8",
"name": "Nofi Devices",
"prefix": null,
"basename": "Nofi Devices"
},
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"track": 1,
"time": 47,
"format": "mp3",
"bitrate": 192000,
"mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=90&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Nofi-found.%20-%20Invo.mp3",
"size": 1140815,
"art": "https://music.com.au/image.php?object_id=8&object_type=album&id=450&name=art.jpg",
"has_art": true,
"rating": 5,
"averagerating": null,
"playcount": 1,
"vote": 0
},
{
"id": "82",
"title": "Vanvett",
"artist": {
"id": "13",
"name": "IOK-1",
"prefix": null,
"basename": "IOK-1"
},
"album": {
"id": "7",
"name": "Sensorisk Deprivation",
"prefix": null,
"basename": "Sensorisk Deprivation"
},
"genre": [
{
"id": "4",
"name": "Dark Ambient"
}
],
"track": 2,
"time": 825,
"format": "flac",
"bitrate": 371855,
"mime": "audio/flac",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=82&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=IOK-1%20-%20Vanvett.mp3",
"size": 38389422,
"art": "https://music.com.au/image.php?object_id=7&object_type=album&id=431&name=art.jpg",
"has_art": true,
"rating": 5,
"averagerating": null,
"playcount": 1,
"vote": 0
},
{
"id": "81",
"title": "Galenskap",
"artist": {
"id": "13",
"name": "IOK-1",
"prefix": null,
"basename": "IOK-1"
},
"album": {
"id": "7",
"name": "Sensorisk Deprivation",
"prefix": null,
"basename": "Sensorisk Deprivation"
},
"genre": [
{
"id": "4",
"name": "Dark Ambient"
}
],
"track": 3,
"time": 998,
"format": "flac",
"bitrate": 389683,
"mime": "audio/flac",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=81&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=IOK-1%20-%20Galenskap.mp3",
"size": 48633049,
"art": "https://music.com.au/image.php?object_id=7&object_type=album&id=431&name=art.jpg",
"has_art": true,
"rating": 5,
"averagerating": null,
"playcount": 1,
"vote": 0
},
{
"id": "78",
"title": "inominavel p01",
"artist": {
"id": "11",
"name": "structura",
"prefix": null,
"basename": "structura"
},
"album": {
"id": "18",
"name": "Inominavel (live.v.01)",
"prefix": null,
"basename": "Inominavel (live.v.01)"
},
"genre": [
{
"id": "3",
"name": "Noise"
}
],
"track": 1,
"time": 84,
"format": "mp3",
"bitrate": 192000,
"mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=78&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=structura%20-%20inominavel%20p01.mp3",
"size": 2036632,
"art": "https://music.com.au/image.php?object_id=18&object_type=album&id=278&name=art.jpg",
"has_art": true,
"rating": 5,
"averagerating": null,
"playcount": 2,
"vote": 0
},
{
"id": "80",
"title": "Хикки найди свою Тян",
"artist": {
"id": "12",
"name": "К-А-Л-Л-О-В-Ы-Й- С-Т-Е-Р-Ж-Е-Н-Ь",
"prefix": null,
"basename": "К-А-Л-Л-О-В-Ы-Й- С-Т-Е-Р-Ж-Е-Н-Ь"
},
"album": {
"id": "6",
"name": "Хикки Найди Свою Тян (Single)",
"prefix": null,
"basename": "Хикки Найди Свою Тян (Single)"
},
"genre": [],
"track": 1,
"time": 300,
"format": "wav",
"bitrate": 1411200,
"mime": "audio/wav",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=80&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=-%20-%20-%20-%20-%20-%20-.mp3",
"size": 53026998,
"art": "https://music.com.au/image.php?object_id=6&object_type=album&id=445&name=art.jpg",
"has_art": true,
"rating": 5,
"averagerating": 3,
"playcount": 2,
"vote": 0
}
]
}
},
"democratic_vote": {
"summary": "democratic (vote)",
"value": {
"method": "vote",
"result": true
}
}
}
}
},
"description": "Democratic response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Control democratic play",
"tags": [
"Playback Control"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DemocraticRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/DemocraticRequest"
}
}
}
},
"operationId": "democratic",
"description": "This is for controlling democratic play (Songs only)"
}
},
"/democratic/{object_id}/localplay": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/ObjectId"
},
{
"in": "query",
"name": "command",
"required": false,
"schema": {
"enum": [
"add"
],
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"song",
"video",
"podcast_episode",
"broadcast",
"live_stream",
"democratic"
],
"type": "string"
}
},
{
"in": "query",
"name": "clear",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayResponse"
},
"examples": {
"localplay": {
"summary": "localplay",
"value": {
"localplay": {
"command": {
"stop": true
}
}
}
},
"localplay_status": {
"summary": "localplay (status)",
"value": {
"localplay": {
"command": {
"status": {
"state": "stop",
"volume": "100",
"repeat": false,
"random": false,
"track": 2,
"track_title": "Unknown",
"track_artist": "Unknown",
"track_album": "Unknown"
}
}
}
}
}
}
}
},
"description": "Localplay response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Add media to the localplay server",
"tags": [
"Playback Control"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/LocalplayRequest"
}
}
}
},
"operationId": "localplayDemocratic",
"description": "This is for controlling localplay"
}
},
"/folders": {
"get": {
"parameters": [
{
"description": "Folder path filter, or folder object ID. Use '/' or -1 for the virtual root folder.",
"in": "query",
"name": "filter",
"required": false,
"schema": {
"default": "/",
"type": "string"
}
},
{
"description": "Set to 0 for fuzzy matching, 1 for exact matching.",
"in": "query",
"name": "exact",
"required": false,
"schema": {
"default": 1,
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FolderBrowseResponse"
},
"examples": {
"success": {
"value": {
"total_count": 3,
"md5": "abc123def456ghi789jkl012mno345pqr",
"folder": {
"id": "1",
"title": "Music",
"parent": "-1",
"path": "/music",
"catalog": "1",
"items": [
{
"id": "2",
"object_type": "folder",
"title": "Rock",
"parent": "1",
"path": "/music/rock",
"art": "https://develop.ampache.dev/rest/8/json/art?id=2&object_type=folder&auth=token123",
"has_art": false,
"play_url": "",
"rating": 0,
"averagerating": null
},
{
"id": "12345",
"object_type": "song",
"title": "Example Song.mp3",
"parent": "1",
"path": "/music",
"art": "https://develop.ampache.dev/rest/8/json/art?id=12345&object_type=song&auth=token123",
"has_art": true,
"play_url": "https://develop.ampache.dev/rest/8/json/stream?id=song-12345&auth=token123",
"rating": 3,
"averagerating": 4
},
{
"id": "54321",
"object_type": "video",
"title": "Example Video.mp4",
"parent": "1",
"path": "/music",
"art": "https://develop.ampache.dev/rest/8/json/art?id=54321&object_type=video&auth=token123",
"has_art": true,
"play_url": "https://develop.ampache.dev/rest/8/json/stream?id=video-54321&auth=token123",
"rating": 5,
"averagerating": 4
}
]
}
}
}
}
}
},
"description": "Children of a parent folder resolved by path traversal."
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get folder children by folder path or ID",
"tags": [
"Browsing, Indexes and Lists"
],
"operationId": "foldersFoldersGet",
"description": "Return children of a parent object in a folder traversal style **Ampache 8.0.0+**"
}
},
"/folders/{folder_id}": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/FolderId"
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FolderBrowseResponse"
},
"examples": {
"success": {
"value": {
"total_count": 3,
"md5": "abc123def456ghi789jkl012mno345pqr",
"folder": {
"id": "1",
"title": "Music",
"parent": "-1",
"path": "/music",
"catalog": "1",
"items": [
{
"id": "2",
"object_type": "folder",
"title": "Rock",
"parent": "1",
"path": "/music/rock",
"art": "https://develop.ampache.dev/rest/8/json/art?id=2&object_type=folder&auth=token123",
"has_art": false,
"play_url": "",
"rating": 0,
"averagerating": null
},
{
"id": "12345",
"object_type": "song",
"title": "Example Song.mp3",
"parent": "1",
"path": "/music",
"art": "https://develop.ampache.dev/rest/8/json/art?id=12345&object_type=song&auth=token123",
"has_art": true,
"play_url": "https://develop.ampache.dev/rest/8/json/stream?id=song-12345&auth=token123",
"rating": 3,
"averagerating": 4
},
{
"id": "54321",
"object_type": "video",
"title": "Example Video.mp4",
"parent": "1",
"path": "/music",
"art": "https://develop.ampache.dev/rest/8/json/art?id=54321&object_type=video&auth=token123",
"has_art": true,
"play_url": "https://develop.ampache.dev/rest/8/json/stream?id=video-54321&auth=token123",
"rating": 5,
"averagerating": 4
}
]
}
}
}
}
}
},
"description": "Children of a parent folder resolved by object ID."
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get folder children by folder ID",
"tags": [
"Browsing, Indexes and Lists"
],
"operationId": "foldersFoldersGet",
"description": "Return children of a parent folder object by ID **Ampache 8.0.0+**"
}
},
"/genres": {
"get": {
"parameters": [
{
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "exact",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GenresResponse"
},
"examples": {
"genres": {
"summary": "genres",
"value": {
"total_count": 2,
"md5": "b688a32fb7bee1397de8fa6f5e517ce2",
"genre": [
{
"id": "6",
"name": "Dance",
"albums": 1,
"artists": 1,
"songs": 11,
"videos": 0,
"playlists": 0,
"live_streams": 0,
"is_hidden": false,
"merge": []
},
{
"id": "4",
"name": "Dark Ambient",
"albums": 1,
"artists": 1,
"songs": 4,
"videos": 0,
"playlists": 0,
"live_streams": 0,
"is_hidden": false,
"merge": []
}
]
}
}
}
}
},
"description": "Genre list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List genres",
"tags": [
"Genres"
],
"operationId": "genres",
"description": "This returns the genres (Tags) based on the specified filter"
}
},
"/genres/search": {
"get": {
"description": "Provide operator plus one or more rule triplets. At minimum, rule_1, rule_1_operator, rule_1_input are required. Additional rules may be supplied as rule_2, rule_2_operator, rule_2_input, etc.",
"operationId": "searchGenres",
"parameters": [
{
"$ref": "#/components/parameters/Operator"
},
{
"description": "0, 1 (random order of results; default to 0)",
"in": "query",
"name": "random",
"required": false,
"schema": {
"default": false,
"type": "boolean"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Rule1"
},
{
"$ref": "#/components/parameters/Rule1Operator"
},
{
"$ref": "#/components/parameters/Rule1Input"
},
{
"$ref": "#/components/parameters/Rule2"
},
{
"$ref": "#/components/parameters/Rule2Operator"
},
{
"$ref": "#/components/parameters/Rule2Input"
},
{
"$ref": "#/components/parameters/Rule3"
},
{
"$ref": "#/components/parameters/Rule3Operator"
},
{
"$ref": "#/components/parameters/Rule3Input"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GenresResponse"
},
"examples": {
"genres": {
"summary": "genres (search results)",
"value": {
"total_count": 2,
"md5": "b688a32fb7bee1397de8fa6f5e517ce2",
"genre": [
{
"id": "6",
"name": "Dance",
"albums": 1,
"artists": 1,
"songs": 11,
"videos": 0,
"playlists": 0,
"live_streams": 0,
"is_hidden": false,
"merge": []
},
{
"id": "4",
"name": "Dark Ambient",
"albums": 1,
"artists": 1,
"songs": 4,
"videos": 0,
"playlists": 0,
"live_streams": 0,
"is_hidden": false,
"merge": []
}
]
}
}
}
}
},
"description": "Search results"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Search for media entities using rule triplets",
"tags": [
"Genres",
"Search"
]
}
},
"/genres/{genre_id}": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/GenreId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GenreObject"
},
"examples": {
"genre": {
"summary": "genre",
"value": {
"id": "6",
"name": "Dance",
"albums": 1,
"artists": 1,
"songs": 11,
"videos": 0,
"playlists": 0,
"live_streams": 0,
"is_hidden": false,
"merge": []
}
}
}
}
},
"description": "Genre object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get genre by ID",
"tags": [
"Genres"
],
"operationId": "genre",
"description": "This returns a single genre based on UID"
}
},
"/genres/{genre_id}/albums": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/GenreId"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AlbumsResponse"
},
"examples": {
"genre_albums": {
"summary": "genre albums",
"value": {
"total_count": 1,
"md5": "60fda3b54003017dc64a0c492471bbfe",
"album": [
{
"id": "8",
"name": "Nofi Devices",
"prefix": null,
"basename": "Nofi Devices",
"artist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"artists": [
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
}
],
"songartists": [
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
}
],
"time": 4423,
"year": 0,
"tracks": [],
"songcount": 11,
"diskcount": 1,
"type": null,
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"art": "https://music.com.au/image.php?object_id=8&object_type=album&id=450&name=art.jpg",
"has_art": true,
"flag": false,
"rating": 2,
"averagerating": null,
"mbid": null,
"mbid_group": null,
"catalog": "1"
}
]
}
}
}
}
},
"description": "Album list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get albums for a genre",
"tags": [
"Genres",
"Albums"
],
"operationId": "genreAlbums",
"description": "This returns the albums associated with the genre in question"
}
},
"/genres/{genre_id}/artists": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/GenreId"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ArtistsResponse"
},
"examples": {
"genre_artists": {
"summary": "genre artists",
"value": {
"total_count": 1,
"md5": "78525e41f5c2848ff7e1a2337fb96361",
"artist": [
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found.",
"albums": [],
"albumcount": 1,
"songs": [],
"songcount": 11,
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"art": "https://music.com.au/image.php?object_id=14&object_type=artist&name=art.jpg",
"has_art": false,
"flag": false,
"rating": 2,
"averagerating": null,
"mbid": null,
"summary": "Nofi/found. is the work of Jeffrey Melton released prior to 2005. From the website:\nNofi is neither hi-fi nor lo-fi, but a state of being-without-boundaries (i.e. ’stateless’). ",
"time": 4423,
"yearformed": 0,
"placeformed": null
}
]
}
}
}
}
},
"description": "Artist list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get artists for a genre",
"tags": [
"Genres",
"Artists"
],
"operationId": "genreArtists",
"description": "This returns the artists associated with the genre in question as defined by the UID"
}
},
"/genres/{genre_id}/songs": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/GenreId"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SongsResponse"
},
"examples": {
"genre_songs": {
"summary": "genre songs",
"value": {
"total_count": 11,
"md5": "676b67467939d8c86ea3b9a7dcab2396",
"song": [
{
"id": "85",
"title": "Beq Ultra Fat",
"name": "Beq Ultra Fat",
"artist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"artists": [
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
}
],
"album": {
"id": "8",
"name": "Nofi Devices",
"prefix": null,
"basename": "Nofi Devices"
},
"albumartist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"disk": 1,
"disksubtitle": null,
"track": 4,
"filename": "/mnt/files-music/ampache-test/music/Nofi_found/Nofi Devices LP/04_Beq_Ultra_Fat.mp3",
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"playlisttrack": 1,
"time": 413,
"year": 0,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 192000,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "cbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=85&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Nofi-found.%20-%20Beq%20Ultra%20Fat.mp3",
"size": 9935896,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=8&object_type=album&id=450&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": "Jeffrey Melton",
"channels": 2,
"comment": "8A114B0B+332232+11+150+3703+28283+76364+107382+132131+156082+177051+217892+239975+285087",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": 0.94,
"replaygain_track_peak": 0.989,
"r128_album_gain": null,
"r128_track_gain": null
}
]
}
}
}
}
},
"description": "Song list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get songs for a genre",
"tags": [
"Genres",
"Songs"
],
"operationId": "genreSongs",
"description": "returns the songs for this genre"
}
},
"/goodbye": {
"post": {
"description": "Destroys the session behind the credentials the request authenticates with.",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "goodbye",
"value": {
"success": "ca132eca2e20613fca4c6bcce16a273c"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"security": [
{
"BearerAuth": []
},
{
"ApiKeyAuthHeader": []
},
{
"ApiKeyAuthQuery": []
}
],
"summary": "Destroy a session",
"tags": [
"Authentication"
],
"operationId": "goodbye"
}
},
"/handshake": {
"post": {
"description": "When you do not have an API key you can request a session token using handshake which can then be used as your authentication token.",
"parameters": [
{
"description": "Passphrase (timestamp + password hash) or API key. This is a credential, not an existing session token, so it is not the same value as the `auth` security scheme. Omit it when authenticating with a Bearer token or the `auth` header. Prefer sending it in the request body rather than the query string.",
"in": "query",
"name": "auth",
"required": false,
"schema": {
"type": "string"
},
"deprecated": true
},
{
"description": "Username (required for login/password authentication).",
"in": "query",
"name": "user",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "UNIX time used in seed of password hash (required for login/password authentication).",
"in": "query",
"name": "timestamp",
"required": false,
"schema": {
"type": "integer"
}
},
{
"description": "API version the client understands. REST callers should omit it -- the version in the URL path wins; if both are sent and disagree, the path version is used and this parameter is ignored.",
"in": "query",
"name": "version",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HandshakeResponse"
},
"examples": {
"handshake": {
"summary": "handshake",
"value": {
"auth": "450aa4689ff8bd54fa16c1552a128b1b",
"streamtoken": null,
"api": "8.0.0",
"session_expire": "2022-08-17T06:21:00+00:00",
"update": "2023-05-18T07:13:57+00:00",
"add": "2026-07-10T00:29:13+00:00",
"clean": "2021-08-03T00:05:54+00:00",
"max_song": 135,
"max_album": 21,
"max_artist": 36,
"max_video": 5,
"max_podcast": 2,
"max_podcast_episode": 82866,
"songs": 75,
"albums": 9,
"artists": 18,
"genres": 7,
"playlists": 4,
"searches": 18,
"playlists_searches": 22,
"users": 3,
"catalogs": 4,
"videos": 3,
"podcasts": 2,
"podcast_episodes": 13,
"shares": 3,
"licenses": 14,
"live_streams": 2,
"labels": 4,
"username": "user"
}
}
}
},
"application/xml": {
"schema": {
"type": "string"
}
}
},
"description": "Session info or error"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"security": [
{},
{
"BearerAuth": []
},
{
"ApiKeyAuthHeader": []
}
],
"summary": "Authenticate and start a session (deprecated)",
"tags": [
"Authentication"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HandshakeRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/HandshakeRequest"
}
}
}
},
"operationId": "handshake"
}
},
"/index": {
"get": {
"parameters": [
{
"in": "query",
"name": "type",
"required": true,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "hide_search",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"in": "query",
"name": "exact",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/IndexResponse"
},
"examples": {
"index_album_with_include": {
"summary": "index (album with include)",
"value": {
"album": {
"12": [
{
"id": "107",
"type": "song"
},
{
"id": "108",
"type": "song"
},
{
"id": "109",
"type": "song"
},
{
"id": "110",
"type": "song"
},
{
"id": "111",
"type": "song"
},
{
"id": "112",
"type": "song"
},
{
"id": "113",
"type": "song"
},
{
"id": "114",
"type": "song"
},
{
"id": "115",
"type": "song"
}
],
"10": [
{
"id": "98",
"type": "song"
},
{
"id": "99",
"type": "song"
},
{
"id": "100",
"type": "song"
},
{
"id": "101",
"type": "song"
},
{
"id": "102",
"type": "song"
},
{
"id": "103",
"type": "song"
},
{
"id": "104",
"type": "song"
},
{
"id": "105",
"type": "song"
},
{
"id": "106",
"type": "song"
}
],
"2": [
{
"id": "54",
"type": "song"
},
{
"id": "55",
"type": "song"
},
{
"id": "56",
"type": "song"
},
{
"id": "57",
"type": "song"
},
{
"id": "58",
"type": "song"
},
{
"id": "59",
"type": "song"
},
{
"id": "60",
"type": "song"
},
{
"id": "61",
"type": "song"
},
{
"id": "62",
"type": "song"
},
{
"id": "63",
"type": "song"
},
{
"id": "64",
"type": "song"
},
{
"id": "65",
"type": "song"
}
],
"9": [
{
"id": "96",
"type": "song"
},
{
"id": "97",
"type": "song"
}
],
"21": [
{
"id": "116",
"type": "song"
},
{
"id": "117",
"type": "song"
},
{
"id": "118",
"type": "song"
},
{
"id": "119",
"type": "song"
},
{
"id": "120",
"type": "song"
},
{
"id": "121",
"type": "song"
},
{
"id": "122",
"type": "song"
},
{
"id": "123",
"type": "song"
},
{
"id": "124",
"type": "song"
},
{
"id": "125",
"type": "song"
},
{
"id": "126",
"type": "song"
},
{
"id": "127",
"type": "song"
},
{
"id": "128",
"type": "song"
},
{
"id": "129",
"type": "song"
},
{
"id": "130",
"type": "song"
},
{
"id": "131",
"type": "song"
},
{
"id": "132",
"type": "song"
},
{
"id": "133",
"type": "song"
},
{
"id": "134",
"type": "song"
},
{
"id": "135",
"type": "song"
}
],
"18": [
{
"id": "73",
"type": "song"
},
{
"id": "74",
"type": "song"
},
{
"id": "75",
"type": "song"
},
{
"id": "76",
"type": "song"
},
{
"id": "77",
"type": "song"
},
{
"id": "78",
"type": "song"
}
],
"8": [
{
"id": "85",
"type": "song"
},
{
"id": "86",
"type": "song"
},
{
"id": "87",
"type": "song"
},
{
"id": "88",
"type": "song"
},
{
"id": "89",
"type": "song"
},
{
"id": "90",
"type": "song"
},
{
"id": "91",
"type": "song"
},
{
"id": "92",
"type": "song"
},
{
"id": "93",
"type": "song"
},
{
"id": "94",
"type": "song"
},
{
"id": "95",
"type": "song"
}
],
"7": [
{
"id": "81",
"type": "song"
},
{
"id": "82",
"type": "song"
},
{
"id": "83",
"type": "song"
},
{
"id": "84",
"type": "song"
}
],
"6": [
{
"id": "79",
"type": "song"
},
{
"id": "80",
"type": "song"
}
]
}
}
},
"index_album": {
"summary": "index (album)",
"value": {
"album": [
"12",
"10",
"2",
"9",
"21",
"18",
"8",
"7",
"6"
]
}
},
"index_album_artist_with_include": {
"summary": "index (album artist with include)",
"value": {
"album_artist": {
"16": [
{
"id": "10",
"type": "album"
}
],
"36": [
{
"id": "21",
"type": "album"
}
],
"13": [
{
"id": "7",
"type": "album"
}
],
"14": [
{
"id": "8",
"type": "album"
}
],
"11": [
{
"id": "18",
"type": "album"
}
],
"2": [
{
"id": "2",
"type": "album"
}
],
"19": [
{
"id": "12",
"type": "album"
}
],
"15": [
{
"id": "9",
"type": "album"
}
],
"12": [
{
"id": "6",
"type": "album"
}
]
}
}
},
"index_album_artist": {
"summary": "index (album artist)",
"value": {
"album_artist": [
"16",
"36",
"13",
"14",
"11",
"2",
"19",
"15",
"12"
]
}
},
"index_artist_with_include": {
"summary": "index (artist with include)",
"value": {
"artist": {
"16": [
{
"id": "10",
"type": "album"
}
],
"27": [
{
"id": "12",
"type": "album"
}
],
"34": [
{
"id": "12",
"type": "album"
}
],
"36": [
{
"id": "21",
"type": "album"
}
],
"13": [
{
"id": "7",
"type": "album"
}
],
"23": [
{
"id": "12",
"type": "album"
}
],
"33": [
{
"id": "12",
"type": "album"
}
],
"14": [
{
"id": "8",
"type": "album"
}
],
"20": [
{
"id": "12",
"type": "album"
}
],
"32": [
{
"id": "12",
"type": "album"
}
],
"26": [
{
"id": "12",
"type": "album"
}
],
"11": [
{
"id": "18",
"type": "album"
}
],
"2": [
{
"id": "2",
"type": "album"
}
],
"35": [
{
"id": "12",
"type": "album"
}
],
"21": [
{
"id": "12",
"type": "album"
}
],
"19": [
{
"id": "12",
"type": "album"
}
],
"15": [
{
"id": "9",
"type": "album"
}
],
"12": [
{
"id": "6",
"type": "album"
}
]
}
}
},
"index_artist": {
"summary": "index (artist)",
"value": {
"artist": [
"16",
"27",
"34",
"36",
"13",
"23",
"33",
"14",
"20",
"32",
"26",
"11",
"2",
"35",
"21",
"19",
"15",
"12"
]
}
},
"index_catalog_with_include": {
"summary": "index (catalog with include)",
"value": {
"catalog": [
"1",
"3",
"4",
"2"
]
}
},
"index_catalog": {
"summary": "index (catalog)",
"value": {
"catalog": [
"1",
"3",
"4",
"2"
]
}
},
"index_live_stream": {
"summary": "index (live stream)",
"value": {
"live_stream": [
"1",
"2"
]
}
},
"index_playlist_with_include": {
"summary": "index (playlist with include)",
"value": {
"playlist": {
"smart_21": [
{
"id": "76",
"type": "song"
}
],
"smart_14": [
{
"id": "79",
"type": "song"
},
{
"id": "80",
"type": "song"
}
],
"smart_13": [
{
"id": "90",
"type": "song"
},
{
"id": "95",
"type": "song"
},
{
"id": "93",
"type": "song"
},
{
"id": "85",
"type": "song"
},
{
"id": "86",
"type": "song"
},
{
"id": "87",
"type": "song"
},
{
"id": "94",
"type": "song"
},
{
"id": "92",
"type": "song"
},
{
"id": "91",
"type": "song"
},
{
"id": "88",
"type": "song"
},
{
"id": "89",
"type": "song"
}
],
"smart_12": [
{
"id": "97",
"type": "song"
},
{
"id": "96",
"type": "song"
}
],
"smart_11": [
{
"id": "78",
"type": "song"
},
{
"id": "77",
"type": "song"
},
{
"id": "74",
"type": "song"
},
{
"id": "76",
"type": "song"
},
{
"id": "73",
"type": "song"
},
{
"id": "75",
"type": "song"
}
],
"smart_10": [
{
"id": "56",
"type": "song"
},
{
"id": "59",
"type": "song"
},
{
"id": "57",
"type": "song"
},
{
"id": "58",
"type": "song"
},
{
"id": "55",
"type": "song"
},
{
"id": "54",
"type": "song"
},
{
"id": "64",
"type": "song"
},
{
"id": "65",
"type": "song"
},
{
"id": "62",
"type": "song"
},
{
"id": "60",
"type": "song"
},
{
"id": "63",
"type": "song"
},
{
"id": "61",
"type": "song"
}
],
"smart_9": [
{
"id": "79",
"type": "song"
},
{
"id": "80",
"type": "song"
}
],
"smart_8": [
{
"id": "90",
"type": "song"
},
{
"id": "95",
"type": "song"
},
{
"id": "93",
"type": "song"
},
{
"id": "85",
"type": "song"
},
{
"id": "86",
"type": "song"
},
{
"id": "87",
"type": "song"
},
{
"id": "94",
"type": "song"
},
{
"id": "92",
"type": "song"
},
{
"id": "91",
"type": "song"
},
{
"id": "88",
"type": "song"
},
{
"id": "89",
"type": "song"
}
],
"smart_7": [
{
"id": "97",
"type": "song"
},
{
"id": "96",
"type": "song"
}
],
"smart_6": [
{
"id": "78",
"type": "song"
},
{
"id": "77",
"type": "song"
},
{
"id": "74",
"type": "song"
},
{
"id": "76",
"type": "song"
},
{
"id": "73",
"type": "song"
},
{
"id": "75",
"type": "song"
}
],
"smart_5": [
{
"id": "56",
"type": "song"
},
{
"id": "59",
"type": "song"
},
{
"id": "57",
"type": "song"
},
{
"id": "58",
"type": "song"
},
{
"id": "55",
"type": "song"
},
{
"id": "54",
"type": "song"
},
{
"id": "64",
"type": "song"
},
{
"id": "65",
"type": "song"
},
{
"id": "62",
"type": "song"
},
{
"id": "60",
"type": "song"
},
{
"id": "63",
"type": "song"
},
{
"id": "61",
"type": "song"
}
],
"65": [
{
"id": "90",
"type": "song"
},
{
"id": "95",
"type": "song"
},
{
"id": "93",
"type": "song"
},
{
"id": "85",
"type": "song"
},
{
"id": "86",
"type": "song"
},
{
"id": "87",
"type": "song"
},
{
"id": "94",
"type": "song"
},
{
"id": "92",
"type": "song"
},
{
"id": "91",
"type": "song"
},
{
"id": "88",
"type": "song"
},
{
"id": "89",
"type": "song"
}
],
"3": [
{
"id": "90",
"type": "song"
},
{
"id": "91",
"type": "song"
},
{
"id": "101",
"type": "song"
},
{
"id": "62",
"type": "song"
},
{
"id": "89",
"type": "song"
},
{
"id": "98",
"type": "song"
},
{
"id": "60",
"type": "song"
},
{
"id": "94",
"type": "song"
},
{
"id": "55",
"type": "song"
},
{
"id": "54",
"type": "song"
},
{
"id": "92",
"type": "song"
},
{
"id": "85",
"type": "song"
},
{
"id": "104",
"type": "song"
},
{
"id": "83",
"type": "song"
},
{
"id": "74",
"type": "song"
},
{
"id": "57",
"type": "song"
},
{
"id": "97",
"type": "song"
},
{
"id": "56",
"type": "song"
},
{
"id": "84",
"type": "song"
},
{
"id": "103",
"type": "song"
},
{
"id": "106",
"type": "song"
},
{
"id": "61",
"type": "song"
},
{
"id": "64",
"type": "song"
},
{
"id": "58",
"type": "song"
},
{
"id": "100",
"type": "song"
},
{
"id": "73",
"type": "song"
},
{
"id": "99",
"type": "song"
},
{
"id": "105",
"type": "song"
},
{
"id": "82",
"type": "song"
},
{
"id": "81",
"type": "song"
},
{
"id": "87",
"type": "song"
},
{
"id": "95",
"type": "song"
},
{
"id": "76",
"type": "song"
},
{
"id": "102",
"type": "song"
},
{
"id": "93",
"type": "song"
},
{
"id": "59",
"type": "song"
},
{
"id": "65",
"type": "song"
},
{
"id": "77",
"type": "song"
},
{
"id": "88",
"type": "song"
},
{
"id": "80",
"type": "song"
},
{
"id": "86",
"type": "song"
},
{
"id": "78",
"type": "song"
},
{
"id": "96",
"type": "song"
}
],
"2": [
{
"id": "102",
"type": "song"
},
{
"id": "98",
"type": "song"
},
{
"id": "59",
"type": "song"
},
{
"id": "61",
"type": "song"
},
{
"id": "90",
"type": "song"
},
{
"id": "57",
"type": "song"
},
{
"id": "100",
"type": "song"
},
{
"id": "94",
"type": "song"
},
{
"id": "54",
"type": "song"
},
{
"id": "60",
"type": "song"
},
{
"id": "88",
"type": "song"
},
{
"id": "83",
"type": "song"
},
{
"id": "56",
"type": "song"
},
{
"id": "78",
"type": "song"
},
{
"id": "82",
"type": "song"
},
{
"id": "85",
"type": "song"
},
{
"id": "86",
"type": "song"
},
{
"id": "89",
"type": "song"
},
{
"id": "91",
"type": "song"
},
{
"id": "84",
"type": "song"
},
{
"id": "106",
"type": "song"
},
{
"id": "81",
"type": "song"
},
{
"id": "63",
"type": "song"
},
{
"id": "99",
"type": "song"
},
{
"id": "65",
"type": "song"
},
{
"id": "105",
"type": "song"
},
{
"id": "96",
"type": "song"
},
{
"id": "101",
"type": "song"
},
{
"id": "74",
"type": "song"
},
{
"id": "103",
"type": "song"
},
{
"id": "104",
"type": "song"
},
{
"id": "73",
"type": "song"
},
{
"id": "87",
"type": "song"
},
{
"id": "75",
"type": "song"
},
{
"id": "58",
"type": "song"
},
{
"id": "93",
"type": "song"
},
{
"id": "62",
"type": "song"
},
{
"id": "79",
"type": "song"
},
{
"id": "76",
"type": "song"
},
{
"id": "92",
"type": "song"
},
{
"id": "55",
"type": "song"
},
{
"id": "95",
"type": "song"
},
{
"id": "97",
"type": "song"
}
],
"4": [
{
"id": "90",
"type": "song"
},
{
"id": "91",
"type": "song"
},
{
"id": "101",
"type": "song"
},
{
"id": "62",
"type": "song"
},
{
"id": "89",
"type": "song"
},
{
"id": "98",
"type": "song"
},
{
"id": "60",
"type": "song"
},
{
"id": "94",
"type": "song"
},
{
"id": "55",
"type": "song"
},
{
"id": "54",
"type": "song"
},
{
"id": "92",
"type": "song"
},
{
"id": "85",
"type": "song"
},
{
"id": "104",
"type": "song"
},
{
"id": "83",
"type": "song"
},
{
"id": "74",
"type": "song"
},
{
"id": "57",
"type": "song"
},
{
"id": "97",
"type": "song"
},
{
"id": "56",
"type": "song"
},
{
"id": "84",
"type": "song"
},
{
"id": "103",
"type": "song"
},
{
"id": "106",
"type": "song"
},
{
"id": "61",
"type": "song"
},
{
"id": "64",
"type": "song"
},
{
"id": "58",
"type": "song"
},
{
"id": "100",
"type": "song"
},
{
"id": "73",
"type": "song"
},
{
"id": "99",
"type": "song"
},
{
"id": "105",
"type": "song"
},
{
"id": "82",
"type": "song"
},
{
"id": "81",
"type": "song"
},
{
"id": "87",
"type": "song"
},
{
"id": "95",
"type": "song"
},
{
"id": "76",
"type": "song"
},
{
"id": "102",
"type": "song"
},
{
"id": "93",
"type": "song"
},
{
"id": "59",
"type": "song"
},
{
"id": "65",
"type": "song"
},
{
"id": "77",
"type": "song"
},
{
"id": "88",
"type": "song"
},
{
"id": "80",
"type": "song"
},
{
"id": "86",
"type": "song"
},
{
"id": "78",
"type": "song"
},
{
"id": "96",
"type": "song"
}
],
"smart_19": [
{
"id": "79",
"type": "song"
}
],
"smart_18": [],
"smart_17": [
{
"id": "76",
"type": "song"
}
],
"smart_16": [],
"smart_15": [
{
"id": "104",
"type": "song"
},
{
"id": "99",
"type": "song"
},
{
"id": "101",
"type": "song"
},
{
"id": "82",
"type": "song"
},
{
"id": "81",
"type": "song"
},
{
"id": "90",
"type": "song"
},
{
"id": "95",
"type": "song"
},
{
"id": "86",
"type": "song"
},
{
"id": "87",
"type": "song"
},
{
"id": "94",
"type": "song"
},
{
"id": "88",
"type": "song"
},
{
"id": "78",
"type": "song"
},
{
"id": "75",
"type": "song"
},
{
"id": "56",
"type": "song"
},
{
"id": "59",
"type": "song"
},
{
"id": "54",
"type": "song"
},
{
"id": "65",
"type": "song"
},
{
"id": "62",
"type": "song"
},
{
"id": "63",
"type": "song"
},
{
"id": "110",
"type": "song"
},
{
"id": "111",
"type": "song"
},
{
"id": "108",
"type": "song"
},
{
"id": "96",
"type": "song"
},
{
"id": "80",
"type": "song"
},
{
"id": "117",
"type": "song"
},
{
"id": "135",
"type": "song"
},
{
"id": "130",
"type": "song"
},
{
"id": "121",
"type": "song"
},
{
"id": "131",
"type": "song"
},
{
"id": "125",
"type": "song"
}
],
"smart_20": [
{
"id": "106",
"type": "song"
},
{
"id": "100",
"type": "song"
},
{
"id": "98",
"type": "song"
},
{
"id": "104",
"type": "song"
},
{
"id": "102",
"type": "song"
},
{
"id": "99",
"type": "song"
},
{
"id": "103",
"type": "song"
},
{
"id": "105",
"type": "song"
},
{
"id": "101",
"type": "song"
},
{
"id": "83",
"type": "song"
},
{
"id": "82",
"type": "song"
},
{
"id": "81",
"type": "song"
},
{
"id": "84",
"type": "song"
},
{
"id": "90",
"type": "song"
},
{
"id": "95",
"type": "song"
},
{
"id": "85",
"type": "song"
},
{
"id": "86",
"type": "song"
},
{
"id": "87",
"type": "song"
},
{
"id": "94",
"type": "song"
},
{
"id": "92",
"type": "song"
},
{
"id": "91",
"type": "song"
},
{
"id": "88",
"type": "song"
},
{
"id": "89",
"type": "song"
},
{
"id": "78",
"type": "song"
},
{
"id": "77",
"type": "song"
},
{
"id": "74",
"type": "song"
},
{
"id": "76",
"type": "song"
},
{
"id": "73",
"type": "song"
},
{
"id": "75",
"type": "song"
},
{
"id": "56",
"type": "song"
},
{
"id": "59",
"type": "song"
},
{
"id": "57",
"type": "song"
},
{
"id": "58",
"type": "song"
},
{
"id": "54",
"type": "song"
},
{
"id": "64",
"type": "song"
},
{
"id": "65",
"type": "song"
},
{
"id": "62",
"type": "song"
},
{
"id": "60",
"type": "song"
},
{
"id": "63",
"type": "song"
},
{
"id": "61",
"type": "song"
},
{
"id": "110",
"type": "song"
},
{
"id": "114",
"type": "song"
},
{
"id": "109",
"type": "song"
},
{
"id": "113",
"type": "song"
},
{
"id": "111",
"type": "song"
},
{
"id": "108",
"type": "song"
},
{
"id": "115",
"type": "song"
},
{
"id": "112",
"type": "song"
},
{
"id": "107",
"type": "song"
},
{
"id": "97",
"type": "song"
},
{
"id": "79",
"type": "song"
},
{
"id": "80",
"type": "song"
},
{
"id": "116",
"type": "song"
},
{
"id": "127",
"type": "song"
},
{
"id": "117",
"type": "song"
},
{
"id": "126",
"type": "song"
},
{
"id": "133",
"type": "song"
},
{
"id": "135",
"type": "song"
},
{
"id": "132",
"type": "song"
},
{
"id": "129",
"type": "song"
},
{
"id": "130",
"type": "song"
},
{
"id": "123",
"type": "song"
},
{
"id": "134",
"type": "song"
},
{
"id": "121",
"type": "song"
},
{
"id": "131",
"type": "song"
},
{
"id": "119",
"type": "song"
},
{
"id": "120",
"type": "song"
},
{
"id": "125",
"type": "song"
},
{
"id": "124",
"type": "song"
},
{
"id": "122",
"type": "song"
},
{
"id": "128",
"type": "song"
},
{
"id": "118",
"type": "song"
}
],
"smart_22": [
{
"id": "104",
"type": "song"
},
{
"id": "99",
"type": "song"
},
{
"id": "101",
"type": "song"
},
{
"id": "82",
"type": "song"
},
{
"id": "81",
"type": "song"
},
{
"id": "90",
"type": "song"
},
{
"id": "95",
"type": "song"
},
{
"id": "86",
"type": "song"
},
{
"id": "87",
"type": "song"
},
{
"id": "94",
"type": "song"
},
{
"id": "88",
"type": "song"
},
{
"id": "78",
"type": "song"
},
{
"id": "76",
"type": "song"
},
{
"id": "75",
"type": "song"
},
{
"id": "56",
"type": "song"
},
{
"id": "59",
"type": "song"
},
{
"id": "54",
"type": "song"
},
{
"id": "65",
"type": "song"
},
{
"id": "62",
"type": "song"
},
{
"id": "63",
"type": "song"
},
{
"id": "110",
"type": "song"
},
{
"id": "111",
"type": "song"
},
{
"id": "108",
"type": "song"
},
{
"id": "96",
"type": "song"
},
{
"id": "80",
"type": "song"
},
{
"id": "117",
"type": "song"
},
{
"id": "135",
"type": "song"
},
{
"id": "130",
"type": "song"
},
{
"id": "121",
"type": "song"
},
{
"id": "131",
"type": "song"
},
{
"id": "125",
"type": "song"
}
]
}
}
},
"index_playlist": {
"summary": "index (playlist)",
"value": {
"playlist": [
"smart_21",
"smart_14",
"smart_13",
"smart_12",
"smart_11",
"smart_10",
"smart_9",
"smart_8",
"smart_7",
"smart_6",
"smart_5",
"65",
"3",
"2",
"4",
"smart_19",
"smart_18",
"smart_17",
"smart_16",
"smart_15",
"smart_20",
"smart_22"
]
}
},
"index_podcast_with_include": {
"summary": "index (podcast with include)",
"value": {
"podcast": {
"1": [
{
"id": "82863",
"type": "podcast_episode"
},
{
"id": "82862",
"type": "podcast_episode"
},
{
"id": "82861",
"type": "podcast_episode"
},
{
"id": "82860",
"type": "podcast_episode"
},
{
"id": "82859",
"type": "podcast_episode"
},
{
"id": "82866",
"type": "podcast_episode"
},
{
"id": "82865",
"type": "podcast_episode"
},
{
"id": "82864",
"type": "podcast_episode"
},
{
"id": "82858",
"type": "podcast_episode"
},
{
"id": "82857",
"type": "podcast_episode"
}
],
"2": [
{
"id": "23",
"type": "podcast_episode"
},
{
"id": "24",
"type": "podcast_episode"
},
{
"id": "22",
"type": "podcast_episode"
}
]
}
}
},
"index_podcast": {
"summary": "index (podcast)",
"value": {
"podcast": [
"1",
"2"
]
}
},
"index_podcast_episode": {
"summary": "index (podcast episode)",
"value": {
"podcast_episode": [
"24",
"82861",
"82857",
"82860",
"82858",
"23",
"82865",
"82859",
"82862",
"22",
"82864",
"82866",
"82863"
]
}
},
"index_share_with_include": {
"summary": "index (share with include)",
"value": {
"share": [
"1",
"2",
"7"
]
}
},
"index_share": {
"summary": "index (share)",
"value": {
"share": [
"1",
"2",
"7"
]
}
},
"index_song": {
"summary": "index (song)",
"value": {
"song": [
"115",
"107",
"118",
"85",
"56",
"64",
"58",
"60",
"86",
"116",
"96",
"97",
"109",
"126",
"135",
"120",
"81",
"123",
"132",
"114",
"91",
"110",
"108",
"98",
"103",
"78",
"77",
"74",
"76",
"73",
"90",
"133",
"106",
"131",
"102",
"88",
"112",
"121",
"57",
"62",
"54",
"55",
"61",
"63",
"101",
"117",
"113",
"93",
"83",
"127",
"130",
"119",
"95",
"92",
"89",
"94",
"134",
"75",
"125",
"111",
"129",
"104",
"105",
"100",
"99",
"122",
"124",
"84",
"82",
"128",
"87",
"59",
"65",
"79",
"80"
]
}
},
"index_song_artist_with_include": {
"summary": "index (song artist with include)",
"value": {
"song_artist": {
"16": [
{
"id": "10",
"type": "album"
}
],
"27": [
{
"id": "12",
"type": "album"
}
],
"34": [
{
"id": "12",
"type": "album"
}
],
"36": [
{
"id": "21",
"type": "album"
}
],
"13": [
{
"id": "7",
"type": "album"
}
],
"23": [
{
"id": "12",
"type": "album"
}
],
"33": [
{
"id": "12",
"type": "album"
}
],
"14": [
{
"id": "8",
"type": "album"
}
],
"20": [
{
"id": "12",
"type": "album"
}
],
"32": [
{
"id": "12",
"type": "album"
}
],
"26": [
{
"id": "12",
"type": "album"
}
],
"11": [
{
"id": "18",
"type": "album"
}
],
"2": [
{
"id": "2",
"type": "album"
}
],
"35": [
{
"id": "12",
"type": "album"
}
],
"21": [
{
"id": "12",
"type": "album"
}
],
"15": [
{
"id": "9",
"type": "album"
}
],
"12": [
{
"id": "6",
"type": "album"
}
]
}
}
},
"index_song_artist": {
"summary": "index (song artist)",
"value": {
"song_artist": [
"16",
"27",
"34",
"36",
"13",
"23",
"33",
"14",
"20",
"32",
"26",
"11",
"2",
"35",
"21",
"15",
"12"
]
}
},
"index_video": {
"summary": "index (video)",
"value": {
"video": [
"5",
"2",
"1"
]
}
}
}
}
},
"description": "Index response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Index IDs for an object type",
"tags": [
"Browsing, Indexes and Lists"
],
"operationId": "index",
"description": "This takes a collection of inputs and return ID's for the object type. Add 'include' to include child objects"
}
},
"/labels": {
"get": {
"parameters": [
{
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "exact",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LabelsResponse"
},
"examples": {
"labels": {
"summary": "labels",
"value": {
"total_count": 4,
"md5": "3592a72ad218f9dedc3b645909f55730",
"label": [
{
"id": "2",
"name": "20kbps rec.",
"artists": 1,
"summary": null,
"external_link": "https://music.com.au/labels.php?action=show&label=2",
"address": null,
"category": "tag_generated",
"email": null,
"website": null,
"user": "4"
},
{
"id": "1",
"name": "archive.org",
"artists": 8,
"summary": null,
"external_link": "https://music.com.au/labels.php?action=show&label=1",
"address": null,
"category": "tag_generated",
"email": null,
"website": null,
"user": "4"
},
{
"id": "3",
"name": "DNA Production",
"artists": 1,
"summary": null,
"external_link": "https://music.com.au/labels.php?action=show&label=3",
"address": null,
"category": "tag_generated",
"email": null,
"website": null,
"user": "4"
},
{
"id": "4",
"name": "Tokyo Dawn Records",
"artists": 1,
"summary": null,
"external_link": "https://music.com.au/labels.php?action=show&label=4",
"address": null,
"category": "tag_generated",
"email": null,
"website": null,
"user": ""
}
]
}
}
}
}
},
"description": "Label list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List labels",
"tags": [
"Labels"
],
"operationId": "labels",
"description": "This returns labels based on the specified filter"
}
},
"/labels/search": {
"get": {
"description": "Provide operator plus one or more rule triplets. At minimum, rule_1, rule_1_operator, rule_1_input are required. Additional rules may be supplied as rule_2, rule_2_operator, rule_2_input, etc.",
"operationId": "searchLabels",
"parameters": [
{
"$ref": "#/components/parameters/Operator"
},
{
"description": "0, 1 (random order of results; default to 0)",
"in": "query",
"name": "random",
"required": false,
"schema": {
"default": false,
"type": "boolean"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Rule1"
},
{
"$ref": "#/components/parameters/Rule1Operator"
},
{
"$ref": "#/components/parameters/Rule1Input"
},
{
"$ref": "#/components/parameters/Rule2"
},
{
"$ref": "#/components/parameters/Rule2Operator"
},
{
"$ref": "#/components/parameters/Rule2Input"
},
{
"$ref": "#/components/parameters/Rule3"
},
{
"$ref": "#/components/parameters/Rule3Operator"
},
{
"$ref": "#/components/parameters/Rule3Input"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LabelsResponse"
},
"examples": {
"labels": {
"summary": "labels (search results)",
"value": {
"total_count": 4,
"md5": "3592a72ad218f9dedc3b645909f55730",
"label": [
{
"id": "2",
"name": "20kbps rec.",
"artists": 1,
"summary": null,
"external_link": "https://music.com.au/labels.php?action=show&label=2",
"address": null,
"category": "tag_generated",
"email": null,
"website": null,
"user": "4"
},
{
"id": "1",
"name": "archive.org",
"artists": 8,
"summary": null,
"external_link": "https://music.com.au/labels.php?action=show&label=1",
"address": null,
"category": "tag_generated",
"email": null,
"website": null,
"user": "4"
},
{
"id": "3",
"name": "DNA Production",
"artists": 1,
"summary": null,
"external_link": "https://music.com.au/labels.php?action=show&label=3",
"address": null,
"category": "tag_generated",
"email": null,
"website": null,
"user": "4"
},
{
"id": "4",
"name": "Tokyo Dawn Records",
"artists": 1,
"summary": null,
"external_link": "https://music.com.au/labels.php?action=show&label=4",
"address": null,
"category": "tag_generated",
"email": null,
"website": null,
"user": ""
}
]
}
}
}
}
},
"description": "Search results"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Search for media entities using rule triplets",
"tags": [
"Labels",
"Search"
]
}
},
"/labels/{label_id}": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/LabelId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LabelObject"
},
"examples": {
"label": {
"summary": "label",
"value": {
"id": "2",
"name": "20kbps rec.",
"artists": 1,
"summary": null,
"external_link": "https://music.com.au/labels.php?action=show&label=2",
"address": null,
"category": "tag_generated",
"email": null,
"website": null,
"user": "4"
}
}
}
}
},
"description": "Label object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get label by ID",
"tags": [
"Labels"
],
"operationId": "label",
"description": "This returns a single label"
}
},
"/labels/{label_id}/artists": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/LabelId"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ArtistsResponse"
},
"examples": {
"label_artists": {
"summary": "label artists",
"value": {
"total_count": 1,
"md5": "a5f5d7a5fc80600513c623db108873af",
"artist": [
{
"id": "2",
"name": "Synthetic",
"prefix": null,
"basename": "Synthetic",
"albums": [],
"albumcount": 1,
"songs": [],
"songcount": 12,
"genre": [
{
"id": "1",
"name": "Electronic"
}
],
"art": "https://music.com.au/image.php?object_id=2&object_type=artist&id=256&name=art.jpg",
"has_art": true,
"flag": true,
"rating": 5,
"averagerating": 3,
"mbid": "1",
"summary": "Synthetic was formed in the late 90's by Steve Engler (formerly of Primitive Modern, Twitch Revolt & Domestic Violence), Synthetic is an eclectic act. Influences range from Aphex Twin to Frank Zappa and everything in between. Currently has 3 remixes on Bush-of-ghosts.com under artist names: AAASYNTHETIC and STEVEEDENVER. Has several remixes on RealWorldRemixed.com (Peter Gabriel's Label). Also is he represented on mp3unsigned.com as Synthetic. Synthetic has completed 5 LPs and 8-10 EPs. ",
"time": 4568,
"yearformed": 0,
"placeformed": null
}
]
}
}
}
}
},
"description": "Artist list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get artists for a label",
"tags": [
"Labels",
"Artists"
],
"operationId": "labelArtists",
"description": "This returns the artists for a label"
}
},
"/labels/{label_id}/fetch-metadata": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/LabelId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ExternalMetadataResponse"
},
"examples": {
"get_external_metadata": {
"summary": "get_external_metadata (no plugin answered)",
"value": {
"total_count": 0,
"md5": "40cd750bba9870f18aada2478b24840a",
"label": []
}
}
}
}
},
"description": "External metadata array"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get external metadata for a label",
"tags": [
"Labels",
"Utilities"
],
"operationId": "getExternalMetadataLabelsFetchMetadata",
"description": "Return External plugin metadata searching by object id and type"
}
},
"/licenses": {
"get": {
"parameters": [
{
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "exact",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LicensesResponse"
},
"examples": {
"licenses": {
"summary": "licenses",
"value": {
"total_count": 14,
"md5": "eacea4de85c3287ec42f4d2f825056d0",
"license": [
{
"id": "1",
"name": "0 - default",
"description": "",
"external_link": ""
},
{
"id": "14",
"name": "C Reaction",
"description": "",
"external_link": "http://morne.free.fr/Necktar7/creaction.htm"
},
{
"id": "2",
"name": "CC BY 3.0",
"description": "",
"external_link": "https://creativecommons.org/licenses/by/3.0/"
},
{
"id": "3",
"name": "CC BY NC 3.0",
"description": "",
"external_link": "https://creativecommons.org/licenses/by-nc/3.0/"
},
{
"id": "4",
"name": "CC BY NC ND 3.0",
"description": "",
"external_link": "https://creativecommons.org/licenses/by-nc-nd/3.0/"
},
{
"id": "5",
"name": "CC BY NC SA 3.0",
"description": "",
"external_link": "https://creativecommons.org/licenses/by-nc-sa/3.0/"
},
{
"id": "6",
"name": "CC BY ND 3.0",
"description": "",
"external_link": "https://creativecommons.org/licenses/by-nd/3.0/"
},
{
"id": "7",
"name": "CC BY SA 3.0",
"description": "",
"external_link": "https://creativecommons.org/licenses/by-sa/3.0/"
},
{
"id": "13",
"name": "FMPL",
"description": "",
"external_link": "http://www.ram.org/ramblings/philosophy/fmp/fmpl/fmpl.html"
},
{
"id": "11",
"name": "Gnu GPL Art",
"description": "",
"external_link": "http://gnuart.org/english/gnugpl.html"
},
{
"id": "10",
"name": "Green OpenMusic",
"description": "",
"external_link": "http://openmusic.linuxtag.org/green.html"
},
{
"id": "8",
"name": "Licence Art Libre",
"description": "",
"external_link": "http://artlibre.org/licence/lal/"
},
{
"id": "12",
"name": "WTFPL",
"description": "",
"external_link": "https://en.wikipedia.org/wiki/WTFPL"
},
{
"id": "9",
"name": "Yellow OpenMusic",
"description": "",
"external_link": "http://openmusic.linuxtag.org/yellow.html"
}
]
}
}
}
}
},
"description": "License list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List licenses",
"tags": [
"Licenses"
],
"operationId": "licenses",
"description": "This returns licenses based on the specified filter"
}
},
"/licenses/{license_id}": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/LicenseId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LicenseObject"
},
"examples": {
"license": {
"summary": "license",
"value": {
"id": "1",
"name": "0 - default",
"description": "",
"external_link": ""
}
}
}
}
},
"description": "License object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get license by ID",
"tags": [
"Licenses"
],
"operationId": "license",
"description": "This returns a single license"
}
},
"/licenses/{license_id}/songs": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/LicenseId"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SongsResponse"
},
"examples": {
"license_songs": {
"summary": "license songs",
"value": {
"total_count": 0,
"md5": "40cd750bba9870f18aada2478b24840a",
"song": []
}
}
}
}
},
"description": "Song list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get songs for a license",
"tags": [
"Licenses",
"Songs"
],
"operationId": "licenseSongs",
"description": "This returns the songs for a license"
}
},
"/list": {
"get": {
"parameters": [
{
"in": "query",
"name": "type",
"required": true,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "hide_search",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ListsResponse"
},
"examples": {
"list": {
"summary": "list",
"value": {
"total_count": 75,
"md5": "38cc7c252d14f4b815afd4b3e1d36da2",
"list": [
{
"id": "115",
"name": "Are we going Crazy",
"prefix": null,
"basename": "Are we going Crazy"
},
{
"id": "107",
"name": "Arrest Me",
"prefix": null,
"basename": "Arrest Me"
},
{
"id": "118",
"name": "As Pure as Possible",
"prefix": null,
"basename": "As Pure as Possible"
},
{
"id": "85",
"name": "Beq Ultra Fat",
"prefix": null,
"basename": "Beq Ultra Fat"
}
]
}
},
"list_album": {
"summary": "list (album)",
"value": {
"total_count": 9,
"md5": "ccba9d0b0ac08b8a22a2fbbecb76d2d8",
"list": [
{
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea"
},
{
"id": "10",
"name": "CARNÚN - MALKUTH (Demo 1996)",
"prefix": null,
"basename": "CARNÚN - MALKUTH (Demo 1996)"
},
{
"id": "2",
"name": "Colorsmoke EP",
"prefix": null,
"basename": "Colorsmoke EP"
},
{
"id": "9",
"name": "Creeping Lawler 2",
"prefix": null,
"basename": "Creeping Lawler 2"
}
]
}
},
"list_album_artist": {
"summary": "list (album artist)",
"value": {
"total_count": 9,
"md5": "2bf8d47c775d4c85755c295ea1704077",
"list": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
},
{
"id": "13",
"name": "IOK-1",
"prefix": null,
"basename": "IOK-1"
},
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
}
]
}
},
"list_artist": {
"summary": "list (artist)",
"value": {
"total_count": 18,
"md5": "3937dcbc0f36953df17ee4b3af4e52ec",
"list": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
{
"id": "27",
"name": "Chi.Otic",
"prefix": null,
"basename": "Chi.Otic"
},
{
"id": "34",
"name": "Comedown Kid",
"prefix": null,
"basename": "Comedown Kid"
},
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
}
]
}
},
"list_catalog": {
"summary": "list (catalog)",
"value": {
"total_count": 4,
"md5": "cb61dcd710c8c36b59a19864389d6499",
"list": [
{
"id": "1",
"name": "music",
"prefix": null,
"basename": "music"
},
{
"id": "3",
"name": "podcast",
"prefix": null,
"basename": "podcast"
},
{
"id": "4",
"name": "upload",
"prefix": null,
"basename": "upload"
},
{
"id": "2",
"name": "video",
"prefix": null,
"basename": "video"
}
]
}
},
"list_live_stream": {
"summary": "list (live stream)",
"value": {
"total_count": 2,
"md5": "4933dbf11259adc19fca3b390b0a887e",
"list": [
{
"id": "1",
"name": "HBR1.com - Dream Factory",
"prefix": null,
"basename": "HBR1.com - Dream Factory"
},
{
"id": "2",
"name": "HBR1.com - I.D.M. Tranceponder",
"prefix": null,
"basename": "HBR1.com - I.D.M. Tranceponder"
}
]
}
},
"list_playlist": {
"summary": "list (playlist)",
"value": {
"total_count": 22,
"md5": "6f3116ac4691f7d25f14850e3a5a78c6",
"list": [
{
"id": "smart_21",
"name": "admin - 02/23/2021 14:36:44",
"prefix": null,
"basename": "admin - 02/23/2021 14:36:44"
},
{
"id": "smart_14",
"name": "Album 1*",
"prefix": null,
"basename": "Album 1*"
},
{
"id": "smart_13",
"name": "Album 2*",
"prefix": null,
"basename": "Album 2*"
},
{
"id": "smart_12",
"name": "Album 3*",
"prefix": null,
"basename": "Album 3*"
}
]
}
},
"list_podcast": {
"summary": "list (podcast)",
"value": {
"total_count": 2,
"md5": "f10a2bea1318dba3bc03f946eb4b55e9",
"list": [
{
"id": "1",
"name": "60-Second Science",
"prefix": null,
"basename": "60-Second Science"
},
{
"id": "2",
"name": "Plays Well with Others",
"prefix": null,
"basename": "Plays Well with Others"
}
]
}
},
"list_podcast_episode": {
"summary": "list (podcast episode)",
"value": {
"total_count": 13,
"md5": "2c93b5a8e3cc8f530d0ae595e333ed8c",
"list": [
{
"id": "24",
"name": "Coming Soon",
"prefix": null,
"basename": "Coming Soon"
},
{
"id": "82861",
"name": "Disclosure Day and the science of alien language",
"prefix": null,
"basename": "Disclosure Day and the science of alien language"
},
{
"id": "82857",
"name": "Ebola update, World Cup heat risks, dad brains",
"prefix": null,
"basename": "Ebola update, World Cup heat risks, dad brains"
},
{
"id": "82860",
"name": "From aspiring actress to NASA astrophysicist",
"prefix": null,
"basename": "From aspiring actress to NASA astrophysicist"
}
]
}
},
"list_share": {
"summary": "list (share)",
"value": {
"total_count": 3,
"md5": "c66972e4497a593b4e0ec25ccee35159",
"list": [
{
"id": "2",
"name": "Buried in Nausea (Various Artists)",
"prefix": null,
"basename": "Buried in Nausea (Various Artists)"
},
{
"id": "7",
"name": "Colorsmoke EP (Synthetic)",
"prefix": null,
"basename": "Colorsmoke EP (Synthetic)"
},
{
"id": "1",
"name": "Creeping Lawler 2 (Warfare 3.0)",
"prefix": null,
"basename": "Creeping Lawler 2 (Warfare 3.0)"
}
]
}
},
"list_song": {
"summary": "list (song)",
"value": {
"total_count": 75,
"md5": "38cc7c252d14f4b815afd4b3e1d36da2",
"list": [
{
"id": "115",
"name": "Are we going Crazy",
"prefix": null,
"basename": "Are we going Crazy"
},
{
"id": "107",
"name": "Arrest Me",
"prefix": null,
"basename": "Arrest Me"
},
{
"id": "118",
"name": "As Pure as Possible",
"prefix": null,
"basename": "As Pure as Possible"
},
{
"id": "85",
"name": "Beq Ultra Fat",
"prefix": null,
"basename": "Beq Ultra Fat"
}
]
}
},
"list_song_artist": {
"summary": "list (song artist)",
"value": {
"total_count": 17,
"md5": "1cc46ec050fa1607f7e61249ba3e95e4",
"list": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
{
"id": "27",
"name": "Chi.Otic",
"prefix": null,
"basename": "Chi.Otic"
},
{
"id": "34",
"name": "Comedown Kid",
"prefix": null,
"basename": "Comedown Kid"
},
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
}
]
}
},
"list_video": {
"summary": "list (video)",
"value": {
"total_count": 3,
"md5": "102b23593aecce73b9d9822ded3a181e",
"list": [
{
"id": "5",
"name": "Lisa Simpson playing a Beer Jug as her new instrument-fTGVV_4DNYI",
"prefix": null,
"basename": "Lisa Simpson playing a Beer Jug as her new instrument-fTGVV_4DNYI"
},
{
"id": "2",
"name": "Magic Fly",
"prefix": null,
"basename": "Magic Fly"
},
{
"id": "1",
"name": "SPACE Magic Fly (1977) - https://archive.org/details/SPACE_Magic_Fly_1977",
"prefix": null,
"basename": "SPACE Magic Fly (1977) - https://archive.org/details/SPACE_Magic_Fly_1977"
}
]
}
}
}
}
},
"description": "List response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List id/name/prefix/basename (replacement for get_indexes)",
"tags": [
"Browsing, Indexes and Lists"
],
"operationId": "list",
"description": "This takes a named array of objects and returning `id`, `name`, `prefix` and `basename`"
}
},
"/live-streams": {
"get": {
"parameters": [
{
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "exact",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LiveStreamsResponse"
},
"examples": {
"live_streams": {
"summary": "live streams",
"value": {
"total_count": 2,
"md5": "89fefb193877ee62e29d1da5975dcc47",
"live_stream": [
{
"id": "1",
"name": "HBR1.com - Dream Factory",
"url": "http://ubuntu.hbr1.com:19800/ambient.aac",
"codec": "mp4",
"catalog": "1",
"site_url": "http://www.hbr1.com/"
},
{
"id": "2",
"name": "HBR1.com - I.D.M. Tranceponder",
"url": "http://ubuntu.hbr1.com:19800/trance.ogg",
"codec": "ogg",
"catalog": "1",
"site_url": "http://www.hbr1.com/"
}
]
}
}
}
}
},
"description": "Live stream list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List live streams",
"tags": [
"Live Streams"
],
"operationId": "liveStreams",
"description": "This returns live_streams based on the specified filter"
},
"put": {
"parameters": [
{
"in": "query",
"name": "name",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "url",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "site_url",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "codec",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "catalog",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LiveStreamObject"
},
"examples": {
"live_streams": {
"summary": "live streams",
"value": {
"id": "1",
"name": "HBR1.com - Dream Factory",
"url": "http://ubuntu.hbr1.com:19800/ambient.aac",
"codec": "mp4",
"catalog": "1",
"site_url": "http://www.hbr1.com/"
}
}
}
}
},
"description": "Live stream created"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a live stream (radio station)",
"tags": [
"Live Streams"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LiveStreamCreateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/LiveStreamCreateRequest"
}
}
}
},
"operationId": "liveStreamCreate",
"description": "Create a live_stream (radio station) object."
}
},
"/live-streams/{live_stream_id}": {
"delete": {
"parameters": [
{
"$ref": "#/components/parameters/LiveStreamId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"live_stream": {
"summary": "live stream",
"value": {
"id": "1",
"name": "HBR1.com - Dream Factory",
"url": "http://ubuntu.hbr1.com:19800/ambient.aac",
"codec": "mp4",
"catalog": "1",
"site_url": "http://www.hbr1.com/"
}
}
}
}
},
"description": "Deleted"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Delete a live stream (radio station)",
"tags": [
"Live Streams"
],
"operationId": "liveStreamDelete",
"description": "Delete an existing live_stream (radio station). (if it exists)"
},
"get": {
"parameters": [
{
"$ref": "#/components/parameters/LiveStreamId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LiveStreamObject"
},
"examples": {
"live_stream": {
"summary": "live stream",
"value": {
"id": "1",
"name": "HBR1.com - Dream Factory",
"url": "http://ubuntu.hbr1.com:19800/ambient.aac",
"codec": "mp4",
"catalog": "1",
"site_url": "http://www.hbr1.com/"
}
}
}
}
},
"description": "Live stream object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get live stream by ID",
"tags": [
"Live Streams"
],
"operationId": "liveStream",
"description": "This returns a single live_stream"
},
"patch": {
"parameters": [
{
"$ref": "#/components/parameters/LiveStreamId"
},
{
"in": "query",
"name": "name",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "url",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "site_url",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "codec",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "catalog",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"live_stream": {
"summary": "live stream",
"value": {
"id": "1",
"name": "HBR1.com - Dream Factory",
"url": "http://ubuntu.hbr1.com:19800/ambient.aac",
"codec": "mp4",
"catalog": "1",
"site_url": "http://www.hbr1.com/"
}
}
}
}
},
"description": "Live stream updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Edit a live stream (radio station)",
"tags": [
"Live Streams"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LiveStreamEditRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/LiveStreamEditRequest"
}
}
}
},
"operationId": "liveStreamEdit",
"description": "Edit a live_stream (radio station) object."
}
},
"/live-streams/{live_stream_id}/localplay": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/LiveStreamId"
},
{
"in": "query",
"name": "command",
"required": false,
"schema": {
"enum": [
"add"
],
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"song",
"video",
"podcast_episode",
"broadcast",
"live_stream",
"democratic"
],
"type": "string"
}
},
{
"in": "query",
"name": "clear",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayResponse"
},
"examples": {
"localplay": {
"summary": "localplay",
"value": {
"localplay": {
"command": {
"stop": true
}
}
}
},
"localplay_status": {
"summary": "localplay (status)",
"value": {
"localplay": {
"command": {
"status": {
"state": "stop",
"volume": "100",
"repeat": false,
"random": false,
"track": 2,
"track_title": "Unknown",
"track_artist": "Unknown",
"track_album": "Unknown"
}
}
}
}
}
}
}
},
"description": "Localplay response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Add media to the localplay server",
"tags": [
"Playback Control"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/LocalplayRequest"
}
}
}
},
"operationId": "localplayLiveStreams",
"description": "This is for controlling localplay"
}
},
"/localplay/add": {
"post": {
"parameters": [
{
"in": "query",
"name": "filter",
"description": "Object id",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"song",
"video",
"podcast_episode",
"broadcast",
"live_stream",
"democratic"
],
"type": "string",
"default": "song"
}
},
{
"in": "query",
"name": "clear",
"description": "Clear the current playlist before adding",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayResponse"
},
"examples": {
"localplay": {
"summary": "localplay",
"value": {
"localplay": {
"command": {
"stop": true
}
}
}
}
}
}
},
"description": "Localplay response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Add an object to the localplay server",
"tags": [
"Playback Control"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayLocalplayAddRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/LocalplayLocalplayAddRequest"
}
}
}
},
"operationId": "localplayAdd",
"description": "This is for controlling localplay"
}
},
"/localplay/delete-all": {
"post": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayResponse"
},
"examples": {
"localplay": {
"summary": "localplay",
"value": {
"localplay": {
"command": {
"stop": true
}
}
}
},
"localplay_status": {
"summary": "localplay (status)",
"value": {
"localplay": {
"command": {
"status": {
"state": "stop",
"volume": "100",
"repeat": false,
"random": false,
"track": 2,
"track_title": "Unknown",
"track_artist": "Unknown",
"track_album": "Unknown"
}
}
}
}
}
}
}
},
"description": "Localplay response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Send delete all command to localplay",
"tags": [
"Playback Control"
],
"operationId": "localplayDeleteAll",
"description": "This is for controlling localplay"
}
},
"/localplay/next": {
"post": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayResponse"
},
"examples": {
"localplay": {
"summary": "localplay",
"value": {
"localplay": {
"command": {
"stop": true
}
}
}
},
"localplay_status": {
"summary": "localplay (status)",
"value": {
"localplay": {
"command": {
"status": {
"state": "stop",
"volume": "100",
"repeat": false,
"random": false,
"track": 2,
"track_title": "Unknown",
"track_artist": "Unknown",
"track_album": "Unknown"
}
}
}
}
}
}
}
},
"description": "Localplay response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Send next command to localplay",
"tags": [
"Playback Control"
],
"operationId": "localplayNext",
"description": "This is for controlling localplay"
}
},
"/localplay/pause": {
"post": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayResponse"
},
"examples": {
"localplay": {
"summary": "localplay",
"value": {
"localplay": {
"command": {
"stop": true
}
}
}
},
"localplay_status": {
"summary": "localplay (status)",
"value": {
"localplay": {
"command": {
"status": {
"state": "stop",
"volume": "100",
"repeat": false,
"random": false,
"track": 2,
"track_title": "Unknown",
"track_artist": "Unknown",
"track_album": "Unknown"
}
}
}
}
}
}
}
},
"description": "Localplay response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Send pause command to localplay",
"tags": [
"Playback Control"
],
"operationId": "localplayPause",
"description": "This is for controlling localplay"
}
},
"/localplay/play": {
"post": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayResponse"
},
"examples": {
"localplay": {
"summary": "localplay",
"value": {
"localplay": {
"command": {
"stop": true
}
}
}
},
"localplay_status": {
"summary": "localplay (status)",
"value": {
"localplay": {
"command": {
"status": {
"state": "stop",
"volume": "100",
"repeat": false,
"random": false,
"track": 2,
"track_title": "Unknown",
"track_artist": "Unknown",
"track_album": "Unknown"
}
}
}
}
}
}
}
},
"description": "Localplay response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Send play command to localplay",
"tags": [
"Playback Control"
],
"operationId": "localplayPlay",
"description": "This is for controlling localplay"
}
},
"/localplay/prev": {
"post": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayResponse"
},
"examples": {
"localplay": {
"summary": "localplay",
"value": {
"localplay": {
"command": {
"stop": true
}
}
}
},
"localplay_status": {
"summary": "localplay (status)",
"value": {
"localplay": {
"command": {
"status": {
"state": "stop",
"volume": "100",
"repeat": false,
"random": false,
"track": 2,
"track_title": "Unknown",
"track_artist": "Unknown",
"track_album": "Unknown"
}
}
}
}
}
}
}
},
"description": "Localplay response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Send previous command to localplay",
"tags": [
"Playback Control"
],
"operationId": "localplayPrev",
"description": "This is for controlling localplay"
}
},
"/localplay/skip": {
"post": {
"parameters": [
{
"in": "query",
"name": "track",
"description": "Song number to skip to, starting at 1 (as returned by localplay/songs)",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayResponse"
},
"examples": {
"localplay": {
"summary": "localplay",
"value": {
"localplay": {
"command": {
"stop": true
}
}
}
},
"localplay_status": {
"summary": "localplay (status)",
"value": {
"localplay": {
"command": {
"status": {
"state": "stop",
"volume": "100",
"repeat": false,
"random": false,
"track": 2,
"track_title": "Unknown",
"track_artist": "Unknown",
"track_album": "Unknown"
}
}
}
}
}
}
}
},
"description": "Localplay response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Send skip command to localplay",
"tags": [
"Playback Control"
],
"operationId": "localplaySkip",
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayLocalplaySkipRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/LocalplayLocalplaySkipRequest"
}
}
}
},
"description": "This is for controlling localplay"
}
},
"/localplay/songs": {
"get": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplaySongsResponse"
},
"examples": {
"localplay_songs": {
"summary": "localplay songs",
"value": {
"localplay_songs": [
{
"id": 3,
"raw": "http://music.example.com/play/index.php?ssid=...&oid=3",
"vlid": 1,
"oid": 3,
"name": "Iron Maiden - The Trooper",
"link": "http://music.example.com/song.php?action=show_song&song_id=3",
"track": 1
}
]
}
}
}
}
},
"description": "The current localplay playlist"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get the songs in the localplay instance",
"tags": [
"Localplay"
],
"operationId": "localplaySongsLocalplaySongs",
"description": "Get the list of songs in your localplay instance"
}
},
"/localplay/status": {
"get": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayStatusResponse"
},
"examples": {
"localplay": {
"summary": "localplay",
"value": {
"localplay": {
"command": {
"stop": true
}
}
}
},
"localplay_status": {
"summary": "localplay (status)",
"value": {
"localplay": {
"command": {
"status": {
"state": "stop",
"volume": "100",
"repeat": false,
"random": false,
"track": 2,
"track_title": "Unknown",
"track_artist": "Unknown",
"track_album": "Unknown"
}
}
}
}
}
}
}
},
"description": "Localplay status response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get localplay status",
"tags": [
"Playback Control"
],
"operationId": "localplayStatus",
"description": "This is for controlling localplay"
}
},
"/localplay/stop": {
"post": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayResponse"
},
"examples": {
"localplay": {
"summary": "localplay",
"value": {
"localplay": {
"command": {
"stop": true
}
}
}
},
"localplay_status": {
"summary": "localplay (status)",
"value": {
"localplay": {
"command": {
"status": {
"state": "stop",
"volume": "100",
"repeat": false,
"random": false,
"track": 2,
"track_title": "Unknown",
"track_artist": "Unknown",
"track_album": "Unknown"
}
}
}
}
}
}
}
},
"description": "Localplay response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Send stop command to localplay",
"tags": [
"Playback Control"
],
"operationId": "localplayStop",
"description": "This is for controlling localplay"
}
},
"/localplay/volume-down": {
"post": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayResponse"
},
"examples": {
"localplay": {
"summary": "localplay",
"value": {
"localplay": {
"command": {
"stop": true
}
}
}
},
"localplay_status": {
"summary": "localplay (status)",
"value": {
"localplay": {
"command": {
"status": {
"state": "stop",
"volume": "100",
"repeat": false,
"random": false,
"track": 2,
"track_title": "Unknown",
"track_artist": "Unknown",
"track_album": "Unknown"
}
}
}
}
}
}
}
},
"description": "Localplay response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Send volume down command to localplay",
"tags": [
"Playback Control"
],
"operationId": "localplayVolumeDown",
"description": "This is for controlling localplay"
}
},
"/localplay/volume-mute": {
"post": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayResponse"
},
"examples": {
"localplay": {
"summary": "localplay",
"value": {
"localplay": {
"command": {
"stop": true
}
}
}
},
"localplay_status": {
"summary": "localplay (status)",
"value": {
"localplay": {
"command": {
"status": {
"state": "stop",
"volume": "100",
"repeat": false,
"random": false,
"track": 2,
"track_title": "Unknown",
"track_artist": "Unknown",
"track_album": "Unknown"
}
}
}
}
}
}
}
},
"description": "Localplay response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Send volume mute command to localplay",
"tags": [
"Playback Control"
],
"operationId": "localplayVolumeMute",
"description": "This is for controlling localplay"
}
},
"/localplay/volume-up": {
"post": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayResponse"
},
"examples": {
"localplay": {
"summary": "localplay",
"value": {
"localplay": {
"command": {
"stop": true
}
}
}
},
"localplay_status": {
"summary": "localplay (status)",
"value": {
"localplay": {
"command": {
"status": {
"state": "stop",
"volume": "100",
"repeat": false,
"random": false,
"track": 2,
"track_title": "Unknown",
"track_artist": "Unknown",
"track_album": "Unknown"
}
}
}
}
}
}
}
},
"description": "Localplay response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Send volume up command to localplay",
"tags": [
"Playback Control"
],
"operationId": "localplayVolumeUp",
"description": "This is for controlling localplay"
}
},
"/me": {
"get": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UserObject"
},
"examples": {
"user": {
"summary": "user",
"value": {
"id": "4",
"username": "user",
"auth": "demodemo",
"email": "generic@gmail.com",
"access": 100,
"streamtoken": null,
"fullname_public": false,
"validation": null,
"disabled": false,
"create_date": 1670202701,
"last_seen": 1783644401,
"link": "https://music.com.au/stats.php?action=show_user&user_id=4",
"website": null,
"state": null,
"city": null,
"art": "https://music.com.au/image.php?action=show_user_avatar&object_id=4&object_type=user&name=art.jpg",
"has_art": false,
"fullname": "Some Guy"
}
}
}
}
},
"description": "User array"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get information about your own user account",
"tags": [
"Users"
],
"operationId": "userMe",
"description": "This gets a user's public information."
}
},
"/me/friends-timeline": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/Limit"
},
{
"in": "query",
"name": "since",
"required": true,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TimelineResponse"
},
"examples": {
"friends_timeline": {
"summary": "friends timeline",
"value": {
"activity": [
{
"id": "364",
"date": 1784539942,
"object_type": "song",
"object_id": "97",
"action": "userflag",
"user": {
"id": "4",
"username": "user"
}
},
{
"id": "363",
"date": 1783648366,
"object_type": "user",
"object_id": "4",
"action": "follow",
"user": {
"id": "4",
"username": "user"
}
},
{
"id": "362",
"date": 1783648359,
"object_type": "song",
"object_id": "80",
"action": "userflag",
"user": {
"id": "4",
"username": "user"
}
},
{
"id": "361",
"date": 1783648005,
"object_type": "user",
"object_id": "4",
"action": "follow",
"user": {
"id": "4",
"username": "user"
}
}
]
}
}
}
}
},
"description": "Activity list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get current user's friends timeline",
"tags": [
"Social"
],
"operationId": "friendsTimelineMe",
"description": "This get current user friends timeline"
}
},
"/me/last-shouts": {
"get": {
"parameters": [
{
"in": "query",
"name": "filter",
"required": false,
"description": "Username to filter shouts by",
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "username",
"required": false,
"schema": {
"type": "string"
},
"deprecated": true,
"description": "Deprecated: use `filter` instead. Removed in API9."
},
{
"$ref": "#/components/parameters/Limit"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShoutsResponse"
},
"examples": {
"last_shouts": {
"summary": "last shouts",
"value": {
"shout": [
{
"id": "1",
"date": 1613973947,
"text": "Love this album",
"object_type": "album",
"object_id": "2",
"user": {
"id": "4",
"username": "user"
}
}
]
}
}
}
}
},
"description": "Shout list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get latest shouts",
"tags": [
"Social"
],
"operationId": "lastShoutsMe",
"description": "This gets the latest posted shouts"
}
},
"/me/lost-password": {
"get": {
"parameters": [
{
"in": "query",
"name": "auth",
"required": true,
"schema": {
"type": "string"
},
"description": "One-time password reset token: `sha256(username . sha256(email))`. Not a session token."
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"value": {}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Allows a non-admin user to reset their password without web access to the main site",
"tags": [
"Authentication"
],
"security": [
{}
],
"description": "Sends a new password to the account's email address. The `auth` value here is a one-time reset token (`sha256(username . sha256(email))`), not a session token or API key, which is why no security scheme applies. **Send this as a POST where possible** -- the token is a credential and a GET puts it in server logs, proxy logs and browser history where it can be reused. Note the request also triggers a side effect (the reset email), so avoid link prefetchers.",
"operationId": "lostPasswordMe"
}
},
"/me/now-playing": {
"get": {
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/NowPlayingResponse"
},
"examples": {
"now_playing": {
"summary": "now playing",
"value": {
"now_playing": []
}
}
}
}
},
"description": "Now playing list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get what is currently being played by all users",
"tags": [
"Now Playing"
],
"operationId": "nowPlayingMe",
"description": "Get what is currently being played by all users."
}
},
"/me/playlists": {
"get": {
"parameters": [
{
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "exact",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistsResponse"
},
"examples": {
"user_playlists": {
"summary": "user playlists",
"value": {
"total_count": 2,
"md5": "dc4a1e54d0bc4f9fe19b7bd35d9a6b63",
"playlist": [
{
"id": "65",
"name": "Nofi",
"owner": "user",
"user": {
"id": "4",
"username": "user"
},
"items": 11,
"type": "public",
"art": "https://music.com.au/image.php?object_id=65&object_type=playlist&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 1751265759,
"time": 4423
},
{
"id": "4",
"name": "random - user - private",
"owner": "user",
"user": {
"id": "4",
"username": "user"
},
"items": 43,
"type": "private",
"art": "https://music.com.au/image.php?object_id=4&object_type=playlist&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 1614054938,
"time": 19721
}
]
}
}
}
}
},
"description": "Playlist list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List playlists for the current user context",
"tags": [
"Playlists"
],
"operationId": "userPlaylistsMe",
"description": "This returns playlists based on the specified filter"
}
},
"/me/smartlists": {
"get": {
"parameters": [
{
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "exact",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistsResponse"
},
"examples": {
"user_smartlists": {
"summary": "user smartlists",
"value": {
"total_count": 1,
"md5": "288d9a16e898c6eae1a0a155a64dcc9e",
"playlist": [
{
"id": "smart_22",
"name": "user - 07/18/2024 11:54:12",
"owner": "user",
"user": {
"id": "4",
"username": "user"
},
"items": 0,
"type": "public",
"art": "https://music.com.au/image.php?object_id=22&object_type=search&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 0,
"time": 0
}
]
}
}
}
}
},
"description": "Smartlist list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List smartlists for the current user context",
"tags": [
"Playlists"
],
"operationId": "userSmartlistsMe",
"description": "This returns smartlists based on the specified filter"
}
},
"/ping": {
"get": {
"description": "Returns `server`, `version` and `compatible` without authentication. Authenticating (Bearer token, `auth` header or `auth` query parameter) extends the session and adds the handshake fields to the response.",
"parameters": [
{
"description": "API version the client understands (optional). REST callers should omit it -- the version in the URL path wins; if both are sent and disagree, the path version is used and this parameter is ignored.",
"in": "query",
"name": "version",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PingResponse"
},
"examples": {
"ping": {
"summary": "ping",
"value": {
"session_expire": "2022-08-17T06:21:00+00:00",
"server": "8.0.0",
"version": "8.0.0",
"compatible": "350001",
"auth": "4fee6a03cda90ae4d25c08bc1880a95d",
"streamtoken": null,
"api": "8.0.0",
"update": "2023-05-18T07:13:57+00:00",
"add": "2026-07-10T00:29:13+00:00",
"clean": "2021-08-03T00:05:54+00:00",
"max_song": 135,
"max_album": 21,
"max_artist": 36,
"max_video": 5,
"max_podcast": 2,
"max_podcast_episode": 82866,
"songs": 75,
"albums": 9,
"artists": 18,
"genres": 7,
"playlists": 4,
"searches": 18,
"playlists_searches": 22,
"users": 3,
"catalogs": 4,
"videos": 3,
"podcasts": 2,
"podcast_episodes": 13,
"shares": 3,
"licenses": 14,
"live_streams": 2,
"labels": 4,
"username": "user"
}
}
}
},
"application/xml": {
"schema": {
"type": "string"
}
}
},
"description": "Ping response (contents may vary based on whether authentication is provided)."
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"security": [
{},
{
"BearerAuth": []
},
{
"ApiKeyAuthHeader": []
},
{
"ApiKeyAuthQuery": []
}
],
"summary": "Ping server and get status/version",
"tags": [
"Authentication"
],
"operationId": "ping"
}
},
"/playlist-folders": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistFoldersResponse"
}
}
},
"description": "The folder tree"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List playlist folders",
"tags": [
"Playlist Folders"
],
"description": "A playlist folder organises playlists, smartlists and collections into a private tree. The tree belongs to you alone and is never visible to another user, so filing someone else's public playlist changes nothing for them. The whole tree is returned as a flat list; rebuild the hierarchy from each folder's parent, where 0 is the root.",
"operationId": "playlistFolders"
},
"put": {
"parameters": [
{
"in": "query",
"name": "name",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "parent",
"required": false,
"schema": {
"type": "string"
},
"description": "Parent folder as an id or a name path; the root when omitted"
},
{
"in": "query",
"name": "sort_order",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistFoldersResponse"
}
}
},
"description": "The folder that was created"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a playlist folder",
"tags": [
"Playlist Folders"
],
"description": "Creates an empty folder. The name may not contain a / because that is the path separator, and must be unique among its siblings; the comparison is case-insensitive, so Rock and rock collide.",
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistFolderCreateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/PlaylistFolderCreateRequest"
}
}
}
},
"operationId": "playlistFolderCreate"
}
},
"/playlist-folders/{playlist_folder_id}": {
"delete": {
"parameters": [
{
"in": "path",
"name": "playlist_folder_id",
"required": true,
"schema": {
"type": "string"
},
"description": "The folder, as a numeric id or a name path such as /Rock/Live"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
}
}
},
"description": "Deletion confirmation"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Delete a playlist folder",
"tags": [
"Playlist Folders"
],
"description": "Deletes a folder that holds neither a child folder nor a filed list. The lists themselves are never deleted with it, so a folder is emptied by moving its contents out first.",
"operationId": "playlistFolderDelete"
},
"get": {
"parameters": [
{
"in": "path",
"name": "playlist_folder_id",
"required": true,
"schema": {
"type": "string"
},
"description": "The folder, as a numeric id or a name path such as /Rock/Live"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistFoldersResponse"
}
}
},
"description": "A single playlist folder"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get a playlist folder",
"tags": [
"Playlist Folders"
],
"description": "One folder's own details, without its contents. A folder belonging to another user reports as not found rather than forbidden, so a tree cannot be probed from outside.",
"operationId": "playlistFolder"
},
"patch": {
"parameters": [
{
"in": "path",
"name": "playlist_folder_id",
"required": true,
"schema": {
"type": "string"
},
"description": "The folder, as a numeric id or a name path such as /Rock/Live"
},
{
"in": "query",
"name": "name",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "parent",
"required": false,
"schema": {
"type": "string"
},
"description": "New parent as an id or a name path; 0 for the root"
},
{
"in": "query",
"name": "sort_order",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistFoldersResponse"
}
}
},
"description": "The folder that was updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Edit a playlist folder",
"tags": [
"Playlist Folders"
],
"description": "Renames, re-parents or repositions a folder. Anything not sent is left alone. Moving a folder into its own subtree is refused, because it would detach the branch from the tree.",
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistFolderEditRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/PlaylistFolderEditRequest"
}
}
}
},
"operationId": "playlistFolderEdit"
}
},
"/playlist-folders/{playlist_folder_id}/items": {
"delete": {
"parameters": [
{
"in": "path",
"name": "playlist_folder_id",
"required": true,
"schema": {
"type": "string"
},
"description": "The folder, as a numeric id or a name path such as /Rock/Live"
},
{
"in": "query",
"name": "id",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"playlist",
"smartlist",
"collection"
],
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
}
}
},
"description": "Removal confirmation"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Take a list out of a playlist folder",
"tags": [
"Playlist Folders"
],
"description": "Returns a list to the root. The list itself is untouched; because an unfiled list has no stored placement at all, removing one that was never filed is not an error.",
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistFolderRemoveRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/PlaylistFolderRemoveRequest"
}
}
}
},
"operationId": "playlistFolderRemoveItems"
},
"get": {
"parameters": [
{
"in": "path",
"name": "playlist_folder_id",
"required": true,
"schema": {
"type": "string"
},
"description": "The folder, as a numeric id or a name path such as /Rock/Live"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistFolderItemsResponse"
}
}
},
"description": "The folder and the lists filed in it"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List the contents of a playlist folder",
"tags": [
"Playlist Folders"
],
"description": "The playlists, smartlists and collections filed in one folder. Use 0 as the id for the root, which is not a stored folder: it holds every list you can see that has not been filed elsewhere, so a newly created playlist appears there without anything having been written for it.",
"operationId": "playlistFolderItems"
},
"put": {
"parameters": [
{
"in": "path",
"name": "playlist_folder_id",
"required": true,
"schema": {
"type": "string"
},
"description": "The folder, as a numeric id or a name path such as /Rock/Live"
},
{
"in": "query",
"name": "id",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"playlist",
"smartlist",
"collection"
],
"type": "string"
}
},
{
"in": "query",
"name": "sort_order",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
}
}
},
"description": "Placement confirmation"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "File a list into a playlist folder",
"tags": [
"Playlist Folders"
],
"description": "Files a playlist, smartlist or collection into a folder. A list already filed is moved rather than copied: it sits in exactly one of your folders at a time. Use 0 as the folder id to send it back to the root.",
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistFolderAddRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/PlaylistFolderAddRequest"
}
}
}
},
"operationId": "playlistFolderAddItems"
}
},
"/playlists": {
"get": {
"parameters": [
{
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "hide_search",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "show_dupes",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "exact",
"required": false,
"schema": {
"type": "boolean"
}
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistsResponse"
},
"examples": {
"playlists": {
"summary": "playlists",
"value": {
"total_count": 1,
"md5": "944a9f4dea178d87e8cc3bd19b9fecc6",
"playlist": [
{
"id": "4",
"name": "random - user - private",
"owner": "user",
"user": {
"id": "4",
"username": "user"
},
"items": 43,
"type": "private",
"art": "https://music.com.au/image.php?object_id=4&object_type=playlist&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 1614054938,
"time": 19721
}
]
}
}
}
}
},
"description": "Playlists list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List playlists",
"tags": [
"Playlists"
],
"operationId": "playlists",
"description": "This returns playlists based on the specified filter"
},
"put": {
"parameters": [
{
"in": "query",
"name": "name",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"public",
"private"
],
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistObject"
},
"examples": {
"playlists": {
"summary": "playlists",
"value": {
"id": "4",
"name": "random - user - private",
"owner": "user",
"user": {
"id": "4",
"username": "user"
},
"items": 43,
"type": "private",
"art": "https://music.com.au/image.php?object_id=4&object_type=playlist&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 1614054938,
"time": 19721
}
}
}
}
},
"description": "Playlist created"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a new playlist",
"tags": [
"Playlists"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistCreateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/PlaylistCreateRequest"
}
}
}
},
"operationId": "playlistCreate",
"description": "This create a new playlist and return it"
}
},
"/playlists/search": {
"get": {
"description": "Provide operator plus one or more rule triplets. At minimum, rule_1, rule_1_operator, rule_1_input are required. Additional rules may be supplied as rule_2, rule_2_operator, rule_2_input, etc.",
"operationId": "searchPlaylists",
"parameters": [
{
"$ref": "#/components/parameters/Operator"
},
{
"description": "0, 1 (random order of results; default to 0)",
"in": "query",
"name": "random",
"required": false,
"schema": {
"default": false,
"type": "boolean"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Rule1"
},
{
"$ref": "#/components/parameters/Rule1Operator"
},
{
"$ref": "#/components/parameters/Rule1Input"
},
{
"$ref": "#/components/parameters/Rule2"
},
{
"$ref": "#/components/parameters/Rule2Operator"
},
{
"$ref": "#/components/parameters/Rule2Input"
},
{
"$ref": "#/components/parameters/Rule3"
},
{
"$ref": "#/components/parameters/Rule3Operator"
},
{
"$ref": "#/components/parameters/Rule3Input"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistsResponse"
},
"examples": {
"playlists": {
"summary": "playlists (search results)",
"value": {
"total_count": 1,
"md5": "944a9f4dea178d87e8cc3bd19b9fecc6",
"playlist": [
{
"id": "4",
"name": "random - user - private",
"owner": "user",
"user": {
"id": "4",
"username": "user"
},
"items": 43,
"type": "private",
"art": "https://music.com.au/image.php?object_id=4&object_type=playlist&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 1614054938,
"time": 19721
}
]
}
}
}
}
},
"description": "Search results"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Search for media entities using rule triplets",
"tags": [
"Playlists",
"Search"
]
}
},
"/playlists/stats": {
"get": {
"parameters": [
{
"description": "newest, highest, frequent, recent, forgotten, flagged, random",
"in": "query",
"name": "filter",
"required": true,
"schema": {
"default": "random",
"enum": [
"newest",
"highest",
"frequent",
"recent",
"forgotten",
"flagged",
"random"
],
"type": "string"
}
},
{
"in": "query",
"name": "user_id",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "username",
"required": false,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistsResponse"
},
"examples": {
"success": {
"summary": "success",
"value": {
"total_count": 1,
"md5": "944a9f4dea178d87e8cc3bd19b9fecc6",
"playlist": [
{
"id": "4",
"name": "random - user - private",
"owner": "user",
"user": {
"id": "4",
"username": "user"
},
"items": 43,
"type": "private",
"art": "https://music.com.au/image.php?object_id=4&object_type=playlist&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 1614054938,
"time": 19721
}
]
}
}
}
}
},
"description": "Stats result"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get stats (song/album/artist etc) by type and filter",
"tags": [
"Browsing, Indexes and Lists"
],
"operationId": "statsPlaylists",
"description": "Get some items based on some simple search types and filters. (Random by default) This method **HAD** partial backwards compatibility with older api versions but it has now been removed Pass -1 limit to get all results. (0 will fall back to the `popular_threshold` value)"
}
},
"/playlists/{playlist_id}": {
"delete": {
"parameters": [
{
"$ref": "#/components/parameters/PlaylistId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"playlist": {
"summary": "playlist",
"value": {
"id": "149",
"name": "renamejson",
"owner": "user",
"user": {
"id": "4",
"username": "user"
},
"items": 0,
"type": "private",
"art": "https://music.com.au/image.php?object_id=149&object_type=playlist&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 1784539940,
"time": 0
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Delete a playlist",
"tags": [
"Playlists"
],
"operationId": "playlistDelete",
"description": "This deletes a playlist"
},
"get": {
"parameters": [
{
"$ref": "#/components/parameters/PlaylistId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistObject"
},
"examples": {
"playlist": {
"summary": "playlist",
"value": {
"id": "149",
"name": "renamejson",
"owner": "user",
"user": {
"id": "4",
"username": "user"
},
"items": 0,
"type": "private",
"art": "https://music.com.au/image.php?object_id=149&object_type=playlist&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 1784539940,
"time": 0
}
}
}
}
},
"description": "Playlist response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get a single playlist",
"tags": [
"Playlists"
],
"operationId": "playlist",
"description": "This returns a single playlist"
},
"patch": {
"parameters": [
{
"$ref": "#/components/parameters/PlaylistId"
},
{
"in": "query",
"name": "name",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"public",
"private"
],
"type": "string"
}
},
{
"description": "User id (-1 = System playlist)",
"in": "query",
"name": "owner",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "Comma-separated song_id list",
"in": "query",
"name": "items",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "Comma-separated playlist track numbers matched to items",
"in": "query",
"name": "tracks",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"playlist": {
"summary": "playlist",
"value": {
"id": "149",
"name": "renamejson",
"owner": "user",
"user": {
"id": "4",
"username": "user"
},
"items": 0,
"type": "private",
"art": "https://music.com.au/image.php?object_id=149&object_type=playlist&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 1784539940,
"time": 0
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Edit playlist metadata and items",
"tags": [
"Playlists"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistEditRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/PlaylistEditRequest"
}
}
}
},
"operationId": "playlistEdit",
"description": "This modifies name and type of a playlist Previously name and type were mandatory while filter wasn't. this has been reversed."
}
},
"/playlists/{playlist_id}/add": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/PlaylistId"
},
{
"description": "UID of the object to add to playlist",
"in": "query",
"name": "id",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"song",
"album",
"artist",
"playlist"
],
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "playlist add",
"value": {
"success": "songs added to playlist"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Add an item to a playlist",
"tags": [
"Playlists"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistAddRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/PlaylistAddRequest"
}
}
}
},
"operationId": "playlistAdd",
"description": "This adds a song to a playlist. setting check=1 will not add duplicates to the playlist"
}
},
"/playlists/{playlist_id}/art": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/PlaylistId"
},
{
"description": "widthxheight, e.g. 640x480",
"in": "query",
"name": "size",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "The image itself, written straight to the response body",
"headers": {
"Content-Type": {
"description": "The stored art mime type (e.g. `image/jpeg`, `image/png`)",
"schema": {
"type": "string"
}
},
"Content-Length": {
"description": "Size of the image in bytes",
"schema": {
"type": "integer"
}
},
"Access-Control-Allow-Origin": {
"description": "Always `*`, so art can be loaded cross-origin",
"schema": {
"type": "string"
}
}
},
"content": {
"image/*": {
"schema": {
"type": "string",
"format": "binary"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get art image (binary)",
"tags": [
"Artwork"
],
"operationId": "getArtPlaylists",
"description": "Get an art image."
}
},
"/playlists/{playlist_id}/download": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/PlaylistId"
},
{
"description": "Max bitrate for transcoding in bits per second (e.g 192000 = 192Kb)",
"in": "query",
"name": "bitrate",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "format",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "stats",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"description": "Zip archive of the container's media files (only when `zip=1` is sent for a zipable type)",
"headers": {
"Content-Type": {
"description": "Always `application/zip`",
"schema": {
"type": "string"
}
},
"Content-Disposition": {
"description": "`attachment` with the archive name, RFC 5987 encoded",
"schema": {
"type": "string"
}
}
},
"content": {
"application/zip": {
"schema": {
"type": "string",
"format": "binary"
}
}
}
},
"302": {
"description": "Redirect to the media url; the stream itself is served from the `Location` header",
"headers": {
"Location": {
"description": "Absolute url of the media stream",
"schema": {
"type": "string",
"format": "uri"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"416": {
"description": "Range not satisfiable",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"error4710": {
"$ref": "#/components/examples/error4710"
}
}
}
}
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Download a media file (binary)",
"tags": [
"Streaming and Downloads"
],
"operationId": "downloadPlaylists",
"description": "Downloads a given media file. set format=raw to download the full file"
}
},
"/playlists/{playlist_id}/flag": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/PlaylistId"
},
{
"in": "query",
"name": "flag",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "flag",
"value": {
"success": "flag ADDED to 91"
}
}
}
}
},
"description": "Updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Flag or unflag an item as favourite",
"tags": [
"Ratings and Flags"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FlagRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/FlagRequest"
}
}
}
},
"operationId": "flagPlaylists",
"description": "This flags a library item as a favorite"
}
},
"/playlists/{playlist_id}/hash": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/PlaylistId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistHashResponse"
},
"examples": {
"playlist_hash": {
"summary": "playlist hash",
"value": {
"md5": "d3cdd41f86cb437f69a715e55b245eea"
}
}
}
}
},
"description": "MD5 response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get MD5 hash for playlist songs",
"tags": [
"Playlists"
],
"operationId": "playlistHash",
"description": "This returns the md5 hash for the songs in a playlist"
}
},
"/playlists/{playlist_id}/rate": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/PlaylistId"
},
{
"in": "query",
"name": "rating",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "rate",
"value": {
"success": "rating set to 5 for 91"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Rate a library item",
"tags": [
"Ratings and Flags"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/RateRequest"
}
}
}
},
"operationId": "ratePlaylists",
"description": "This rates a library item"
}
},
"/playlists/{playlist_id}/remove": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/PlaylistId"
},
{
"in": "query",
"name": "id",
"description": "Object id",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"song",
"album",
"artist",
"playlist"
],
"type": "string",
"default": "song"
}
},
{
"in": "query",
"name": "track",
"description": "Track number to remove from the playlist",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "clear",
"description": "Clear the whole playlist",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "playlist remove",
"value": {
"success": "song removed from playlist"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Remove an object (by id and type, or track number, or clear) from a playlist",
"tags": [
"Playlists"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistRemoveRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/PlaylistRemoveRequest"
}
}
}
},
"operationId": "playlistRemove",
"description": "Remove objects from a playlist using track number in the list or object id and type. Using clear will empty the entire list."
}
},
"/playlists/{playlist_id}/remove-song": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/PlaylistId"
},
{
"in": "query",
"name": "song",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "track",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "playlist remove song",
"value": {
"success": "song removed from playlist"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Remove a song (or track) from a playlist",
"tags": [
"Playlists"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistRemoveSongRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/PlaylistRemoveSongRequest"
}
}
}
},
"operationId": "playlistRemoveSong",
"description": "Remove objects from a playlist using track number in the list or object id and type. Using clear will empty the entire list."
}
},
"/playlists/{playlist_id}/share": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/PlaylistId"
},
{
"in": "query",
"name": "description",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "days to keep active",
"in": "query",
"name": "expires",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareObject"
},
"examples": {
"share": {
"summary": "share",
"value": {
"id": "1",
"name": "Creeping Lawler 2",
"owner": "user",
"allow_stream": true,
"allow_download": false,
"creation_date": 1670202706,
"lastvisit_date": 1614129643,
"object_type": "album",
"object_id": "9",
"expire_days": 0,
"max_counter": 0,
"counter": 1,
"secret": "GJ7EzBPT",
"public_url": "https://music.com.au/share.php?id=1&secret=GJ7EzBPT",
"description": "Creeping Lawler 2 (Warfare 3.0)"
}
}
}
}
},
"description": "Share created"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a public share URL",
"tags": [
"Shares"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareCreateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/ShareCreateRequest"
}
}
}
},
"operationId": "shareCreatePlaylists",
"description": "Create a public url that can be used by anyone to stream media. Takes the file id with optional description and expires parameters."
}
},
"/playlists/{playlist_id}/songs": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/PlaylistId"
},
{
"in": "query",
"name": "random",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SongsResponse"
},
"examples": {
"playlist_songs": {
"summary": "playlist songs",
"value": {
"total_count": 42,
"md5": "cd07bc5fbb32fcaafd5c675ae26651b2",
"song": [
{
"id": "91",
"title": "Home Capsules",
"name": "Home Capsules",
"artist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"artists": [
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
}
],
"album": {
"id": "8",
"name": "Nofi Devices",
"prefix": null,
"basename": "Nofi Devices"
},
"albumartist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"disk": 1,
"disksubtitle": null,
"track": 9,
"filename": "/mnt/files-music/ampache-test/music/Nofi_found/Nofi Devices LP/09_Home_Capsules.mp3",
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"playlisttrack": 1,
"time": 294,
"year": 0,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 192000,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "cbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=91&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Nofi-found.%20-%20Home%20Capsules.mp3",
"size": 7076428,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=8&object_type=album&id=450&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": "Jeffrey Melton",
"channels": 2,
"comment": "8A114B0B+332232+11+150+3703+28283+76364+107382+132131+156082+177051+217892+239975+285087",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -2.97,
"replaygain_track_peak": 1,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "101",
"title": "Rehearsal Tape (1996)",
"name": "Rehearsal Tape (1996)",
"artist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"artists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"album": {
"id": "10",
"name": "CARNÚN - MALKUTH (Demo 1996)",
"prefix": null,
"basename": "CARNÚN - MALKUTH (Demo 1996)"
},
"albumartist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"disk": 1,
"disksubtitle": null,
"track": 9,
"filename": "/mnt/files-music/ampache-test/music/Carnún/Malkuth (Demo1996)/09RehearsalTape1996.ogg",
"genre": [],
"playlisttrack": 2,
"time": 980,
"year": 1996,
"format": "ogg",
"stream_format": "mp3",
"bitrate": 66912,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "application/ogg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=101&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=CARN-N%20-%20Rehearsal%20Tape%20-1996-.mp3",
"size": 8219821,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=10&object_type=album&id=63&name=art.jpg",
"has_art": true,
"flag": false,
"rating": 5,
"averagerating": null,
"playcount": 1,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "Visit http://irish-metal.bandcamp.com;http://archive.org/details/Carnn_-_Malkuth_Demo1996",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -9.56,
"replaygain_track_peak": 1,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "62",
"title": "PurpleSmoke",
"name": "PurpleSmoke",
"artist": {
"id": "2",
"name": "Synthetic",
"prefix": null,
"basename": "Synthetic"
},
"artists": [
{
"id": "2",
"name": "Synthetic",
"prefix": null,
"basename": "Synthetic"
}
],
"album": {
"id": "2",
"name": "Colorsmoke EP",
"prefix": null,
"basename": "Colorsmoke EP"
},
"albumartist": {
"id": "2",
"name": "Synthetic",
"prefix": null,
"basename": "Synthetic"
},
"disk": 1,
"disksubtitle": null,
"track": 3,
"filename": "/mnt/files-music/ampache-test/music/Synthetic/Synthetic_-_Colorsmoke_EP-20k217-2007/03-Synthetic_-_PurpleSmokeVMix20k22khS2.wma",
"genre": [
{
"id": "1",
"name": "Electronic"
}
],
"playlisttrack": 3,
"time": 390,
"year": 2007,
"format": "wma",
"stream_format": "mp3",
"bitrate": 20627,
"stream_bitrate": 32000,
"rate": 22050,
"mode": "cbr",
"mime": "audio/x-ms-wma",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=62&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Synthetic%20-%20PurpleSmoke.mp3",
"size": 1014135,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=2&object_type=album&id=427&name=art.jpg",
"has_art": true,
"flag": false,
"rating": 5,
"averagerating": null,
"playcount": 1,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "Made with Sony ACID 5",
"license": null,
"publisher": "20kbps rec.",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": null,
"replaygain_track_peak": null,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "89",
"title": "Stolen",
"name": "Stolen",
"artist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"artists": [
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
}
],
"album": {
"id": "8",
"name": "Nofi Devices",
"prefix": null,
"basename": "Nofi Devices"
},
"albumartist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"disk": 1,
"disksubtitle": null,
"track": 11,
"filename": "/mnt/files-music/ampache-test/music/Nofi_found/Nofi Devices LP/11_Stolen.mp3",
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"playlisttrack": 4,
"time": 628,
"year": 0,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 192000,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "cbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=89&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Nofi-found.%20-%20Stolen.mp3",
"size": 15100325,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=8&object_type=album&id=450&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": "Jeffrey Melton",
"channels": 2,
"comment": "8A114B0B+332232+11+150+3703+28283+76364+107382+132131+156082+177051+217892+239975+285087",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": 2.66,
"replaygain_track_peak": 0.989,
"r128_album_gain": null,
"r128_track_gain": null
}
]
}
}
}
}
},
"description": "Song list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get songs for a playlist",
"tags": [
"Playlists",
"Songs"
],
"operationId": "playlistSongs",
"description": "This returns the songs for a playlist"
}
},
"/playlists/{playlist_id}/stream": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/PlaylistId"
},
{
"description": "Max bitrate for transcoding in bits per second (e.g 192000 = 192Kb)",
"in": "query",
"name": "bitrate",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "format",
"required": false,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"in": "query",
"name": "length",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"in": "query",
"name": "stats",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"302": {
"description": "Redirect to the media url; the stream itself is served from the `Location` header",
"headers": {
"Location": {
"description": "Absolute url of the media stream",
"schema": {
"type": "string",
"format": "uri"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"416": {
"description": "Range not satisfiable",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"error4710": {
"$ref": "#/components/examples/error4710"
}
}
}
}
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Stream a media file (binary)",
"tags": [
"Streaming and Downloads"
],
"operationId": "streamPlaylists",
"description": "Streams a given media file. Takes the file id in parameter with optional max bit rate, file format, time offset, size and estimate content length option."
}
},
"/podcast-episodes": {
"get": {
"parameters": [
{
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PodcastEpisodesResponse"
},
"examples": {
"podcast_episodes": {
"summary": "podcast episodes",
"value": {
"total_count": 10,
"md5": "89cf7a2c3e6dc91f99556cd856b6faa2",
"podcast_episode": [
{
"id": "82857",
"title": "Ebola update, World Cup heat risks, dad brains",
"name": "Ebola update, World Cup heat risks, dad brains",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode of Science Quickly, we start with a quick update on the Ebola outbreak surging in parts of Africa. Host Rachel Feltman is then joined by Scientific American’s senior desk editor for life science Andrea Thompson to discuss what rising temperatures mean for the FIFA World Cup currently underway in North America. And finally, in honor of Father’s Day, SciAm’s senior desk editor for health and medicine Tanya Lewis gives us a glimpse into the often overlooked science of how fatherhood changes the brain.\n\n\n\nRecommended Reading:\n\n\n\nJust how big is the new Ebola outbreak?\n\n\n\nThe World Cup is battling extreme heat. Which cooling methods really work?\n\n\n\nThe Science of the 2026 World Cup\n\n\n\nHow becoming a dad changes men’s brains\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-22T09:50:00+00:00",
"state": "completed",
"filelength": "00:12:25",
"filesize": "17.33 MB",
"filename": "60-Second Science - Ebola update, World Cup heat risks, dad brains.mp3",
"mime": "audio/mpeg",
"time": 745,
"size": 18170164,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82857",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82857&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20Ebola%20update-%20World%20Cup%20heat%20risks-%20dad%20brains.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
},
{
"id": "82858",
"title": "How common viruses could quietly raise your cancer risk",
"name": "How common viruses could quietly raise your cancer risk",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode of Science Quickly, one of SciAm’s Young American Scientists, biologist Jaye Gardiner, explores how common viral infections may raise cancer risk—not just through genetic mutations but by reshaping the body’s “extracellular matrix” of molecules that support cells and tissues. She explains how viruses can alter the extracellular matrix, potentially creating conditions that allow tumors to grow, and why this emerging view could change how we think about everything from colds to long COVID.\n\n\n\nRecommended Reading:\n\nJaye Gardiner’s Young American Scientists profile\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\n\n\n\nThis episode is part of “The Young American Scientists,” an editorially independent project that was produced with financial support from Regeneron. \nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-19T09:50:00+00:00",
"state": "completed",
"filelength": "00:14:49",
"filesize": "20.62 MB",
"filename": "60-Second Science - How common viruses could quietly raise your cancer risk.mp3",
"mime": "audio/mpeg",
"time": 889,
"size": 21621015,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82858",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82858&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20How%20common%20viruses%20could%20quietly%20raise%20your%20cancer%20risk.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
},
{
"id": "82859",
"title": "The neuroscientist decoding how the brain learns",
"name": "The neuroscientist decoding how the brain learns",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode, host Rachel Feltman interviews neuroscientist Kauê M. Costa, who is among Scientific American’s inaugural cohort of Young American Scientists honorees. Costa shares how being surprised by experiments has led him to new ways of thinking about learning in the brain. He explains how dopamine does more than signal reward, how there are two big frameworks of how the brain learns and how his findings could help us better understand—and treat—mental illness.\n\n\n\nRecommended Reading:\n\n\n\nThe Young American Scientists\n\n\n\nKauê M. Costa’s Young American Scientists profile\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Aaron Shattuck. Our theme music was composed by Dominic Smith.\n\n\n\nThis episode is part of “The Young American Scientists,” an editorially independent project that was produced with financial support from Regeneron.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-17T09:50:00+00:00",
"state": "completed",
"filelength": "00:18:38",
"filesize": "25.85 MB",
"filename": "60-Second Science - The neuroscientist decoding how the brain learns.mp3",
"mime": "audio/mpeg",
"time": 1118,
"size": 27104993,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82859",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82859&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20The%20neuroscientist%20decoding%20how%20the%20brain%20learns.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
},
{
"id": "82860",
"title": "From aspiring actress to NASA astrophysicist",
"name": "From aspiring actress to NASA astrophysicist",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode of Science Quickly, host Rachel Feltman interviews NASA astrophysicist Erini Lambrides about her unconventional journey from pursuing the performing arts to studying supermassive black holes. Lambrides reflects on how curiosity, persistence through early struggles in physics and a background in acting shaped her scientific approach and mentoring philosophy. \n\n\n\nRecommended Reading:\n\n\n\nYoung American Scientists\n\n\n\nProfile: Erini Lambrides\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\n\n\n\nThis episode is part of “The Young American Scientists,” an editorially independent project that was produced with financial support from Regeneron.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-15T09:50:00+00:00",
"state": "completed",
"filelength": "00:22:05",
"filesize": "30.6 MB",
"filename": "60-Second Science - From aspiring actress to NASA astrophysicist.mp3",
"mime": "audio/mpeg",
"time": 1325,
"size": 32083240,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82860",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82860&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20From%20aspiring%20actress%20to%20NASA%20astrophysicist.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
}
]
}
}
}
}
},
"description": "Podcast Episode list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List podcast episodes",
"tags": [
"Podcasts"
],
"operationId": "podcastEpisodesPodcastEpisodes",
"description": "This returns the episodes for a podcast"
}
},
"/podcast-episodes/deleted": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DeletedPodcastEpisodesResponse"
},
"examples": {
"deleted_podcast_episodes": {
"summary": "deleted podcast episodes",
"value": {
"total_count": 94545,
"md5": "c8699673de549762675e743efed0447a",
"deleted_podcast_episode": [
{
"id": "44",
"addition_time": 1617170872,
"delete_time": 1627948508,
"title": "COVID, Quickly, Episode 3: Vaccine Inequality--plus Your Body the Variant Fighter",
"file": "/media/podcast/60-Second Science/1616779800-COVID, Quickly, Episode 3: Vaccine Inequality--plus Your Body the Variant Fighter-podcast.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "45",
"addition_time": 1617170872,
"delete_time": 1627948508,
"title": "Using Dragonflies as Contamination Detectors",
"file": "/media/podcast/60-Second Science/1616587200-Using Dragonflies as Contamination Detectors-podcast.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "46",
"addition_time": 1617170872,
"delete_time": 1627948508,
"title": "Smartphones Can Hear the Shape of Your Door Keys",
"file": "/media/podcast/60-Second Science/1616068800-Smartphones Can Hear the Shape of Your Door Keys-podcast.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "47",
"addition_time": 1617170872,
"delete_time": 1627948508,
"title": "Chimpanzees Show Altruism while Gathering around the Juice Fountain",
"file": "/media/podcast/60-Second Science/1615897800-Chimpanzees Show Altruism while Gathering around the Juice Fountain-podcast.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "48",
"addition_time": 1617170872,
"delete_time": 1627948508,
"title": "Podcast Feed Drop: Introducing Powered by Audio [Sponsored]",
"file": "/media/podcast/60-Second Science/1615824000-Podcast Feed Drop: Introducing Powered by Audio [Sponsored]-podcast.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "49",
"addition_time": 1617170872,
"delete_time": 1627948508,
"title": "COVID, Quickly, Episode 2: Lessons from a Pandemic Year",
"file": "/media/podcast/60-Second Science/1615503600-COVID, Quickly, Episode 2: Lessons from a Pandemic Year-podcast.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "50",
"addition_time": 1617170872,
"delete_time": 1627948508,
"title": "That Mouse in Your House--It's Smarter, Thanks to You",
"file": "/media/podcast/60-Second Science/1615294800-That Mouse in Your House--It's Smarter, Thanks to You-podcast.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "51",
"addition_time": 1617170872,
"delete_time": 1627948508,
"title": "Kangaroos with Puppy Dog Eyes",
"file": "/media/podcast/60-Second Science/1614870000-Kangaroos with Puppy Dog Eyes-podcast.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "52",
"addition_time": 1617170872,
"delete_time": 1627948508,
"title": "COVID, Quickly, Episode 1: Vaccines, Variants and Diabetes",
"file": "/media/podcast/60-Second Science/1614358800-COVID, Quickly, Episode 1: Vaccines, Variants and Diabetes-podcast.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "73",
"addition_time": 1617260601,
"delete_time": 1627948508,
"title": "Imperiled Freshwater Turtles Are Eating Plastics--Science Is Just Revealing the Threat",
"file": "/media/podcast/60-Second Science/1617192000-Imperiled Freshwater Turtles Are Eating Plastics--Science Is Just Revealing the Threat-podcast.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "74",
"addition_time": 1627948502,
"delete_time": 1627949127,
"title": "S2 BONUS — The Price",
"file": "/media/podcast/Trace/1608127260-S2 BONUS — The Price-tre_20201217_s2e9_the_price.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "75",
"addition_time": 1627948502,
"delete_time": 1627949127,
"title": "S2 08 | End game",
"file": "/media/podcast/Trace/1600700400-S2 08 | End game-tre_20200922_s2e8_end_game.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "76",
"addition_time": 1627948502,
"delete_time": 1627949127,
"title": "S2 07 | Reckoning",
"file": "/media/podcast/Trace/1600095660-S2 07 | Reckoning-tre_20200915_s2e7_reckoning.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "77",
"addition_time": 1627948502,
"delete_time": 1627949127,
"title": "S2 06 | Whatever it takes",
"file": "/media/podcast/Trace/1599490800-S2 06 | Whatever it takes-tre_20200908_s2e6_what_ever_it_takes.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "78",
"addition_time": 1627948502,
"delete_time": 1627949127,
"title": "S2 05 | Glittering prize",
"file": "/media/podcast/Trace/1598886000-S2 05 | Glittering prize-tre_20200901_s2e5_glittering_prize.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "79",
"addition_time": 1627948502,
"delete_time": 1627949127,
"title": "S2 04 | Rubicon",
"file": "/media/podcast/Trace/1598281200-S2 04 | Rubicon-tre_20200825_s2e4_rubicon.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "80",
"addition_time": 1627948502,
"delete_time": 1627949127,
"title": "S2 03 | The darkest night",
"file": "/media/podcast/Trace/1597676400-S2 03 | The darkest night-tre_20200818_s2e3_the_darkest_night.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "81",
"addition_time": 1627948502,
"delete_time": 1627949127,
"title": "S2 02 | One of the crew",
"file": "/media/podcast/Trace/1597071600-S2 02 | One of the crew-tre_20200811_s2e2_one_of_the_crew.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "82",
"addition_time": 1627948502,
"delete_time": 1627949127,
"title": "S2 01 | Nicola",
"file": "/media/podcast/Trace/1596475800-S2 01 | Nicola-tre_20200804_s2e1_nicola.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "83",
"addition_time": 1627948502,
"delete_time": 1627949127,
"title": "INTRODUCING Trace season 2 - The Informer",
"file": "/media/podcast/Trace/1595862000-INTRODUCING Trace season 2 - The Informer-tre_20200728_s2e0_the_informer.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "84",
"addition_time": 1627948502,
"delete_time": 1627948502,
"title": "S1 07 | Hope",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "85",
"addition_time": 1627948502,
"delete_time": 1627948502,
"title": "S1 06 | Limbo",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "86",
"addition_time": 1627948502,
"delete_time": 1627948502,
"title": "S1 05 | Wait",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "87",
"addition_time": 1627948502,
"delete_time": 1627948503,
"title": "S1 04 | DNA",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "88",
"addition_time": 1627948502,
"delete_time": 1627948503,
"title": "S1 03 | Sins",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "89",
"addition_time": 1627948502,
"delete_time": 1627948503,
"title": "BONUS | How your leads are helping the investigation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "90",
"addition_time": 1627948502,
"delete_time": 1627948503,
"title": "S1 02 | Confessions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "91",
"addition_time": 1627948502,
"delete_time": 1627948503,
"title": "S1 01 | Bookshop murder",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "92",
"addition_time": 1627948502,
"delete_time": 1627948503,
"title": "S1 | Preview",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "5"
},
{
"id": "93",
"addition_time": 1627948504,
"delete_time": 1751279399,
"title": "COVID, Quickly, Episode 12: Masking Up Again and Why People Refuse Shots",
"file": "/media/podcast/60-Second Science/1627664400-COVID, Quickly, Episode 12: Masking Up Again and Why People Refuse Shots-podcast.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "94",
"addition_time": 1627948504,
"delete_time": 1751279399,
"title": "The Kavli Prize Presents: Understanding Touch [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "95",
"addition_time": 1627948504,
"delete_time": 1751279399,
"title": "Moths Have an Acoustic Invisibility Cloak to Stay under Bats' Radar",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "96",
"addition_time": 1627948504,
"delete_time": 1751279399,
"title": "COVID, Quickly, Episode 11: Vaccine Booster Shots, and Reopening Offices Safely",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "97",
"addition_time": 1627948504,
"delete_time": 1751279399,
"title": "Your Brain Does Something Amazing between Bouts of Intense Learning",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "98",
"addition_time": 1627948504,
"delete_time": 1751279399,
"title": "COVID, Quickly, Episode 10: Long Haulers, Delta Woes and Barbershop Shots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "99",
"addition_time": 1627948504,
"delete_time": 1751279399,
"title": "COVID, Quickly, Episode 9: Delta Variant, Global Vaccine Shortfalls, Beers for Shots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "100",
"addition_time": 1627948504,
"delete_time": 1751279399,
"title": "This Newly Discovered Species of Tree Hyrax Goes Bark in the Night",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "101",
"addition_time": 1627948504,
"delete_time": 1751279399,
"title": "Animal Kids Listen to Their Parents Even before Birth",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "102",
"addition_time": 1627948504,
"delete_time": 1751279399,
"title": "For African Elephants, Pee Could Be a Potent Trail Marker",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "103",
"addition_time": 1627948504,
"delete_time": 1627948508,
"title": "A 'Universal' Coronavirus Vaccine to Prevent the Next Pandemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "104",
"addition_time": 1627948504,
"delete_time": 1627948508,
"title": "COVID, Quickly, Episode 8: The Pandemic's True Death Toll and the Big Lab-Leak Debate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "105",
"addition_time": 1627948504,
"delete_time": 1627948508,
"title": "Puppies Understand You Even at a Young Age, Most Adorable Study of the Year Confirms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "106",
"addition_time": 1627948504,
"delete_time": 1627948508,
"title": "New 3-D-Printed Material Is Tough, Flexible--and Alive",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "107",
"addition_time": 1627948504,
"delete_time": 1627948508,
"title": "Bats on Helium Reveal an Innate Sense of the Speed of Sound",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "108",
"addition_time": 1627948504,
"delete_time": 1627948508,
"title": "The Dirty Secret behind Some of the World's Earliest Microscopes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "109",
"addition_time": 1627948504,
"delete_time": 1627948508,
"title": "COVID, Quickly, Episode 7: The Coming Pandemic Grief Wave, and Mask Whiplash",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "110",
"addition_time": 1627948504,
"delete_time": 1627948508,
"title": "Math and Sleuthing Help to Explain Epidemics of the Past",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "111",
"addition_time": 1627948504,
"delete_time": 1627948508,
"title": "Who Laps Whom on the Walking Track--Tyrannosaurus rex or You? Science Has a New Answer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "112",
"addition_time": 1627948504,
"delete_time": 1627948508,
"title": "Artificial Light Keeps Mosquitoes Biting Late into the Night",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "113",
"addition_time": 1627948504,
"delete_time": 1627948508,
"title": "COVID, Quickly, Episode 6: The Real Reason for India's Surge and Mask Liftoff",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "114",
"addition_time": 1627948504,
"delete_time": 1627948508,
"title": "Male Lyrebirds Lie to Get Sex",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "115",
"addition_time": 1751279393,
"delete_time": 1751279393,
"title": "She's Alive!",
"file": "/media/podcast/Dolly Parton's America/1577811600-115.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "6"
},
{
"id": "116",
"addition_time": 1751279393,
"delete_time": 1751279393,
"title": "Traveling Creatures: live music from the series",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "6"
},
{
"id": "117",
"addition_time": 1751279393,
"delete_time": 1751279393,
"title": "Dixie Disappearance",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "6"
},
{
"id": "118",
"addition_time": 1751279393,
"delete_time": 1751279393,
"title": "Dolly Parton's America",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "6"
},
{
"id": "119",
"addition_time": 1751279393,
"delete_time": 1751279393,
"title": "Dolly's Wildflowers: live music from the series",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "6"
},
{
"id": "120",
"addition_time": 1751279393,
"delete_time": 1751279393,
"title": "The Only One For Me, Jolene",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "6"
},
{
"id": "121",
"addition_time": 1751279393,
"delete_time": 1751279393,
"title": "Dollitics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "6"
},
{
"id": "122",
"addition_time": 1751279393,
"delete_time": 1751279393,
"title": "Neon Moss",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "6"
},
{
"id": "123",
"addition_time": 1751279393,
"delete_time": 1751279393,
"title": "Tennessee Mountain Trance",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "6"
},
{
"id": "124",
"addition_time": 1751279393,
"delete_time": 1751279393,
"title": "I Will Always Leave You",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "6"
},
{
"id": "125",
"addition_time": 1751279393,
"delete_time": 1751279393,
"title": "Sad Ass Songs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "6"
},
{
"id": "126",
"addition_time": 1751279393,
"delete_time": 1751279393,
"title": "Dolly Parton's America Trailer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "6"
},
{
"id": "127",
"addition_time": 1751279397,
"delete_time": 1783643475,
"title": "How to Fight Bird Flu If It Becomes the Next Human Pandemic (Part 3)",
"file": "/media/podcast/60-Second Science/1751018100-127.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "128",
"addition_time": 1751279397,
"delete_time": 1783643475,
"title": " Bird Flu’s Jump to Cattle Took Dairy Farmers by Surprise (Part 2)",
"file": "/media/podcast/60-Second Science/1750845000-128.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "129",
"addition_time": 1751279397,
"delete_time": 1783643475,
"title": "How Bird Flu Went from an Isolated Avian Illness to a Human Pandemic Threat (Part 1)",
"file": "/media/podcast/60-Second Science/1750672200-129.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "130",
"addition_time": 1751279397,
"delete_time": 1783643475,
"title": "What No One Tells You about Testosterone Replacement Therapy",
"file": "/media/podcast/60-Second Science/1750413000-130.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "131",
"addition_time": 1751279397,
"delete_time": 1783643475,
"title": "Why Your Gut Loves a Good Workout",
"file": "/media/podcast/60-Second Science/1750240200-131.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "132",
"addition_time": 1751279397,
"delete_time": 1783643475,
"title": "CDC Vaccine Panel Fired by RFK, Jr., Oceans Grow More Acidic, and Pangolins Threatened by Hunting",
"file": "/media/podcast/60-Second Science/1750067400-132.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "133",
"addition_time": 1751279397,
"delete_time": 1783643475,
"title": "These Adorable Hamster Dads Take Fatherhood Seriously",
"file": "/media/podcast/60-Second Science/1749808500-133.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "134",
"addition_time": 1751279397,
"delete_time": 1783643475,
"title": "What ‘Immortal’ Jellyfish and Famously Old Tortoises Tell Us about Aging",
"file": "/media/podcast/60-Second Science/1749635400-134.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "135",
"addition_time": 1751279397,
"delete_time": 1783643475,
"title": "Cosmic Coin Toss, Record Heat in the North Atlantic and Living Worm Towers",
"file": "/media/podcast/60-Second Science/1749462600-135.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "136",
"addition_time": 1751279397,
"delete_time": 1751339904,
"title": "Is the National Weather Service Ready for an Extreme Summer?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "137",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Megalodon Diets, Teeth Sensitivity and a Bunch of Vaccine News",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "138",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": " Are You Flourishing? This Global Study Has Surprising Takeaways",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "139",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Diagnosing Male Infertility with a Mechanical Engineering Twist",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "140",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Could We Speak to Dolphins? A Promising LLM Makes That a Possibility",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "141",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": " Do Mitochondria Talk to Each Other? A New Look at the Cell’s Powerhouse",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "142",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How to Make Gold, Flamingo Food Tornado, and Kosmos-482 Lands",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "143",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": " Could Freezing Arctic Sea Ice Combat Climate Change?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "144",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How a West Texas Outbreak Threatens Measles Elimination Status",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "145",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Sinking Cities, Waving Cuttlefish and Falling Spacecraft",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "146",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "This Podcast Was Recorded Inside a Particle Collider",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "147",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Rejecting Toxic Fitness Culture with Casey Johnston",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "148",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Jupiter’s Cyclones, Amazon’s Satellites and T. rex Collagen",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "149",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": " The Fungi Facing Extinction and the Conservationists Working Hard to Protect Them",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "150",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Griefbots Offer AI Connections with Deceased Loved Ones",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "151",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Scientific American in 1925: Solar Eclipses, Seances and Some Strange Inventions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "152",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How to Become an Urban Naturalist",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "153",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": " Our Fear and Fascination around Snakes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "154",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Childhood Illnesses Surge, Magnetic Poles Wandered, and a Colossal Squid Is Found",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "155",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": " From the Internet’s Beginnings to Our Understanding of Consciousness, This Editor Has Seen It All",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "156",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Disinfectant That’s More Powerful Than Bleach—And Safe for Your Skin",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "157",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Long Day on Uranus, a Better Method of Making Coffee and Dinos Fossils in Decline",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "158",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Are Prenatal Blood Tests Detecting Cancer?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "159",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Treating Bacterial Vaginosis as an STI Could Improve Outcomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "160",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How the Science of Safety Helps Tackle Global Risks [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "161",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Yodeling Monkeys, Increasing Measles Cases and Stressed Out Americans",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "162",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Cutting USAID Threatens Public Health around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "163",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Understanding the Science of ‘Squirting’",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "164",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Shark Sounds, Molecules on Mars and Continued Federal Cuts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "165",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Go Inside M.I.T.'s 50,000 Square Foot Clean Room",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "166",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Are These Plants Out of Place? A New Look at Invasive Species",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "167",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": " NASA Astronauts Finally Return, Seals Hold Their Breath, and Penguin Poop Stresses Out Krill",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "168",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Severance’s Consulting Neurosurgeon Explains the Science behind the Show’s Brain Procedure",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "169",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": " What Everyone Gets Wrong about Colonoscopies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "170",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "NASA Launches New Missions, Saturn Gains Some Moons, and Whale Urine Balances Marine Ecosystems",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "171",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Movie Magic Meets Practical Robotics for Netflix’s The Electric State",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "172",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Tuberculosis Outbreak Exposes U.S. Postpandemic Vulnerabilities ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "173",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Measles Misinformation, Ozone Recovery and Woolly Mice",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "174",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Author John Green on How Tuberculosis Shaped Our Modern World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "175",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Must Be Microplastics on the Brain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "176",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Did a Volcano Turn a Brain to Glass? Plus, Measles, Mystery Illness and Microbes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "177",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Why Do Songs Get Stuck in Your Head?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "178",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": " Saying Farewell to the Spacecraft That Mapped the Milky Way",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "179",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": " Measles Outbreaks, Asteroid Risks and Fish Friends",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "180",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Where Did Curly Hair Come From? Biological Anthropology May Provide Insights",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "181",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Exploring the Hidden Life in the Air around Us with Carl Zimmer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "182",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Valentine’s Day Isn’t Just for Romance—The Science of Deep Friendships",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "183",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "An Asteroid May Hit Earth in 2032. What Can We Do about It?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "184",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Microplastics on the Mind, Superstrong Shrimp and Bird Flu Transmission",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "185",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Trump’s Executive Orders Create Confusion for Researchers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "186",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Avoiding Outrage Fatigue in Overwhelming Times",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "187",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Tuberculosis Outbreak, RFK, Jr.’s Confirmation Hearings and Polar Bear Hair",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "188",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": " Are You Tired of Feeling Cynical? Hopeful Skepticism Could Be a Way Out",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "189",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science Will Stare Directly Into the Sun--And Love It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "190",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "WHO Withdrawal, Bird Flu Updates and a Link between Fitness and Treatment Outcomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "191",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Combatting Climate Anxiety through Community Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "192",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "What the End of U.S. Net Neutrality Means For You",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "193",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Health Risks of Alcohol, a Red Dye Ban and Commercial Space Flights",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "194",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Do Pain and Joy Have a Universal Language?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "195",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How the U.S. Mishandled the Early Days of Bird Flu",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "196",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Outbreaks of Norovirus, a Death from Bird Flu and Wildfires in L.A.",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "197",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Finding Pluto’s Potential Replacement with a Giant New Telescope",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "198",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Going Outside Can Change Our Hormones and Improve Microbiome Diversity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "199",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Farewell to 2024, and What We’re Following in the New Year",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "200",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The New Conservationists: Thanks to Conservation Efforts, Pandas, Wolves and Panthers Are Making a Comeback (Part 4)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "201",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The New Conservationists: Meet the Next Generation of Conservationists (Part 3)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "202",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The New Conservationists: AI is Making Meaning from the Sounds and Visuals of Wildlife (Part 2)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "203",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The New Conservationists: Where Do Zoos Fit into the Conservation Puzzle? (Part 1)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "204",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": " AI-Generated Audio Is Entering the Podcast World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "205",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Leaded Gasoline, Orca Hats and ‘Disease X’",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "206",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Iron Deficiency and Anemia May Be More Common Than We Know",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "207",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Anthony Fauci Is Worried about Bird Flu—And How Our Divisions Could Help It Hurt Us",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "208",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Psychologist’s Tips for Avoiding Overconsumption This Black Friday",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "209",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "What RFK, Jr., Could Mean for Public Health, and How Tobacco Use Has Dropped Unevenly",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "210",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Using AI to Understand the Thoughts of the Dead",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "211",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Unscheduled C-Sections May Depend on the Color of Your Skin",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "212",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "An Off Day on Uranus, a Wildfire in Prospect Park and Dispatches from COP29",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "213",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Reflecting on our First Attempt to Speak with the Stars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "214",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Humans Inherited a World That Insects Made",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "215",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Baseball Mud Bath, Water Woes and Wooden Satellites",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "216",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Why Weight May Not Be the Whole Story on Health",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "217",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Your Zodiac Sign Mattered in Medieval Times",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "218",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Your 2024 Election Rundown, from Climate Change to Education",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "219",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Your 2024 Election Rundown, from Health Care to Nuclear Proliferation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "220",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Exploring the Science of Spookiness at the Recreational Fear Lab",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "221",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Scurvy, Bird Flu and a Big Old Meteorite",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "222",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Spooky Lakes and the Science of Haunted Hydrology ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "223",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "What Do Societal Beauty Standards Have to Do with Breast Cancer?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "224",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Microbes Are Evolving to Eat Cleaning Supplies, and Whooping Cough Is Making a Comeback",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "225",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "What The Next President Will Do about Artificial Intelligence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "226",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Doctor Will See You, and Stop Judging You, Now",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "227",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Your Rundown of the Science Nobels, and Europa Clipper Is Delayed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "228",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Is Singing an Evolutionary Accident or a Critical Way to Connect?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "229",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Danger of Hurricane Downpours and the End of ‘Climate Havens’",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "230",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Stem Cell Treatments for Diabetes and a Dolphin’s Smile",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "231",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Hidden Secrets of Math: Uncharted Territory (Part 3)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "232",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Your Next Pain Prescription Could Come without Addiction Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "233",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Fighting Global Misinformation, Ditching Plastic Bottles, and Hunting with an Octopus",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "234",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Hidden Secrets of Math: Invented or Discovered? (Part 2)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "235",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Untangling the Link between Eating Disorders and PCOS",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "236",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Pregnancy Changes the Brain, and How Lizards Make DIY Scuba Gear",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "237",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Hidden Secrets of Math: Beauty and Power (Part 1)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "238",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Why Black Men Should Consider Earlier Screening for Prostate Cancer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "239",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": " AI Could Help Save Us from Conspiracy Theories, and Massachusetts Could Help Save Us from Our Trash",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "240",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "This Episode Was Recorded from Space",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "241",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How 9/11 Transformed Forensic Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "242",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Jellyfish Clones Swarm British Columbian Lakes, and Measles Cases Surge in Oregon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "243",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "In Sickness and Age: Finding Balance between Caregiving and Self-Care (Part 2)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "244",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Racism Might Be Accelerating Aging and Menopause",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "245",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "In Sickness and Age: Changing Family Structures and Caregiving (Part 1)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "246",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Dark Side of Houseplant Collection",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "247",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "NASA’s Perseverance Rover Ascends, Ozempic Is Linked to Depression, and Mpox Cases Spread Rapidly",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "248",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Dissecting the Linguistic Patterns of Kamala Harris",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "249",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "‘Dark Oxygen’ Is Coming from These Ocean Nodules, and We Don’t Know How",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "250",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Our Brains See Faces [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "251",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "James Cameron’s OceanXplorers Embraces Real- Life Science with Cinematic Flare",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "252",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Uncovering the Truth about Sexual Pleasure and Prostates with Science Vs’s Wendy Zukerman",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "253",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "What Happens when Space Junk Falls on Your Property?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "254",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Olympic Athletes Swim the Murky Seine, and Astronauts Are (Still) Stuck on the Space Station",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "255",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Unusual Archaeology: Investigating Ancient Human Sacrifice (Part 3)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "256",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Why Coral Reefs Need You to Listen",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "257",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Cancer Case Rates Are Rising Across Generations and a Private Spacewalk is Delayed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "258",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Unusual Archaeology: Contemplating the Cosmos (Part 2)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "259",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Sex Testing’s Long History in the Olympics and Other Elite Sports",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "260",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Cocaine Sharks and the Hottest Days on Record (So Far)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "261",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Unusual Archaeology: Ancient Chambers and Ocean Tides (Part 1)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "262",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Advanced Meditation Can ‘Reset’ the Brain ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "263",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Windows Devices Go Down, COVID Rates Go Up, and Tornadoes Touchdown on the Ground and on the Big Screen",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "264",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Cleaning Up Paris’s Poop River for the Olympics ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "265",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Name a Quasi-Moon with Radiolab Host Latif Nasser",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "266",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Kavli Prize Presents: Building Materials From The Bottom Up [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "267",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Astronauts Can Drink More Recycled Pee Than Ever, and You Can Still Catch the Plague",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "268",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "On Thin Ice: Contemplating Our Climate Future in Antarctica (Part 4)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "269",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Saving the Last Truly Wild Horse",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "270",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Blast from Our Past and Plans for a Petrochemical-Free Future",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "271",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Supreme Court Plays Hot Potato with Idaho’s Abortion Restrictions, and NASA Plays It Safe with Starliner",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "272",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "On Thin Ice: Life Onboard an Antarctic Icebreaker (Part 3)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "273",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How to Stay Cool during Record-Breaking Heat Waves",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "274",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Your Penis Might Be Full of Microplastics, and The Seine is Definitely Full of Bacteria",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "275",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "On Thin Ice: Penguins in Paradise (Part 2)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "276",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "What Happens if a Nuclear Weapon Goes Off in Space?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "277",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "‘Flying’ Joro Spiders Are No Big Deal, and Starlink Satellites Are Not So Great for The Ozone Layer ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "278",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "On Thin Ice: Supercharged Phytoplankton (Part 1)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "279",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "What’s Actually In Your Tattoo Ink? No One Really Knows",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "280",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Rock Samples Taken from Far Side of the Moon and a ‘Morning-After Pill’ for STIs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "281",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Do Plants ‘Think’? We Might Not Know Enough about Consciousness to be Certain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "282",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Snacking on Cicadas Is Nutritious, Sustainable, and—Yes—Delicious",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "283",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": " Auroras Are on the Horizon, and Bird Flu Is on the Menu",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "284",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Troubled Waters on Cape Cod: Liquid Gold (Part 3)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "285",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Science Behind Curly Hair [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "286",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How to Protect Wildlife without Leaving Home",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "287",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Troubled Waters on Cape Cod: Sticker Shock (Part 2)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "288",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Apocalypse Is Going to Be a Lot Friendlier Than You Think",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "289",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "AI Is Getting Creepier and Risky Cheese Is Getting Trendier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "290",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Troubled Waters on Cape Cod: Loved to Death (Part 1)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "291",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Citrus-Scented Cannabis Compound Reduces Anxiety for Weed Users",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "292",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Internet Is Full of Deepfakes, and the Sky Is Full of Trash",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "293",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Introducing Science Quickly’s New Host, Rachel Feltman",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "294",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Can Food Work as Medicine?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "295",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Corals Are Once Again Bleaching En Masse, but Their Fate Isn’t Sealed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "296",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Episode 3: A Long-Awaited Climate Experiment Is Poised to Launch in the Amazon. What Will It Find?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "297",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Episode 2: A Singular Climate Experiment Takes Shape in the Amazon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "298",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Episode 1: Will the Amazon Help Save the Planet?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "299",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Big a Threat Is Bird Flu?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "300",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How a New AI Model Helps Volcanic History Rise from the Ashes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "301",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Do Sperm Whales Have Culture?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "302",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Measles Is Back, and That’s Scary",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "303",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Did the Eclipse Give You the Amateur Astronomy Bug? Here’s How to Get Started",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "304",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Veteran Eclipse Chaser Explains the Thrill of Totality",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "305",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Three Times Eclipses Eclipsed Previous Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "306",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Humans Find Total Eclipses Startling. What About a Komodo Dragon?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "307",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Inside the Race to Protect Artists from Artificial Intelligence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "308",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Tale of the Snail Slime Wrangler",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "309",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Mucus Saves Your Life Every Day",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "310",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Magical Mucus: On the Benefits of Getting Slimed by a Hagfish",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "311",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Artificial Intelligence Helped Write this Award-Winning Song",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "312",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Why Short Naps Are Good for You",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "313",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Great Debate: Could We Ever Travel through Time?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "314",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Science behind Humpback Whales’ Eerie Songs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "315",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Large Study of ME/CFS Patients Reveals Measurable Physical Changes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "316",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Hunger in Gaza Could Affect Survivors' Health for Decades ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "317",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "These Invasive Ants Are Changing How Lions Hunt ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "318",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Should You Swab Your Throat Plus Your Nose for COVID?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "319",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Is This the Earliest Evidence of Human Cannibalism?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "320",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": " What Do You Mean, Bisexual People Are ‘Risk-Taking’? Why Genetic Studies about Sexuality Can Be Fraught ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "321",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Asexuality Research Has Reached New Heights. What Are We Learning?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "322",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How to Close the Orgasm Gap for Heterosexual Couples",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "323",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Dominatrices Are Showing People How to Have Rough Sex Safely",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "324",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How to Explore Your Sexuality, according to Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "325",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "You Can't Fix Burnout With Self-Care",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "326",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How April’s Eclipse Will Solve Solar Mysteries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "327",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "When Will We Finally Have Sex In Space? ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "328",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Is This Ancient Cattle Breed Fighting Wildfires in Portugal?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "329",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Government's Former UFO Hunter Has a Lot to Say",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "330",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Quantum Computers Might Make All of Your Private Data Less Secure",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "331",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "For 60+ years, respiratory syncytial virus (RSV) vaccines have evaded scientists. But now that's changed [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "332",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "New IVF Test Could Increase Chances of Pregnancy Success",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "333",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How to Save Indigenous Languages",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "334",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Can AI Predict When You Die?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "335",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Best Way to Use Home COVID Tests Right Now",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "336",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "From Drunken Stupor to Sober with One (Hormone) Shot",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "337",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Does the World’s Largest Seabird Know Where to Fly?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "338",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Without the Moon, You Wouldn't Exist (Probably)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "339",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Strange and Beautiful Science Of Our Lives",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "340",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Surprising Health Benefits of Dog Ownership",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "341",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Podcasts of the Year: Cleo, the Mysterious Math Menace",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "342",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Podcasts of the Year: Talking to Animals using Artificial Intelligence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "343",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How to Avoid Holiday Hangovers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "344",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Podcasts of the Year: What Better Gift for the Holidays Than a Monstrous Mystery?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "345",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Are Orca Whales Friends or Foes?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "346",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Turns Out Undersea Kelp Forests Are Crucial to Salmon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "347",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Researchers Just Created the World's First Permafrost Atlas of the Entire Arctic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "348",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A New Type of Heart Disease is on the Rise",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "349",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "AI Can Now Read Your Cat's Pain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "350",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "These Researchers Put Sperm Through a Kind of 'Hunger Games'",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "351",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Is Too Little Play Hurting Our Kids?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "352",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Misinformation Spreads through Conflict",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "353",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Why Childhood Vaccination Rates Are Falling",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "354",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Climate Adaptation Can Backfire If We Aren't Careful",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "355",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Members of This Reservation Learned They Live with Nuclear Weapons. Can Their Reality Ever Be the Same?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "356",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "What Would It Mean to 'Absorb' a Nuclear Attack?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "357",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "If You Had a Nuclear Weapon in Your Neighborhood, Would You Want to Know about It?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "358",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Just One U.S. Reservation Hosts Nuclear Weapons. This Is The Story of How That Came to Be",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "359",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Did Nuclear Weapons Get on My Reservation?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "360",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Quick Naps Are Good for Your Brain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "361",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Funding for Research on Psychedelics Is on the Rise, Along with Scientists' Hopes for Using Them",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "362",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Do You Need to 'Trip' for Psychedelics to Work as Medicine?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "363",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Search for New Psychedelics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "364",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "What Are Ultraprocessed Foods, and Are They Bad for You?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "365",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "These Creatures Are Probably the Closest Thing Nature Has to Real Werewolves",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "366",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The World's Most Frightening Animal Sounds like This",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "367",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Tale of the Rotifer That Came Back to Life after 25,000 Years in an Icy Tomb",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "368",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Generative AI Models Are Sucking Up Data from All Over the Internet, Yours Included",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "369",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Some Parents Show Their Kids They Care with a Corpse",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "370",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How to Handle This New COVID Season",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "371",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "As Arctic Sea Ice Breaks Up, AI Is Starting to Predict Where the Ice Will Go",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "372",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Scientists Argue Conservation Is under Threat in Indonesia",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "373",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Soggy Mission to Sniff Out a Greenhouse Gas 'Bomb' in the High Arctic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "374",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "This Indigenous Community Records the Climate Change That Is Causing Its Town to Erode Away",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "375",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Journey to the Thawing Edge of Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "376",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Popular Decongestant Doesn't Work. What Does?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "377",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The State of Large Language Models",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "378",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Song of the Stars, Part 3: The Universe in all Senses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "379",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Song of the Stars, Part 2: Seeing in the Dark",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "380",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Song of the Stars, Part 1: Transforming Space into Symphonies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "381",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "This Researcher Captured Air from the Amazon in Dive-Bombs--And Found Grim Clues That the Forest Is Dying",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "382",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Should You Get a Blood Test For Alzheimer's?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "383",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Ada Limón's Poem for Europa, Jupiter's Smallest Galilean Moon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "384",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How the Woolly Bear Caterpillar Does Something Pretty Amazing to Survive the Winter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "385",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Bees 'Buzz' in More Ways Than You Might Think",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "386",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Scientists Are Beginning to Learn the Language of Bats and Bees Using AI",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "387",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Trying to Train Your Brain Faster? Knowing This Might Help with That",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "388",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "This Tick Bite Makes You Allergic to Red Meat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "389",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "This Lesbian Monkey Love Triangle Tells Us Something Really Interesting about Darwin's 'Paradox'",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "390",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "What the Luddites Can Teach Us about AI",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "391",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Pig Kidney Was Just Transplanted Into a Human Body, and It Is Still Working",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "392",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Migratory Birds Are in Peril, but Knowing Where They Are at Night Could Help Save Them",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "393",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Artificial Intelligence Is Helping Us 'See' Some of the Billions of Birds Migrating at Night",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "394",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Here's How You Go Birding in the Middle of the Night",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "395",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Using Human-Sized Microphones and Hay Bales, They Unlocked the Mysteries of Bird Migration",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "396",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "They Tap Into the Magical, Hidden Pulse of the Planet, but What is the Nighttime Bird Surveillance Network?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "397",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Hearing Aids Stave Off Cognitive Decline",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "398",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "In This Ancient Garden, Plants Can Cure or Kill You",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "399",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Fungi Economy, Part 3: Can Climate Modeling from Space Save Our Forests?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "400",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Fungi Economy, Part 2: Here's How Plants and Fungi Trade beneath Our Feet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "401",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Fungi Economy, Part 1: Just like Us, Trees Are Experiencing Inflation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "402",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Could Weight-Loss Drugs Curb Addiction? Your Health, Quickly, Episode 12",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "403",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How to Roll a Joint Perfectly, according to Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "404",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Here's How AI Can Predict Hit Songs With Frightening Accuracy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "405",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Here's Why Actors Are So Worried about AI",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "406",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Are You a Lucid Dreamer?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "407",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Here's What 'Oppenheimer' Gets Right--And Wrong--About Nuclear History",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "408",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Stress Messes With Your Gut",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "409",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Should We Care About AI's Emergent Abilities?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "410",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "What That Jazz Beat Tells Us about Hearing and The Brain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "411",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Just like People, Orangutans Get Smoker's Voice",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "412",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Doctor AI Will See You Now",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "413",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "El Niño is Back. What Does That Mean For You?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "414",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Kavli Prize Presents: How Your Brain Maps the World [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "415",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Universe Is Abuzz with Giant Gravitational Waves, and Scientists Just Heard Them (Maybe)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "416",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Poisons and Perils on the Salton Sea",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "417",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "These Ants Are Probably Better at Navigating Than You Are",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "418",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How to Cool Down Fast in Summer Heat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "419",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Follow a Hurricane Expert into the Heart Of the Beast",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "420",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Have Astronomers Seen the Universe's First Stars?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "421",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Cleo, the Mysterious Math Menace",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "422",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "MDMA Moves from Party Drug Back to Therapy Tool",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "423",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Five Things You Need to Know about Wildfire Smoke Right Now",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "424",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "These Predators Had a Face like an Axe and Will Haunt Your Nightmares",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "425",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "This Thunderous Goose Relative Was Built like a Tank with the Wings of a Songbird",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "426",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "This Gargantuan Bird Weighed as Much as a Sports Car",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "427",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "This Massive Scientific Discovery Sat Hidden in a Museum Drawer for Decades",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "428",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Kavli Prize Presents: Understanding the Machinery of the Cell [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "429",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "What the End of the COVID Emergency Means for You",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "430",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Heat Waves Are Breaking Records. Here's What You Need to Know",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "431",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Why We're Worried about Generative AI",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "432",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Dismantling the PFAS 'Forever Chemicals' Legacy [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "433",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Understanding Dissociative Identity Disorder through the 'Community' of Ella",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "434",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Is Time Travel Even Possible?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "435",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Parrot Babies Babble Just like Us",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "436",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A 19th-Century Obscenity Law Is Being Used Again to Limit Abortion",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "437",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "These Mini Ecosystems Existed Underfoot of Dinosaurs, but Our Parking Lots Might Pave Them to Extinction",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "438",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "This $600-Million Room Contains the World's Largest Collection of These Tiny Endangered Animals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "439",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Surviving in the Ephemeral Pools of Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "440",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "This Fleeting Ecosystem Is Magical, and You Have Probably Never Heard of It or Even Noticed It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "441",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Do We Need To Save the Whales Again?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "442",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Bad Side of 'Good' Cholesterol",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "443",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "AI Chatbots and the Humans Who Love Them",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "444",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Mission to Jupiter's Strange Moons Is Finally on Its Way",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "445",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Surprising Backstory behind Witch Hunts and Reproductive Labor",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "446",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "What You Need to Know about GPT-4",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "447",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Good News for Coffee Lovers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "448",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Meet the Magnificent Microbes of the Deep Unknown",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "449",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Zombifying Fungi Became Master Manipulators",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "450",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science Has New Ideas about 'Oumuamua's Weirdness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "451",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Open Offices Aren't Working, so How Do We Design an Office That Does?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "452",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Cosmos, Quickly: Remembering the Genius of Vera Rubin",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "453",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Long COVID's Roots in the Brain: Your Health, Quickly, Episode 3",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "454",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "If AI Starts Making Music on Its Own, What Happens to Musicians?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "455",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Music-Making Artificial Intelligence Is Getting Scary Good",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "456",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Artificial Intelligence Helped Make the Coolest Song You've Heard This Week",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "457",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Space Force Humor, Laser Dazzlers, and the Havoc a War in Space Would Actually Wreak",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "458",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Squeak Squeak, Buzz Buzz: How Researchers Are Using AI to Talk to Animals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "459",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "RSV Vaccines Are Coming At Last: Your Health, Quickly, Episode 2",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "460",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "If the Mathematical Constant Pi Was a Song, What Would It Sound Like?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "461",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How To Stop a (Potentially Killer) Asteroid",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "462",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Scientific Secret to Soothing Fussy Babies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "463",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Helper Sharks Discovered the World's Largest Seagrass Ecosystem",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "464",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How the Woolly Bear Caterpillar Turns into a Popsicle to Survive the Winter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "465",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Pandemic's Mental Toll, and Does Telehealth Work? Your Health, Quickly, Episode 1",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "466",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Does Not Being Able to Picture Something in Your Mind Affect Your Creativity?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "467",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Sorry, UFO Hunters--You Might Just Be Looking at a Spy Balloon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "468",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Building Resilience in the Face of Climate Change [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "469",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Do We Find Aliens? Maybe Unlearn What We Know About 'Life' First",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "470",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Love and the Brain: Do Partnerships Really Make Us Happy? Here's What the Science Says",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "471",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Love and the Brain: The Animal Matchmaker and the Panda Romeo and Juliet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "472",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Love and the Brain: How Attached Are We to Attachment Styles?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "473",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Love and the Brain, Part 1: The 36 Questions, Revisited",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "474",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Coming Soon to Your Podcast Feed: Science, Quickly",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "475",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The 60-Second Podcast Takes a Short Break--But Wait, There's More",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "476",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Is Your Phone Actually Draining Your Brain?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "477",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Why Your Dog Might Think You're a Bonehead",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "478",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Alaska's Protective Sea Ice Wall Is Crumbling because of the Climate Crisis",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "479",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "It's the Bass That Makes Us Boogie",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "480",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Vaccines Saved Money and Lives and China's Zero-COVID Protests: COVID, Quickly Podcast, Episode 44",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "481",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "'Chatty Turtles' Flip the Script on the Evolutionary Origins of Vocalization in Animals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "482",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Tardigrades, an Unlikely Sleeping Beauty",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "483",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Burned Redwood Forest Tells a Story of Climate Change, Past, Present and Future",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "484",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Antivirals Could Reduce Long COVID Risk and How Well the New Boosters Work: COVID, Quickly Podcast, Episode 43",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "485",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Honeybee Swarm Has as Much Electric Charge as a Thundercloud",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "486",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "These Punk Rock Penguins Have a Bizarre Breeding Strategy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "487",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Viral Triple Threat and Why You Need a Booster: COVID, Quickly, Episode 42",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "488",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "What You Need to Know about Iran's Surveillance Tech",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "489",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Delivering Equitable Lung Cancer Care [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "490",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "New Halloween 'Scariant' Variants and Boosting Your Immunity: COVID, Quickly, Episode 41",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "491",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "These Hawks Have Figured Out How to See the Bat in the Swarm",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "492",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Naps Not Needed to Make New Memories",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "493",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How the Pandemic Shortened Life Expectancy and New Drugs on the Horizon: COVID, Quickly, Episode 40",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "494",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Engineering the Treatment of Early-Stage Lung Cancer [SPONSORED]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "495",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Rediscovered Red Wolf Genes May Help Conserve the Species",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "496",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "What the Disease Feels Like, and Presidents Can't End Pandemics: COVID, Quickly, Episode 39",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "497",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "These Spiders Use Their Webs like Huge, Silky Ears",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "498",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Chewing Consumes a Surprising Amount of Energy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "499",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "These Bats Buzz like Bees to Save Their Own Lives",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "500",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Unvaxxed Kids and 8 Days a Week (of Isolation): COVID, Quickly, Episode 38",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "501",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Listen to Images from the James Webb Space Telescope",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "502",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "These Tiny Pollinators Can Travel Surprisingly Huge Distances",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "503",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "During a Heat Wave, You Can Blast the AC, but What Does a Squirrel Do?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "504",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Back-to-School Special: Kids, Tests and Long COVID Reassurance: COVID, Quickly, Episode 37",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "505",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "This Artificial Intelligence Learns like a Baby",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "506",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Understanding the Inner Workings of Stars [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "507",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Dogs Actually Tear Up When Their Owners Come Home",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "508",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Lifelong Quest to Improve Mental Health among Cancer Patients [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "509",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Next-Generation Sequencing Can Enable Precision Oncology [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "510",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Hawking, a Paradox and a Black Hole Mystery, Solved?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "511",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Monkeypox Update and Homing in on Long COVID: COVID, Quickly, Episode 36",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "512",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Fueling Patients' Drive to Treatment [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "513",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Researchers Created a Potion That Turns Loud Lions into Placid Pussycats",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "514",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Reaching the Root of Disparities in Cancer Care [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "515",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "For Some Dolphins, the Key to Mating is Rolling with a Tight, Noisy Crew",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "516",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Source of Integrative Support for Breast and Ovarian Cancer Patients [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "517",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Common Are Reinfections? And How Trust Can Beat the Virus: COVID, Quickly, Episode 35",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "518",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Kavli Prize Presents: Understanding Molecules [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "519",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Transforming the Trajectory of Lung Cancer [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "520",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Polar Bears That Persist",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "521",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Omicron's Nasty New Variants and Better Boosters to Battle Them: COVID, Quickly, Episode 34",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "522",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Remote-Controlled Carnivorous Plant?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "523",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Kids' Vaccines at Last and Challenges in Making New Drugs: COVID, Quickly, Episode 33",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "524",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How AI Facial Recognition Is Helping Conserve Pumas",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "525",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Kavli Prize Presents: Understanding Neurodevelopment and Neurodegeneration [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "526",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Female CEOs Change How Firms Talk about Women",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "527",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID Death Rates Explained, Dismal Booster Stats and New Vaccines",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "528",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Hedgehogs Host the Evolution of Antibiotic Resistance",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "529",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Meerkats Are Getting Climate Sick",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "530",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "'Where Are Vaccines for Little Kids?' and the Latest on Long COVID",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "531",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Your Phone Could Be Used to Prosecute for Getting an Abortion: Here's How",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "532",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "If Sea Ice Melts in the Arctic, Do Trees Burn in California?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "533",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How to Care for COVID at Home, and Is That Sniffle Allergies or the Virus? COVID Quickly, Episode 30",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "534",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Astronomers Finally Captured a Photo of our Own Galaxy's Black Hole",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "535",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Two-Headed Worms Tell Us Something Fascinating about Evolution",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "536",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Harmful Effects of Overturning Roe v. Wade",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "537",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Safer Indoor Air, and People Want Masks on Planes and Trains: COVID Quickly, Episode 29",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "538",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Climate Change Is Shrinking Animals, Especially Bird-Brained Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "539",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Cosmic Simulation Shows How Dark-Matter-Deficient Galaxies Confront Goliath and Survive",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "540",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Venturing Back to the Office and the Benefits of Hybrid Immunity: COVID Quickly, Episode 28",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "541",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science Finally Has a Good Idea about Why We Stutter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "542",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Love Computers? Love History? Listen to This Podcast",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "543",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Probiotics Could Help Save Overheated Corals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "544",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The History of the Milky Way Comes into Focus",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "545",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Second Boosters, Masks in the Next Wave and Smart Risk Decisions: COVID Quickly, Episode 27",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "546",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "New Research Decodes the Sea Cow's Hidden Language",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "547",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Does This Look like a Face to You?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "548",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Some Good News about Corals and Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "549",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Florida Gets Kids and Vaccines Wrong and Ukraine's Health Crisis: COVID Quickly, Episode 26",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "550",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Are You Better Than a Machine at Spotting a Deepfake?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "551",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Treasure Trove of Dinosaur Bones in Italy Rewrites the Local Prehistoric Record",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "552",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Chimps Apply Insects to Their Wounds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "553",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Push to Move Past the Pandemic: COVID Quickly, Episode 25",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "554",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Researchers Analyzed Folk Music like It Was DNA: They Found Parallels between Life and Art",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "555",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Hong Kong 'Sees' Invisible Tailpipe Emissions and Pulls Polluters Off the Road",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "556",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "This Maine Farm Is Harvesting the Sun's Power while it Picks the Blueberries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "557",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Tracking Outbreaks through Sewers, and Kids' Vaccines on Hold Again: COVID Quickly, Episode 24",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "558",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Romantic Temptation of the Monogamous Prairie Vole",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "559",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Answering an Age-Old Mystery: How Do Birds Actually Fly?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "560",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "More Kids Get COVID, Long Haulers and a Vaccine Milestone: COVID Quickly, Episode 23",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "561",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "What Is the Shape of This Word?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "562",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Tiger Sharks, Tracked over Decades, Are Shifting Their Haunts with Ocean Warming",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "563",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Marine Wildlife Can Coexist with Offshore Wind [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "564",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID Quickly, Episode 22: Colds Build COVID Immunity and the Omicron Vaccine Delay",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "565",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Surprising Physics of Finger Snapping",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "566",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Salvador Dali's Creative Secret Is Backed by Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "567",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Growing Force of Fiery Zombies Threatens Cold Northern Forests",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "568",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Listen to This New Podcast: Lost Women of Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "569",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Canary Islands Eruption Resets Volcano Forecasts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "570",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID Quickly, Episode 21: Vaccines against Omicron and Pandemic Progress",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "571",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "As Forests Burn, a Climate Puzzle Materializes in the Far North",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "572",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Astronomers Spot Two Dust Bunnies Hiding in the Early Universe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "573",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID Quickly, Episode 20: The Omicron Scare, and Anti-COVID Pills Are Coming",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "574",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "To Better Persuade a Human, a Robot Should Use This Trick",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "575",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Redo of a Famous Experiment on the Origins of Life Reveals Critical Detail Missed for Decades",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "576",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID Quickly, Episode 19: Mandate Roadblocks, Boosters for All and Sickness in the Zoo",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "577",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Flocking Together May Have Helped Dinosaurs Dominate the Earth",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "578",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Engineered Bacteria Use Air Bubbles as Acoustically Detonated Tumor TNT",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "579",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID Quickly, Episode 18: Vaccines for Kids and the Limits of Natural Immunity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "580",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "These Bugs Produce Smelly Defenses That Need to Be Heard to Be Believed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "581",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "For Some Parents, Hiding a Dead Body Shows How Much You Care",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "582",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Date of the Vikings' First Atlantic Crossing Revealed by Rays from Space",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "583",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID Quickly, Episode 17: Vaccine Lies and Protecting Immunocompromised People",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "584",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Can an Elephant Squeak Like a Mouse?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "585",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Beethoven's Unfinished 10th Symphony Brought to Life by Artificial Intelligence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "586",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Kavli Prize Presents: Understanding the Universe [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "587",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Canary in an Ice-Rich, Slumping Rock Glacier in Alaska",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "588",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID Quickly, Episode 16: Vaccines Protect Pregnancies and a New Antiviral Pill",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "589",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Mystery of Water Drops That Skate Across Oil at Impossible Speeds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "590",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Night Flights Are No Sweat for Tropical Bees",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "591",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "These Bacteria Steal from Iron and Could Be Secretly Helping to Curb Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "592",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID, Quickly, Episode 15: Booster Shot Approvals--plus Vaccines for Kids?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "593",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Dinosaurs Lived--and Made Little Dinos--in the Arctic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "594",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "During a Rodent Quadrathlon, Researchers Learn That Ground Squirrels Have Personalities",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "595",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Car Crash Snaps the Daydreaming Mind into Focus",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "596",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID, Quickly, Episode 14: Best Masks, Explaining Mask Anger, Biden's New Plan",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "597",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Kavli Prize Presents: Understanding Atoms [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "598",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "In Missouri, a Human 'Bee' Works to Better Understand Climate Change's Effects",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "599",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "These Baby Bats, like Us, Were Born to Babble",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "600",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Their Lives Have Been Upended by Hurricane Ida",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "601",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID, Quickly, Episode 13: Vaccine Approval, Breakthrough Infections, Boosters",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "602",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Flexible Microprocessor Could Enable an 'Internet of Everything'",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "603",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Years Before COVID-19, Zombies Helped Prepare One Hospital System for the Real Pandemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "604",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Incredible, Reanimated 24,000-Year-Old Rotifer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "605",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Astronomers Find an Unexpected Bumper Crop of Black Holes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "606",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Inside Millions of Invisible Droplets, Potential Superbug Killers Grow",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "607",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Secret behind Songbirds' Magnetic Migratory Sense",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "608",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A 'Universal' Coronavirus Vaccine to Prevent the Next Pandemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "609",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID, Quickly, Episode 8: The Pandemic's True Death Toll and the Big Lab-Leak Debate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "610",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Puppies Understand You Even at a Young Age, Most Adorable Study of the Year Confirms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "611",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "New 3-D-Printed Material Is Tough, Flexible--and Alive",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "612",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Bats on Helium Reveal an Innate Sense of the Speed of Sound",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "613",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Dirty Secret behind Some of the World's Earliest Microscopes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "614",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID, Quickly, Episode 7: The Coming Pandemic Grief Wave, and Mask Whiplash",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "615",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Math and Sleuthing Help to Explain Epidemics of the Past",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "616",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Who Laps Whom on the Walking Track--Tyrannosaurus rex or You? Science Has a New Answer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "617",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Artificial Light Keeps Mosquitoes Biting Late into the Night",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "618",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID, Quickly, Episode 6: The Real Reason for India's Surge and Mask Liftoff",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "619",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Male Lyrebirds Lie to Get Sex",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "620",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Lovebirds Adore Our Inefficient Air-Conditioning",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "621",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID, Quickly, Episode 5: Vaccine Safety in Pregnancy, Blood Clots and Long-Haul Realities",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "622",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Beehives Are Held Together by Their Mutual Gut Microbes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "623",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "These Endangered Birds Are Forgetting Their Songs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "624",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "To Fight Climate Change: Grow a Floating Forest, Then Sink It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "625",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID, Quickly, Episode 4: The Virtual Vaccine Line and Shots for Kids",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "626",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Big Physics News: The Muon g-2 Experiment Explained",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "627",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Boston's Pigeons Coo, 'Wicked'; New York's Birds Coo, 'Fuhgeddaboudit'",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "628",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Imperiled Freshwater Turtles Are Eating Plastics--Science Is Just Revealing the Threat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "629",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID, Quickly, Episode 3: Vaccine Inequality--plus Your Body the Variant Fighter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "630",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Using Dragonflies as Contamination Detectors",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "631",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Smartphones Can Hear the Shape of Your Door Keys",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "632",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Chimpanzees Show Altruism while Gathering around the Juice Fountain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "633",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID, Quickly, Episode 2: Lessons from a Pandemic Year",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "634",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "That Mouse in Your House--It's Smarter, Thanks to You",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "635",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Kangaroos with Puppy Dog Eyes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "636",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID, Quickly, Episode 1: Vaccines, Variants and Diabetes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "637",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Machine Learning Pwns Old-School Atari Games",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "638",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "E-Eggs Track Turtle Traffickers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "639",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Bromances Could Lead to More Romances for Male Hyenas",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "640",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Heroic Effort to Measure Helium",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "641",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "642",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Scientists Take a Cattle Head Count in India",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "643",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Ancient Dogs Had Complex Genetic Histories",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "644",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Bees Use 'Bullshit' Defense to Keep Giant Hornets at Bay",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "645",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Humans May Have Befriended Wolves with Meat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "646",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How to Avoid Becoming a Meal for a Cheetah",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "647",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How the Coronavirus Pandemic Shaped Our Language in 2020",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "648",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from around the Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "649",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Ravens Measure Up to Great Apes on Intelligence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "650",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Baby Bees Deprive Caregivers of Sleep",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "651",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How the Wolves Change the Forest",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "652",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Brain Sides Are Both Busy in New Language Learning",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "653",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Nurse's Message about the COVID-19 Vaccine",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "654",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Eye Treatment Stretches Mouse Sight Beyond Visible Spectrum",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "655",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "This Bat Wears a Face Mask",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "656",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The Denisovans Expand Their Range into China",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "657",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Undersea Earthquakes Reveal Sound Warming Info",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "658",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Duckbill Dino Odyssey Ended in Africa",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "659",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Early Mammals Had Social Lives, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "660",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from All Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "661",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Divide and Conquer Could Be Good COVID Strategy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "662",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Zebra Coloration Messes With Fly Eyes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "663",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science Sound(E)scapes: Head Banging and Howling in the Amazon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "664",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science Sound(E)scapes: Amazon Frog Choruses at Night",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "665",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science Sound(E)scapes: Amazon Pink River Dolphins",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "666",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Frog Vocals Lead to Small Preference",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "667",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from around the Globe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "668",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Election Science Stakes: Technology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "669",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Election Science Stakes: Energy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "670",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Election Science Stakes: Environment",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "671",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Election Science Stakes: Climate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "672",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Election Science Stakes: Medicine and Public Health",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "673",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Election 2020: The Stakes for Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "674",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Why Some Easter Island Statues Are Where They Are",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "675",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Acorn Woodpeckers Fight Long, Bloody Territorial Wars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "676",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Funky Cheese Rinds Release an Influential Stench",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "677",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Dinosaur Asteroid Hit Worst-Case Place",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "678",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "River Ecosystem Restoration Can Mean Just Add Water",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "679",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "3,000-Year-Old Orbs Provide a Glimpse of Ancient Sport",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "680",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Humans Make Wild Animals Less Wary",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "681",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Play Helped Dogs Be Our Best Friends",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "682",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Neandertal DNA May Be COVID Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "683",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Nobelist Talks CRISPR Uses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "684",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Blue Whale Song Timing Reveals Time to Go",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "685",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "New Nobel Laureate Talks Today's Virology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "686",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Greenland Is Melting Faster Than Any Time in Past 12,000 Years",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "687",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Sloths Slowly Cavort by Day Now",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "688",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Dinosaurs Got Cancer, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "689",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Fluttering Feathers Could Spawn New Species",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "690",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "691",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "These Small Mammals Snort to a Different Tune",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "692",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Ice Age Temperatures Help Predict Future Warming",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "693",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "High-Elevation Hummingbirds Evolved a Temperature Trick",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "694",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Why Pet Pigs Are More like Wolves Than Dogs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "695",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Bricks Can Be Turned into Batteries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "696",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Leftovers Are a Food-Waste Problem",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "697",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Some Dinosaurs Probably Nested in Arctic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "698",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Star Systems Can Be Born Topsy-Turvy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "699",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Death by Lightning Is Common for Tropical Trees",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "700",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "701",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Alaska's Salmon Are Shrinking",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "702",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "End of 'Green Sahara' May Have Spurred a Megadrought in Southeast Asia",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "703",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "White Rhinos Eavesdrop to Know Who's Who",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "704",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Prehistoric Marine Reptile Died after a Giant Meal",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "705",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Cows with Eye Images Keep Predators in Arrears",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "706",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Warbler Species Fires Up Song Diversity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "707",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Why Lava Worlds Shine Brightly (It's Not the Lava)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "708",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Aardvarks Are Ailing amid Heat and Drought",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "709",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "The World's Highest-Dwelling Mammal Lives atop a Volcano",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "710",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Dampening of the Senses Is Linked to Dementia Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "711",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Translucent Frog Optics Create Camo Color",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "712",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Paired Comparisons Could Mean Better Witness Identifications",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "713",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Foxes Have Dined on Our Leftovers for 30,000 Years",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "714",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Mexico Caves Reveal Ancient Ocher Mining",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "715",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "In Bee Shortage, Bubbles Could Help Pollinate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "716",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from around the Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "717",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Seismologists Find the World Quieted Down during Pandemic Lockdowns",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "718",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Old Art Offers Agriculture Info",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "719",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How COVID-19 Decreases Weather Forecast Accuracy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "720",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Cricket Avoids Being Bat Food by Doing Nothing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "721",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Speaker System Blocks City Noise",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "722",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Civil War Vaccine May Have Lessons for COVID-19",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "723",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Can People ID Infectious Disease by Cough and Sneeze Sounds?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "724",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Why Some Birds Are Likely To Hit Buildings",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "725",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Sparrow Song Undergoes Key Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "726",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Polynesians and Native South Americans Made 12th-Century Contact",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "727",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Animals Appreciate Recent Traffic Lull",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "728",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Bat Says Hi as It Hunts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "729",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Forests Getting Younger and Shorter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "730",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Young Great White Sharks Eat off the Floor",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "731",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Tweets Reveal Politics of COVID-19 ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "732",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Nature's Goods and Services Get Priced",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "733",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Animal Migrations Track Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "734",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "735",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Stiffer Roads Could Drive Down Carbon Emissions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "736",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Unicorns of the Sea Reveal Sound Activities",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "737",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Human Speech Evolution Gets Lip-Smacking Evidence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "738",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Printed Coral Could Provide Reef Relief",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "739",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "'Snot Palaces' Reveal Undersea Creature Secrets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "740",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Helping Kids Cope with COVID-19 Worries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "741",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Ancient DNA Rewrites Dead Sea Scroll History",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "742",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Whale Protections Need Not Cause Lobstering Losses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "743",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How to Keep COVID-19 Conspiracies Contained",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "744",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Bioluminescence Helps Prey Avoid Hungry Seals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "745",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "3 Words Mislead Online Regional Mood Analysis",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "746",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "COVID Has Changed Soundscapes Worldwide",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "747",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from All Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "748",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Colorful Corals Beat Bleaching",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "749",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Skinny Genes Tell Fat to Burn",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "750",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Malaria Mosquitoes Are Biting before Bed-Net Time",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "751",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "We're Being Tested",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "752",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Barn Owl Babies Can Be Helpful Hatch Mates",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "753",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Donut Sugar Could Help Stored Blood Last",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "754",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Lemur Flirting Uses Common Scents",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "755",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Flamingos Can Be Picky about Company",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "756",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Horses Recognize Pics of Their Keepers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "757",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Tapirs Help Reforestation via Defecation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "758",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Virus-Infected Bees Practice Social Distancing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "759",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "New Data on Killer House Cats",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "760",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "761",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Birds on Rhinos' Back Help Them Avoid Poachers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "762",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Jane Goodall: We Can Learn from This Pandemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "763",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Our 3,000th Episode",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "764",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Herbivore Herds Might Help Permafrost",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "765",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Lung Cancer Screen Could Be Easy Pee-sy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "766",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Obama Talks Some Science Policy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "767",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Red-Winged Blackbirds Understand Yellow Warbler Alarms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "768",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Waiter, What's This Worm Doing in My Sushi?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "769",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "What's a Narwhal's Tusk For?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "770",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Coronavirus Misinformation Is Its Own Deadly Condition",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "771",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Coronavirus Can Infect Cats",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "772",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Squid's Glowing Skin Patterns May Be Code",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "773",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Bird Fossil Shared Earth with T. rex",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "774",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "City Birds: Big-Brained with Few Offspring or Small-Brained with a Lot",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "775",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Coyotes Eat Everything from Fruits to Cats",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "776",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Tiny Wormlike Creature May Be Our Oldest Known Ancestor",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "777",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from around the Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "778",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Help Researchers Track COVID-19",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "779",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Sick Vampire Bats Restrict Grooming to Close Family",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "780",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Exponential Infection Increases Are Deadly Serious",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "781",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Swamp Wallaby Reproduction Give Tribbles a Run",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "782",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Ocean Plastic Smells Great to Sea Turtles",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "783",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Ancient Clam Shell Reveals Shorter Day Length",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "784",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Snapping Shrimp Make More Noise in Warmer Oceans",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "785",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Stress from Undersea Noise Interferes with Crab Camouflage",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "786",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Indigenous Amazonians Managed Valuable Plant Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "787",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Computers Confirm Beethoven's Influence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "788",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "789",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Jet Altitude Changes Cut Climate-Changing Contrails",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "790",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Thoroughbred Horses Are Increasingly Inbred",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "791",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Pablo Escobar's Hippos Could Endanger Colombian Ecology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "792",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Wasp Nests Help Date Aboriginal Art",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "793",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Industrial Revolution Pollution Found in Himalayan Glacier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "794",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Fight-or-Flight Nerves Make Mice Go Gray",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "795",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Espresso May Be Better when Ground Coarser",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "796",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Feral Dogs Respond to Human Hand Cues",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "797",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Neandertals Tooled Around with Clams",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "798",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Fingering Fake Whiskeys with Isotopes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "799",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Having an Albatross around Your Boat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "800",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from All Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "801",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Facts about Groundhogs Other Than Their Poor Meteorology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "802",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Did Animal Calls Start in the Dark?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "803",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Sign Languages Display Distinct Ancestries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "804",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Docs Given Updated Opioid Prescribing Habit",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "805",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Some Wolf Pups Show Innate Fetching Talent",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "806",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Barred Owls Invade the Sierra Nevada",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "807",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Curiosity Killed the ... Mouse?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "808",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "This Fish Knows How to Stick Around",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "809",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Antarctic Is Ripe for Invasive Species",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "810",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Bacteria Helped Plants Evolve to Live on Land",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "811",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Meteorite Contains Material Older Than Earth",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "812",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Loss of Large Mammals Stamps Out Invertebrates, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "813",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Brittle Stars Can \"See\" without Eyes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "814",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Atlantic Puffins Spotted Using Tools",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "815",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Traffic Cameras Show Why the Yankees Should Suffer Fewer Injuries in 2020",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "816",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from around the Globe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "817",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Part of Real Paleo Diet: It's a Tuber",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "818",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "You Traveled Far in 2019",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "819",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Fido's Human Age Gets New Estimates",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "820",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Gift Wrapping Is Effective Future Trash",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "821",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Superstrong Fibers Could Be Hairy Situation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "822",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Flaky Scalps Have a Unique Fungal Microbiome",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "823",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Moths Flee or Face Bats, Depending on Toxicity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "824",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Ancient Seawall Found Submerged",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "825",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Citizen Scientists Deserve Journal Status Upgrade",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "826",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Not All Hydropower Is Climate-Considerate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "827",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Certain Zip Codes Pick Losers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "828",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Linguists Hear an Accent Begin",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "829",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Romans Would Roam for Wood",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "830",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "When the Bellbird Calls, You Know It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "831",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Fishy Trick Lures Life Back to Coral Reefs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "832",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Rain Forest Dwellers and Urbanites Have Consistently Different Microbiomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "833",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Internet Cables Could Also Measure Quakes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "834",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from All Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "835",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Subtle Ancient Footprints Come to Light",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "836",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Ancient Rock Art Got a Boost From Bacteria",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "837",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Ick Factor Is High Hurdle for Recycled Drinking Water",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "838",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Bots Outperform Humans if They Impersonate Us",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "839",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Implanting Memories in Birds Reveals How Learning Happens",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "840",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Dogs Like Motion That Matches Sound",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "841",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Egyptian Vats 5,600 Years Old Were For Beer Brewing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "842",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Famously Fickle Felines Are, in Fact, Clingy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "843",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Aversion to Broccoli May Have Genetic Roots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "844",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Marine Mammal Epidemic Linked to Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "845",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Ant Colonies Avoid Traffic Jams",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "846",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Ranking Rise May Intimidate Opponents",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "847",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Familiar Tunes Rapidly Jog the Brain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "848",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from around the Globe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "849",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "We Owe Our Pumpkins to Pooping Megafauna",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "850",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Bird Egg Colors Are Influenced by Local Climate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "851",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Crabs Do a Maze",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "852",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Odd Bird Migrates Twice to Breed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "853",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Piranha-Proof Fish Gives Inspiration for Body Armor",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "854",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Galloping Ant Beats Saharan Heat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "855",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Some Mosquito Repellents Act like Invisibility Cloaks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "856",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Your Skull Shapes Your Hearing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "857",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Tardigrade Protein Protects DNA from Chemical Attack",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "858",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "\"Mars-quakes\" Could Reveal How Mars Was Built",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "859",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Artificial Intelligence Learns to Talk Back to Bigots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "860",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Nobel in Chemistry for Lightweight Rechargeable Batteries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "861",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Nobel in Physics for Exoplanets and Cosmology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "862",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Nobel in Physiology or Medicine for How Cells Sense Oxygen Levels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "863",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Teeth Tell Black Death Genetic Tale",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "864",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Tiny Worms Are Equipped to Battle Extreme Environments",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "865",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Heat Changes Insect Call, but It Still Works",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "866",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Corals Can Inherit Symbiotic Adaptations to Warming",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "867",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Brains of Blind People Adapt in Similar Fashion",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "868",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "869",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Musical Note Perception Can Depend on Culture",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "870",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Nature Docs Avoid Habitat Destruction",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "871",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Heat Loss to Night Sky Powers Off-Grid Lights",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "872",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Early Butchers Used Small Stone Scalpels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "873",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Microplastics in Fresh Water Are Mostly Laundry Lint",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "874",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Kids Are Not Hurt by Screen Time",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "875",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Lab-Grown Human Mini Brains Show Brainy Activity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "876",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Eavesdropping Puts Anxious Squirrels at Ease",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "877",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Earth's Magnetic Field Initiated a Pole Flip Many Millennia before the Switch",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "878",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Humpback Whales Swap Songs at Island Hub",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "879",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Food Expiration Dates May Mislead Consumers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "880",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Farmland Is Also Optimal for Solar Power",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "881",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Chemical Tweak Recycles Polyurethane into Glue",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "882",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Cholesterol Climbs after Crows Chomp Cheeseburgers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "883",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Hurricanes Influence Spider Aggressiveness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "884",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Graphene Garment Blocks Blood-Sucking Skeeters",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "885",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Martian Winds Could Spread Microbe Hitchhikers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "886",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Including Indigenous Voices in Genomics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "887",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "West Point Uniforms Signify Explosive Chemistry",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "888",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Secrets of the Universe Trapped in Antarctic Snow",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "889",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Certain Personality Types Are Likely to Make a \"Foodie Call\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "890",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Artificial Intelligence Sniffs Out Unsafe Foods",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "891",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Computer Tells Real Smiles from Phonies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "892",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Stare Down Gulls to Avoid Lunch Loss",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "893",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Real Laughs Motivate More Guffaws",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "894",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Extinction Wipes Out Evolution's Hard Work",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "895",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "London Is Crawling with Drug-Resistant Microbes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "896",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Male Black Widows Poach Rivals' Approaches",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "897",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Babies Want Fair Leaders",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "898",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Parrots Are Making the U.S. Home",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "899",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from All Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "900",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Tourist Photographs Help African Wildlife Census",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "901",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "For Ants, the Sky's the Compass",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "902",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Why Two Moonships Were Better Than One",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "903",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "One Small Scoop, One Giant Impact for Mankind",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "904",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Investigating the Zombie Ant's \"Death Grip\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "905",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Attractive Young Females May Have Justice Edge",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "906",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Tobacco Plants Made to Produce Useful Compounds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "907",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Rhinos and Their Gamekeepers Benefit from AI",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "908",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Backpack Harvests Energy as You Walk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "909",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Why Baseballs Are Flying in 2019",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "910",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Some Hot Dog Histology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "911",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Mind and Body Benefit from Two Hours in Nature Each Week",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "912",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Scientist Encourages Other Women Scientists to Make Themselves Heard",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "913",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Male Bats Up Mating Odds with Mouth Morsels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "914",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Scientists Fool Flies with \"Virtual Tastes\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "915",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Wheat Plants \"Sneeze\" and Spread Disease",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "916",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Elite Runners' Microbes Make Mice Mightier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "917",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "918",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Antiperspirant Boosts Armpit and Toe-Web Microbial Diversity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "919",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Monkey Cousins Use Similar Calls",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "920",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "How Millipedes Avoid Interspecies Sexual Slips",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "921",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "You Contain Multitudes of Microplastics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "922",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "A Biodegradable Label Doesn't Make It So",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "923",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "High School Cheaters Nabbed by Neural Network",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "924",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Preserved Poop Is an Archaeological Treasure",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "925",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Remembering Murray Gell-Mann",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "926",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Bonobo Mothers Supervise Their Sons' Monkey Business",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "927",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Music May Orchestrate Better Brain Connectivity in Preterm Infants",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "928",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Icy Room Temperatures May Chill Productivity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "929",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Bird Beak Shapes Depend on More Than Diet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "930",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Ancient Gum Gives Archaeologists Something to Chew On",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "931",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Nobelist: Harness Evolution as a Problem-Solving Algorithm",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "932",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Unread Books at Home Still Spark Literacy Habits",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "933",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Kid Climate Educators Open Adult Eyes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "934",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Penguin Poop Helps Biodiversity Bloom in Antarctica",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "935",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Ancient Whiz Opens Archaeology Window",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "936",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "U.S. Coral Reefs Do $1.8 Billion of Work Per Year",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "937",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Could Air-Conditioners Help Cool the Planet?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "938",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Chemists Investigate Casanova's Clap",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "939",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Software Sniffs Out Rat Squeaks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "940",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "New Model Aims to Solve Mystery of the Moon's Formation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "941",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Cats Recognize Their Names—but May Not Respond",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "942",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from All Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "943",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Hurricane Maria Rain Amount Chances Are Boosted by Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "944",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Harder-Working Snakes Pack Stronger Venom",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "945",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "River Dolphins Have a Wide Vocal Repertoire",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "946",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Honeybees Can Put Two and Two Together",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "947",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "4/20 Traffic Accidents Claim Curbed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "948",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Hyena Society Stability Has Last Laugh",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "949",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Gluten-Free Restaurant Foods Are Often Mislabeled",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "950",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "What Chickens Can Teach Hearing Researchers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "951",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Nobelist Says System of Science Offers Life Lessons",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "952",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Squeezed Potassium Atoms Straddle Liquid and Solid",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "953",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Urban Coyote Evolution Favors the Bold",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "954",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Computers Turn an Ear on New York City",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "955",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Whitening Strips Alter Proteins in Teeth",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "956",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Infrared Light Offers a Cooler Way to Defrost",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "957",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Spider Monkeys Optimize Jungle Acoustics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "958",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Tennessee Whiskey Relies on Missing Ingredients",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "959",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "There's a Word for Today",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "960",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Bumblebee Queens Prefer Layovers to Nonstop Flights",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "961",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Scenic City Sights Linked to Higher Happiness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "962",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Tech's Brain Effect: It's Complicated",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "963",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Daylight Brings Toxic Beetles Together for Safety",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "964",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Solar Jets Cause Standing Waves in Earth's Magnetic Field",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "965",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Sing Solo for Higher Fidelity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "966",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Edible Insect Breeding Led to Larger but Not Necessarily Better Larvae",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "967",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Busting Earth-Bound Asteroids a Bigger Job Than We Thought",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "968",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Weekday–Weekend Sleep Imbalance Bad for Blood Sugar Regulation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "969",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Warm-Blooded Animals Lost Ability to Heal the Heart",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "970",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Animal Migrations Track with Wikipedia Searches",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "971",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Baseball Commish Talks Big Data",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "972",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Background Music Might Stifle Creativity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "973",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from around the Globe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "974",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Budding Yeast Produce Cannabis Compounds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "975",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Who Has \"the Right Stuff\" for Mars?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "976",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Grandma's Influence Is Good for Grandkids",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "977",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Should Robots Have a License to Kill?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "978",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Warming Climate Implies More Flies—and Disease",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "979",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Light-Skin Variant Arose in Asia Independent of Europe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "980",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Teach Science Process over Findings",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "981",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Human Diet Drugs Kill Mosquitoes' Appetite, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "982",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Grazing Deer Alter Forest Acoustics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "983",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Elephant Weight Cycles with New Teeth",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "984",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Finally Over for Mars Rover",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "985",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Our Brains Really Remember Some Pop Music",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "986",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Biologists Track Tweets to Monitor Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "987",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Desalination Could Cause Ecological Sea Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "988",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Different Humpback Whale Groups Meet to Jam",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "989",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Rocking Helps Adults Sleep Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "990",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Targeting Certain Brain Cells Can Switch Off Pain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "991",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Neandertal Spears Were Surprisingly Deadly",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "992",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "\"Rectenna\" Converts Wi-Fi to Electricity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "993",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News Briefs from the World Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "994",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Cod Could Cope with Constrained Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "995",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Intimate Hermit Crab Keeps Shell On",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "996",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Ecologists Eavesdrop with Bioacoustics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "997",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Saturn's Blingy Rings Are a Recent Upgrade",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "998",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Do-Gooders Should Survey Communities First",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "999",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Viewing This Weekend's Lunar Eclipse",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1000",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "\"Mona Lisa Effect\" Not True for Mona Lisa",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1001",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Ants Stick to Cliques to Dodge Disease",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1002",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Mistimed Migration Means Bird Death Battles",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1003",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Monogamy May Be Written in Our Genes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1004",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Seeing Superman Increases Altruism",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1005",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Inhaled RNA Might Help Heal Cystic Fibrosis",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1006",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Invisible Killers Hitchhike on Native Plant Seedlings",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1007",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Facebook Users Value the Service More Than Investors Do",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1008",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News from around the Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1009",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Turn Xmas Tree into Food and Medicine",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1010",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Simple Sugars Wipe Out Beneficial Gut Bugs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1011",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Smarter Pricing Could Ease Parking Frustration",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1012",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "\"Hunger Hormone\" Ghrelin Aids Overindulgence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1013",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Colorful Peacocks Impress Females with Good Vibes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1014",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Measuring the Strength of a Person's Gaze",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1015",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "\"Relaxation Music\" Works—but So Does Chopin",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1016",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Bone Building Needs Bit of Breakdown First",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1017",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Frog Picks Maternity Ward Like Goldilocks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1018",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "You Gotta Scratch That Itch",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1019",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Join Blue Planet II Live-Tweet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1020",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Big-Boned Chickens May Be Humans' Geologic Legacy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1021",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Ancient Marine Reptiles Had Familiar Gear",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1022",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Little Aphids Ride Big Ones to Safety",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1023",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Utah's Deserts Are Bee Hotspots ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1024",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Who's a Smart Dog?!",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1025",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Data Reveals Most Influential Movies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1026",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Blue Whales Have Changed Their Tune",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1027",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Smart Meters Speed Showers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1028",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Mars Mission Makes Clean Landing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1029",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Do Wine over Those Brussels Sprouts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1030",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Rains Bring a Microbial Massacre to Chilean Desert",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1031",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Consensual Hugs Seem to Reduce Stress",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1032",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "World's Largest Organism Faces Bleak Future",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1033",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "U.S. Immigrants Leave Country—and Microbes—Behind",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1034",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Babies and Chimps Share a Laugh",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1035",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Singing Fish Reveal Underwater Battles in the Amazon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1036",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Social Construct of Race Imposes Biology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1037",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Pandas Swoon to Particular Croons",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1038",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "First Benefit of Knowing Your Genome",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1039",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "For Halloween, Consider the Chocolate Midge",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1040",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Dolphins Dumb Down Calls to Compete with Ship Noise",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1041",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Asocial Octopuses Become Cuddly on MDMA",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1042",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Wild Songbirds Can Pick Up New Tunes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1043",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Health Care Let Neandertals \"Punch above Their Weight\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1044",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Nice People Have Emptier Wallets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1045",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Solar Eclipse Was a Buzzkill for Bees",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1046",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Confident Tone Overcomes Accent Distrust",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1047",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Mom's Genes Make Some Giraffes Hard to Spot",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1048",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Economics Nobel Highlights Climate Action Necessity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1049",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Highway Crossings Protect Migrating Pronghorns—and Motorists",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1050",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Beer Fermentation Hops Along",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1051",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Nobel in Chemistry for New and Useful Chemical Entities via Evolutionary Principles",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1052",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Nobel in Physics for Controlling Laser Light",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1053",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Nobel for Helping the Immune System Fight Cancer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1054",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Blasey Ford Spells Out Trauma Memory Formation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1055",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Scanning Ancient Civilizations from the Skies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1056",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Antifreeze Surface Fights Ice with Ice",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1057",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Scale Can Measure Medicine—and Play a Scale, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1058",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Diverse Tree Portfolio Weathers Droughts Better",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1059",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Pirates Needed Science, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1060",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Sea Otters' Powerful Paw Prey Perception",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1061",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Genetic Tweak Gave Early Humans a Leg Up",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1062",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Earlier Springs May Mean Mistimed Bird Migrations",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1063",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Survey the Wildlife of the \"Great Indoors\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1064",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "When Neutron Stars Collide",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1065",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Bonnethead Sharks Are Underwater Lawn Mowers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1066",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Hurricane Is a Natural Selection Experiment",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1067",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Pasta Problem Cracked!",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1068",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Science News You Might Have Missed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1069",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Pineapple Waste Won't Be Wasted",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1070",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Sometimes Mosquitoes Are Just Thirsty",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1071",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Robot Bartender Will Take Your Order",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1072",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "As Spring Arrives Earlier, Arctic Geese Speed Up Their Migration",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1073",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Freeloading Ants Help the Workflow",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1074",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Ancient Americans Bred Symbolically Important Scarlet Macaws",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1075",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Rising CO2 Means Monarch Butterfly Bellyaches",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1076",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "For Some Crows, Migration Is Optional",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1077",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Plants Dominate the Planet's Biomass",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1078",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Solar Eclipse of 2017 Boosted Science Interest",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1079",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Crickets Carve Tools to Amplify Their Chirps",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1080",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Computerized Chemical Toxicity Prediction Beats Animal Testing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1081",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Better Data Could Mean Better Dating",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1082",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "To Evolve Baleen, Lose Your Teeth First",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1083",
"addition_time": 1751279397,
"delete_time": 1751279399,
"title": "Corn Variety Grabs Fertilizer from the Air",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1084",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Birds Learn Safety from Other Kinds of Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1085",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Microbes Share Your Morning Metro Commute",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1086",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Oh Say Can You See Subtle Details?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1087",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Some Crows Hit On Dead Companions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1088",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Mouth Sets Healing Standard",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1089",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Border Wall Could Disrupt Hundreds of Species",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1090",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Turn a Wall into a Touch Screen Cheap",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1091",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Ancient Tooth Tartar Traps Clues to Iron Age Diet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1092",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Honey Bee Alarm Signal Could Protect Elephants",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1093",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Sea Level Rise Could Inundate the Internet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1094",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Astronomy Tool Helps ID Sharks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1095",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Mammals Moonlight around Human Settlements",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1096",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Jupiter's Moon Total Hits 79",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1097",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Moths Evade Bats with Slight of Wing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1098",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Science News You Might Have Missed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1099",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Smart Mouth Guard Senses Muscle Fatigue",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1100",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Favorite Wine Grapes May Need Genetic Help",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1101",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Iridescence Could Help Critters Hide in Plain Sight",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1102",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Primate Conflicts Play Out in the Operating Room",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1103",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Sharks Make a Splash in Brooklyn",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1104",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "City Life Favors Downsized Invertebrates",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1105",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "People Ration Where They Roam",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1106",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Humans Can Size One Another Up with a Roar",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1107",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Piano Lessons Tune Up Language Skills",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1108",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Cardinal Rule: Female Birds Sing, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1109",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Bird's Song Staying Power Implies Culture",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1110",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Alaskan Beluga Whales Ace Hearing Exam",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1111",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Fat–Carb Combo Is a Potent One–Two Punch",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1112",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Jupiter Crackles with Polar Lightning",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1113",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Coral Reefs Keep Costly Waves at Bay",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1114",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Hippo Dung Fouls Up Freshwater Fisheries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1115",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "A Litmus Test for Bad Breath",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1116",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Prez (of AMA) Issues Call to Arms-Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1117",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Powder Pulls Drinking Water from Desert Air",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1118",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Ancient Clan War Explains Genetic Diversity Drop",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1119",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Saying \"This May Hurt\" May Make It Worse",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1120",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Mongooses Gift Grooming for Guard Duty",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1121",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Some Trees Beat Heat with Sweat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1122",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Computers Go Head-to-Head with Humans on Face Recognition",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1123",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Pinnipeds Don't Appreciate Biped Disturbance",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1124",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Computers Predict Pop Chart Success",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1125",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Doc's YA Novel Treats Life-and-Death Issues",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1126",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Google's AI Assistant Does Your Talk Tasks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1127",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Great Ape Makes Good Doc",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1128",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Stool-Pigeon Poop Reveals Bird-Racing Fouls",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1129",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Radar Scans Detail North Korean Nukes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1130",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Hunting Rules Have Changed Mama Bear Care",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1131",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Jupiter and Venus Squeeze Earth's Orbit",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1132",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Mars Lander Will Peer Inside the Red Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1133",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Plants Can Sense Animal Attack Coming",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1134",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Archaeologist Makes a Case for Seafaring Neandertals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1135",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Africa: Future Worldwide Science Hub",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1136",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Healthful Eating Requires Supermarket Smarts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1137",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Culture Shapes Kids' Views of Nature",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1138",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Bad Audio Can Hurt a Scientist's Credibility",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1139",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Bill Gates Announces a Universal Flu Vaccine Effort",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1140",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Drumming Beats Speech for Distant Communication",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1141",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Bees Have a Goldilocks Lawn Mow Schedule",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1142",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "If Singing's Tough, Try Whistling",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1143",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Traffic Deaths Increase after 4:20 P.M. on 4/20",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1144",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "NYC Mice Are Packed with Pathogens",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1145",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Mine Social Media Posts to Predict Flu",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1146",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Planting Milkweed for Monarchs? Make Sure It's Native",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1147",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "The Internet Needs a Tune-Up",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1148",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Glacier Suddenly Goes Galloping",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1149",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Some Habitable Zone Exoplanets May Get X-Rayed Out",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1150",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Right Whales Seem to Think before They Speak",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1151",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Old New England Underground May Be Spry after All",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1152",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Brain Scan Might Reveal Appetite for Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1153",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Neandertal Face Shape Was All Over the Air",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1154",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Rev Up Photosynthesis to Boost Crop Yields",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1155",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "13,000-Year-Old Footprints under West Coast Beach",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1156",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Math Cracks a Knuckle-Cracking Mystery",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1157",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Rotting Flesh Offers Insight on Fossilization",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1158",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Ravens Crow with Individual Flair",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1159",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "U.S. Flu Spread Counts On Southern Cold Snaps",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1160",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Louise Slaughter Was Congress's Food Safety Champion",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1161",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Arctic Heat Waves Linked to Snowpocalypse-Like Storms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1162",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Gut Parasites Have Their Own Gut Microbiomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1163",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Drones Could Help Biologists Tally Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1164",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Saliva Protein Might Inhibit Intestinal Anarchy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1165",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Searching the Heavens for Mountains",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1166",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Human Echolocators Use Tricks Similar to Bats",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1167",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Animal Coloration Can Serve Double Duty",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1168",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Some Lichen Fungi Let Genes Go Bye",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1169",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "To See Gun Injury Drop, Hold an NRA Meeting",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1170",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Big Cities Have Fewer Tweeters Per Capita",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1171",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "How Baby Birds Learn to Duet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1172",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Mosquitoes Learn the Smell of Danger",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1173",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Needed: Info on Biodiversity Change over Time",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1174",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Undersea Recordings Reveal a Whale's Tale",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1175",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Seabird Feathers Reveal Less-Resilient Ocean",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1176",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Beetle Liberation Due to Regurgitation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1177",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Old Trees Are Ecosystem Gold",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1178",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Boat Noise Means Fish Can't Learn Their Lessons",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1179",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Woodpeckers Drum to Their Own Tunes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1180",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Homebodies Economize on Energy Use",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1181",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Killer Whale Culture Revealed by Mimicking Us",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1182",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Holiday Cheer Leads to Birth-Rate Spike",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1183",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Ticks on Uptick Where Big Game Declines",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1184",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Wildfires Spike Wine with Smoky Notes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1185",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Lion Conservation Challenges Giraffe Protection",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1186",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Nobelist Crafts Light-Switchable Antibiotics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1187",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Catching Flu Also Boosts Heart Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1188",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Worldwide Effort Says Together Science Can",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1189",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Canada Geese Taking a Winter Staycation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1190",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Moon's Tug Doesn't Cause Big Quakes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1191",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Social Media Helps ID Spew Source",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1192",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Salmonella Could Have Caused 16th-Century Epidemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1193",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Which Came First, the Proboscis or the Flower?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1194",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "You Live in a Strange Solar System",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1195",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Glow Sticks Help Ecologists Study Amphibians",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1196",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Air Force Tracks Final Frontier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1197",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "You Traveled Far Last Year",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1198",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Finches Can Learn to Sing Differently Than Their Genetics Dictate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1199",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Baby Bats Can Learn Different Dialects",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1200",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Mongoose Societies Are Skeptical of Strangers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1201",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Pain and Weather Fail to Connect",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1202",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Finding Further Places for Solar Panels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1203",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "This Fish Emits Damaging Decibels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1204",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Repetitive Sounds Are Music to the Brain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1205",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Radiation Might Help Heart Regain Its Rhythm",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1206",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Dark Fiber Networks Can Sense Seismicity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1207",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Supermarket Snacking Boosts Sales",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1208",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Something Clicks for Dolphin Identification",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1209",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Nutrition Guidelines Healthy for the Planet, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1210",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Invading Beavers Turn Tundra to Ponds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1211",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Sharks Rule the Reef's Underwater Food Chain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1212",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Ancient Women Had Awesome Arms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1213",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Invasive Frogs Don't Bug Hawaiian Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1214",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "How Hospitals Can Dampen the Decibels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1215",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Smarter Management Means More Inventions Get to Market",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1216",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Computers Learn to Use Sound to Find Ships",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1217",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Yeti Claims Don't Bear Up",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1218",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Republican Voters Not in Denial about Climate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1219",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Tech Honcho Wants Innovation for the Bottom Billion",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1220",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Bumper Stickers Make Highways More Social",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1221",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Chimps Able to Apprehend Another Chimp's Mind-Set",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1222",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Even without Hands Honeybees Show Handedness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1223",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Humpback Whale Flippers Do More Than Maneuver",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1224",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "A New Recipe for Counting Cranberries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1225",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "How Fit Is Bitcoin?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1226",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Salmon Sex Changes Entire Landscape",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1227",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Ancient 1 Percenters Were Beast-Based",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1228",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Feathers Help This Bird Sound the Alarm",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1229",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Put Space Cat on a Pedestal",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1230",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Polluted Water Whale Invents New Feeding Strategy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1231",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Insect Brain System Knows What You Want",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1232",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Sheep's Face-Reading Skills Stand Out from the Flock",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1233",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Nearby Exoplanets Invigorate the Search for E.T.",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1234",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Bison Comeback Story Has a Bronx Accent",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1235",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Mammoth Remains Seem Mostly Male",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1236",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Physics Phenomenon Reveals a Pyramid's Mystery",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1237",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "A Moth with a Potent Cocktail of Poison",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1238",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Drought News Might Help Cut Water Waste",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1239",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Smog Casts a Shadow on China's Solar Farms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1240",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Dogs Bow to Wolves as Cooperators",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1241",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "California Gun Injuries Spike after Nevada Gun Shows",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1242",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Mosquitoes to Other Flying Insects: Do You Even Generate Lift?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1243",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Keep Your Wi-Fi off KRACK",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1244",
"addition_time": 1751279397,
"delete_time": 1751279400,
"title": "Ships at Sea Stoke Lightning Strikes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1245",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Gamers Wanted to Attack Food Toxin",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1246",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Even Jellyfish Need a Nap",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1247",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Squirrels Chunk Their Buried Treasure",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1248",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Cougar Calls Get Big Bear Reactions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1249",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Biometric Identifies You in a Heartbeat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1250",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "When We Fly to Mars, Microbes Will, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1251",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Nobel in Chemistry for Seeing Biomolecules in Action",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1252",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Nobel in Physics for Detecting Gravitational Waves",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1253",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Nobel in Physiology or Medicine for Our Inner Clocks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1254",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Electric Eels Increase Shock by Leaving Water",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1255",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Australian Bird Dips Its Dinner",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1256",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Tsunami Sent Species on a Transoceanic Trip",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1257",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "1 Sneeze, 1 Vote among African Wild Dogs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1258",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "This Frog Can't Hear Its Own Calls",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1259",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Building a Better Mirror for Telescopes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1260",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Galaxies Far, Far Away Send Us Highest-Energy Cosmic Rays",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1261",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Springtime Now Arrives Earlier for Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1262",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Warming Puts Squeeze on Ancient Trees",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1263",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Rising CO2 Pushes Plants to Drink Sparingly",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1264",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Cannibalism Quells Contagion among Caterpillars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1265",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Feds Want to Know Who's Protesting Trump",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1266",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Windows Vex Bats' Echolocating Abilities",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1267",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Wetlands Could Save Cities--and Money, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1268",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Rabbit Relatives Reel from Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1269",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Winking Star 6 Centuries Ago Explained",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1270",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Grazing Cattle Trim the Menu for Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1271",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Climate Change Might Shrink Fish",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1272",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "A Fruitful Experiment in Land Conservation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1273",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Recycle Your Eclipse Glasses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1274",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Seeing 1 Solar Eclipse May Not Be Enough",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1275",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Solar Eclipse in 1097 May Be Rock-Carving Subject",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1276",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Social Media Sites Can Profile Your Contacts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1277",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "\"Textalyzer\" Aims at Deadly Distracted Driving",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1278",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Climate Change Fires Up Polar Bear Treadmill",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1279",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "No Bull: Lizards Flee When They See Red",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1280",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Celebrities Tweet Like Bots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1281",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Cold Snap Shapes Lizard Survivors",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1282",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Mediterranean Diet Works--for Upper Crust",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1283",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Screams Heard Round the Animal World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1284",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "This Caterpillar Whistles While It Irks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1285",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "To Buy Happiness, Spend Money on Saving Time",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1286",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bacteria Can Be Resistant to Brand-New Antibiotics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1287",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Teaching Computers to Enjoy the View",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1288",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Flying through a Corpse's Clues",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1289",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Old Records Help Resurrect Historic Quake",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1290",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "This Cell Phone Needs No Battery",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1291",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bacteria Might Share the Blame for Eczema",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1292",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Franklin's Lightning Rod Served Political Ends",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1293",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Heat Will Hit America's Poorest Worst",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1294",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Rainbow Photons Pack More Computing Power",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1295",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Moths Inspire Better Smartphone Screens",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1296",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Better Memory Begets Boredom",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1297",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "DNA Points to Multiple Migrations into the Americas",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1298",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Keep Rolling Luggage Upright with Physics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1299",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Wolves Need More Room to Roam",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1300",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Engineers Build Bendy Batteries for Wearables",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1301",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Rising Temps Lower Polar Bear Mercury Intake",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1302",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Some Hotel Bed Bug Sightings May Be Bogus",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1303",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Opioids Still Needed by Some Pain Patients",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1304",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bacterially Boosted Mosquitoes Could Vex Viruses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1305",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Alaska Accelerates Indoor Agriculture",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1306",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Chromosomes Combat Counterfeit Caviar",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1307",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "French Prez Invites Trumped Researchers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1308",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Trees Beat Lawns for Water-Hungry L.A.",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1309",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Former CDC Head Warns of Threats Biological and Political",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1310",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Fitness Bands Fail on Calorie Counts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1311",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "New Concrete Recipes Could Cut Cracks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1312",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bees Prefer Flowers That Proffer Nicotine",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1313",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Large Impacts May Cause Volcanic Eruptions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1314",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Why the Cross Put Chickens on a New Road",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1315",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Field Study: Worms Leave 'Til No-Till",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1316",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "The Sneaky Danger of Space Dust",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1317",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Insects Donate DNA to Unrelated Bugs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1318",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Gophers versus the Volcano",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1319",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Wilderness Areas Suffer from Human Sound",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1320",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Pollution Peaks When Temperatures Top Out",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1321",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Hot Chilies Cool Down Gut Inflammation in Mice",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1322",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bronx River's Cleanup Brings Herring Home",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1323",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Ancient Human DNA Found in Cave Dirt",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1324",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Gut Microbes Help Keep Starved Flies Fecund",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1325",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Selective Breeding Molds Foxes into Pets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1326",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Why One Researcher Marched for Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1327",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Healthy Behavior Can Spread Like Illness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1328",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Climate 420 Million Years Ago Poised for Comeback",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1329",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Traces of Genetic Trauma Can Be Tweaked",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1330",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Species Split When Mountains Rise",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1331",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Shoelace Study Untangles a Knotty Problem",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1332",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "World Parkinson's Day Puts Spotlight on Condition",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1333",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Cave Dwellers Battled Bed Bug Bites, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1334",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Extreme Storms Are Extreme Eroders",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1335",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Spiders Gobble Gargantuan Numbers of Tiny Prey",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1336",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Your Cat Thinks You're Cool",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1337",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Exoplanets Make Life Conversation Livelier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1338",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bring Bronx Zoo to Your Living Room",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1339",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "UV Rays Strip Small Galaxies of Star Stuff",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1340",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Aggressed-Upon Monkeys Take Revenge on Aggressor's Cronies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1341",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Chaotic Orbits Could Cause Catastrophic Collision",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1342",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Pulling the String on Yo-Yo Weight Gain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1343",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Poverty Shaves Years off Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1344",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Pollinators Shape Plants to Their Preference",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1345",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Low Biodiversity Brings Earlier Bloom",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1346",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Early-Life Microbes Ward Off Asthma",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1347",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "(Probably Not a) Giant Alien Antenna",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1348",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Jupiter Moon to Be Searched for Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1349",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Teeth Hint at a Friendlier Neandertal",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1350",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Forensic Science: Trials with Errors",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1351",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "How to Find Loooong Gravitational Waves",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1352",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Biggest Rivers Are Overhead",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1353",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Last Woollies Had Mammoth Mutations",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1354",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "African Penguins Pulled into an Ecological Trap",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1355",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Neandertals Live On in Our Genomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1356",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Medical Marijuana Faces Fed's Catch-22",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1357",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Blood Cells Remember Your Mountain Vacation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1358",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Fermented Foods Find Fervent Advocate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1359",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Vision Needed to Curb Nearsightedness Epidemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1360",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Guppy Groups Provide Friendly Protection against Foes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1361",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Spaceflight Squishes Spacefarers' Brains",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1362",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "2 Words Trigger CDC to Stay Quiet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1363",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "The True \"Bottom\" of the Food Chain Is Plenty Polluted",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1364",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Heat Sensor Has Snaky Sensitivity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1365",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Housing Boom Busts Birds' Valentine's Day",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1366",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Cool Coating Chills in Sunlight",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1367",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Partnered-Up Men More Attractive to Women",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1368",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Gulf Dead Zone Makes for Shrimpier Shrimp",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1369",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Frog Spit Behaves Like Bug-Catching Ketchup",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1370",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Super Bowl Snacks Need These Exercise Equivalents",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1371",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "The Arctic's Anti-Snowball Snowball Effect",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1372",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Widening the Suez Canal Ushers In Underwater Invaders",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1373",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Hawaiian Crows Ready for the Call of the Wild",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1374",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "A Humble Fish with a Colorful Edge",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1375",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "LSD's Long, Strange Trip Explained",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1376",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Umbrellas Plus Sunscreen Best Bet to Beat Burns",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1377",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Ants Use Celestial Cues to Travel in Reverse",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1378",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "High-Sugar Diet Makes Flies Drop Like...Flies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1379",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Pesticide Additive Could Be One Culprit in Bee Deaths",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1380",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Knot Not Easy to Knot",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1381",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bat Chatter Is More Than a Cry in the Dark",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1382",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bird Feeders Attract Bird Eaters, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1383",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Adult Daughter Orcas May Trigger Moms' Menopause",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1384",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Climate Cycles Could Have Carved Canyons on Mars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1385",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Hair Cells Could Heal Skin Sans Scars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1386",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Concrete Defects Could Become Strengths",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1387",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Zika Linked to a Variety of Birth Defects",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1388",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "When Dining for Trillions, Eat Wisely",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1389",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Weakest Piglets May Sneak Help from Strongest Siblings",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1390",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Isolated Low Temps May Reassure Climate Skeptics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1391",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bats Learn to Take White-Nose Punch",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1392",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "\"Necrobiome\" Reveals a Corpse's Time of Death",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1393",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Pregnancy Primes the Brain for Motherhood",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1394",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Small Fraction of Pilots Suffer Suicidal Thoughts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1395",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Migrating Birds Prefer Lakefront Property",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1396",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Breast-Feeding Benefits Babies with Genetic Asthma Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1397",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Self-Driving Cars Probably Won't Boost Commuter Productivity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1398",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "New Insecticide Makes Mosquitoes Pop",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1399",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Commuting Patterns Help Forecast Flu Outbreaks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1400",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Stopping Splashes with Smarter Surfaces",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1401",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Dogs Teach Bomb-Sniffing Machines New Tricks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1402",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "\"Power Poses\" Don't Stand Up",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1403",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Toll-Free Number Stems Human–Wildlife Conflicts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1404",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "We Now Live in the Unnatural World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1405",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "High-Fiber Diet Keeps Intestinal Walls Intact",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1406",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Forest Die-Offs Alter Global Climate \"Like El Nino\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1407",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "DNA Samples Find a Lot of Fish in the Sea",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1408",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Police Body Cameras Appear to Moderate Interactions with Civilians",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1409",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "NIH Director Looks at Presidential Transition",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1410",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Ebola Virus Grew More Infectious in the Latest Epidemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1411",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Orangutan Picks Cocktail by Seeing Ingredients",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1412",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Small-Brained Birds More Likely to Get Shot",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1413",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Online Sociality Linked to Lower Death Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1414",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bookish Mobsters Made Better Bookies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1415",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "For River Otters, Social Life Is Shaped by the Latrine",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1416",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Falcons Patrol Fruit Fields for Pesky Invasive Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1417",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Clark Kent's Glasses Aided His Anonymity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1418",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Poor Sleepers Worse at Recognizing Unfamiliar Faces",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1419",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Yawns Help the Brain Keep Its Cool",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1420",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Polar Bears Can't Just Switch to Terrestrial Food",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1421",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Flowers Deceive Flies with Chemical Cocktail",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1422",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Feed Microbes Oxygen to Help Clear Spilled Oil",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1423",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Elephant Footprints Become Tiny Critter Havens",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1424",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Future Wet Suits Otter Be Warmer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1425",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Gender Influences Recommendations for Science Jobs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1426",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Nobel in Chemistry for Molecular Machines",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1427",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Nobel in Physics for Secrets of Exotic Matter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1428",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Nobel in Physiology or Medicine to Yoshinori Ohsumi for Autophagy Discoveries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1429",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Great Migration Left Genetic Legacy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1430",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Arctic Pollinator Faces Uncertain Future",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1431",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Water Bears' Super Survival Skills Give Up Secrets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1432",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Big Earthquakes May Be More Likely During New and Full Moons",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1433",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Clever Ants Have Backup Navigation Systems",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1434",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Ancient Biblical Scroll Gets Read While Wrapped",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1435",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Birch Trees Droop at Night with No Rays in Sight",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1436",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Some Malaria Mosquitoes May Prefer Cows to Us",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1437",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Drunk People Feel Soberer around Heavy Drinkers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1438",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Oldest Known Indigo Dye Found in Peru",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1439",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Road Noise Makes Birds' Lives Tougher",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1440",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "World Wilderness Down 10 Percent in 20 Years",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1441",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Photonic Chip Could Strengthen Smartphone Encryption",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1442",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Protein Test Could Complement Crime Scene DNA Analysis",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1443",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Shark Fins Contain Toxic \"One–Two Punch\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1444",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Teen Pregnancy Prevention Program Actually Promotes It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1445",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Color-Changing Skin Aids Climate Control and Communication",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1446",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Waste Amphetamines Alter Underwater Ecosystems",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1447",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "A Green Solution to Improve Indoor Air Quality",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1448",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Humans Are Superpredators in the Landscape of Fear",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1449",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Voters Are Seldom Swayed by Local Campaign Stops",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1450",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Ancient Mexican Metropolis Engaged in Hare-Raising Activity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1451",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Model Black Hole Re-Creates Stephen Hawking Prediction",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1452",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Pigeon Pb Proxies Could Cut Kids' Blood Tests",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1453",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Remote Door Controls Are Car Security Flaw",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1454",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "This Shark Is the Vertebrate Methuselah",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1455",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Humans and Birds Cooperate to Share Beehive Bounty",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1456",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Pesticides Act as Honeybee Contraceptives",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1457",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Cut Road Deaths with Mountain Lions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1458",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Silk Road Transported Goods--and Disease",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1459",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Inbred Songbirds Croon out of Tune",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1460",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Great Red Spot Helps Explain Jupiter's Warm Upper Atmosphere",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1461",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Beaver Dams Strengthened by Humans Help Fish Rebound",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1462",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Frigate Bird Flights Last Months",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1463",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "For Lichens, 3's Not a Crowd",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1464",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Chicken Scent Deters Malaria Mosquitoes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1465",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Vaccinate Prairie Dogs to Save Ferrets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1466",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Fuel-Efficient Engines Have a Sooty Flaw",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1467",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Mucus Lets Dolphins Emit Their Clicks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1468",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bees Rank Pollen by Taste",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1469",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Menu Featured Mammoth but Diners Were Mocked",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1470",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Evolution Ed Defenders Make Rapids Progress in Grand Canyon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1471",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Wildlife Can Bear with Hunters and Hikers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1472",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Cats' Cunning Extends beyond the Hunt",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1473",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Farmed Trout Bred to Fatten Up Fast",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1474",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "This Algorithm Can Predict Relationship Trouble",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1475",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Is Mars Missing a Moon?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1476",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Human Ears Can Hear Better-Than-CD Quality (Just Barely)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1477",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Highway Sounds Might Mask Life-Saving Birdcalls",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1478",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "City Lights Trick Trees into an Earlier Spring",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1479",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Made Ya Look, Monkey",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1480",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Drowsy Driving Kills 6,400 Americans Annually",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1481",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Social Spider Groups Need Bold and Shy Members",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1482",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Chocolate Makers Cut Fat with Electricity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1483",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Viruses Hijack the Body's Response to Mosquito Bites",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1484",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Mongooses Pile on Warthogs--to Groom Them",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1485",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Lizard Stripes May Mess Up Predators' Timing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1486",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Air Pollution Gives Storm Clouds a Stronger, Longer Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1487",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Microbes May Contribute to Wine's \"Character\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1488",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Fat Gets Gut Bacteria Working against the Waistline",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1489",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Arctic Researcher Bears Up for Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1490",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Submerged Lost City Really Bacterially Built",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1491",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Go to the (White) Light",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1492",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bleached Coral Busts Fish Learning",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1493",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bigger Glasses Rack Up More Wine Sales",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1494",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Shy Fish Prefer to Follow Other Shy Fish",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1495",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "From Wolf to Woof Twice",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1496",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Extreme Life-Forms Could Complicate Carbon Sequestration",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1497",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Knee Sounds Give Docs a Leg Up",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1498",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Candidates Tend to Not Dodge Questions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1499",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Oldest Chinese Beer Brewery Found",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1500",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Giant Tsunami Remnants Spotted on Mars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1501",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Red Birds Carry On Colorful Chemistry",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1502",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Alliance of Bacterial Strains Disables Antibiotics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1503",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Wanted: Gravitational Constant's True Value",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1504",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Saharan Dust Brings Bacterial Blooms to the Caribbean",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1505",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Microbe Breaks the Powerhouse Rules",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1506",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Everything There Is",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1507",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Farm Fields Release Carbon Mist during Rainstorms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1508",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Flying Boats Soar over the Hudson",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1509",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Feed Additive Squelches Ruminants' Methane Belches",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1510",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Male Lemurs Are Masters of Musk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1511",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Married Couples Pack On More Pounds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1512",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Photos Tagged as Art Linked to Rising Property Prices",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1513",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Miley Cyrus and Macaroni Combo Enables Brain-Based ID",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1514",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Traces of Pharmaceuticals Dwell in Wastewater-Grown Veggies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1515",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "This Plant Bleeds Nectar to Attract Help",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1516",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Climbing Bears Help Plants Keep Cool",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1517",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Lower Your Voice Pitch to Persuade",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1518",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "This Primate's Calls Obey a Linguistic Law",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1519",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Woodpecker Head Bangs Communicate Info",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1520",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Gambling Gave Science Some Lucky Breaks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1521",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Microbots Get the Lead Out--of Wastewater",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1522",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Heat ID'd as Subtle Cause of Rockfalls",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1523",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bearcats Naturally Pass the Popcorn",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1524",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Transforming Stem Cells into Diabetes Beaters",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1525",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Find Shows Widespread Literacy 2,600 Years Ago in Judah",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1526",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Frogs Signal Visually in Noisy Environments",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1527",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Choir Practice Could Lower Stress in Cancer Patients",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1528",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Crater Bottoms Could Be Cradles of Martian Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1529",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Wolves Have Local Howl Accents",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1530",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bird Combines Calls in Specific Order",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1531",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Cellular Circuit Computes with DNA",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1532",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Lasers Could Hide Earth from Prying Aliens",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1533",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Twin Birth Proposed for Colliding Black Holes That Produced Gravitational Waves",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1534",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "City Birds Outwit Country Counterparts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1535",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Quasar Winds Clock In at a Fifth of Light Speed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1536",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "The Fastball Gets Its Scientific Due in a New Documentary",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1537",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Garbage Pickings Get Storks to Stop Migrating",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1538",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Smart Glass Goes from Clear to Cloudy in a Jolt",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1539",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Cuba–U.S. Thaw Should Ease Scientific Collaborations",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1540",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "African Park Comeback Offers Ecological Optimism",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1541",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bring a Musician to Untangle Cocktail Party Din",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1542",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Our Noise Bothers Overlooked Seafloor Critters",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1543",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Eavesdrop on Echolocation to Count Bats",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1544",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Underground Eruptions Could Cause Quakes Months Later",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1545",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Raw Stone Age Meals Got Tenderizing Treatment",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1546",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Fear of Spiders Makes Them Look Bigger",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1547",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Pro Baseball Player Tech Avatars Could Be a Hit",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1548",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "This Dragonfly Outmigrates Monarchs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1549",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Gators Guard Birds That Nest Nearby",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1550",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Space \"Treasure Map\" Guides E.T. Search",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1551",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Milgram's Conformity Experiment Revisited in Lab and on Stage",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1552",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bats Beat Ebola with Hypervigilant Immunity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1553",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Cutting Carbon Pollution Could Save Health Care $",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1554",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Billion Sun–Bright Events Leave Radio Wave Clues",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1555",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Cyber Thieves Hold Hospital's Data for Ransom",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1556",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Ball Really Looks Bigger to Better Hitters",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1557",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "HPV Vaccine Needs to Reach Boys, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1558",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Mantis Shrimp Shells May Inspire Next-Generation Computer Chips",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1559",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Opioid Epidemic Gets Treatment Prescription",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1560",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Elephant Ivory DNA Reveals Poaching Hotspots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1561",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Gut Microbes Lessen Mice Malarial Malaise",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1562",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Greenland's Meltwater May Fertilize Fjords with Phosphorus",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1563",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Lizard Picks Best Color--to Stand against",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1564",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Giant Bird Driven Extinct by Egg-Eating Humans",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1565",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Climate Change Most Affects Nations That Didn't Produce It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1566",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Super Bowl Sunday's Food Needs Work",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1567",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bear Gut Microbes Help Prep Hibernation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1568",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Seed-Scattering Birds May Help Trees Cope with Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1569",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Plastic Pollution Perturbs Oyster Offspring",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1570",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Antioxidant Use Still Small Mixed Bag",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1571",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Sweet Song Gives Away New Bird Species",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1572",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Suicide Differences by Region Related to Gun Availability",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1573",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Musical Pitch Perception May Have Long Evolutionary History",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1574",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Quick Test Could Tell If a Patient Needs Antibiotics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1575",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Pluto Killer Thinks He Has New Ninth Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1576",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Sharks Head Straight Home by Smell",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1577",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Volcano Role in Dino Death Gets Mercury Boost",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1578",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Healthful Diet Switch Helps Even Late in Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1579",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Better Gut Microbiome Census through Computing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1580",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Sociable Chimps Get Richer Gut Microbiomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1581",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Mammoth Find Moves Humans in Arctic Back 10,000 Years",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1582",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "City Swans May Tolerate Humans Due to Gene Variant",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1583",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Hippo Meat-Munching May Explain Their Anthrax Outbreaks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1584",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Powerball Lottery Winning Made Inevitable (If Not Easy)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1585",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Iceman Ötzi Died with a Bellyache",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1586",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Allergies May Have Been Bequeathed by Neandertals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1587",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Needle Exchange Programs Now Get Fed Support",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1588",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Obama Notes Blocks of Gun Violence Research",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1589",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Big Cats and People Live in Close Quarters in India",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1590",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Asphalt Roads Could De-Ice Themselves",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1591",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Race-Based Brand Preferences Found for Underage Drinkers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1592",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Baby Whales Pecked to Death by Gulls",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1593",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Polar Bears Must Work Harder on Faster Sea Ice Treadmill",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1594",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Southwest's Conifers Face Trial by Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1595",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Superfast Computer Chip Transmits Data with Light",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1596",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Text Reminders Cut Binge Drinking in At-Risk Recipients",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1597",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Drugged Gut Microbiome Cuts Heart Risk in Mice",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1598",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Antievolution Legislation Shows Descent with Modification",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1599",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Small Fish Takes Fast-Evolution Track",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1600",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Marion Nestle Talks \"Soda Politics\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1601",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Teachers' Racial Biases Have Different Effects for High Versus Low Performers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1602",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Energy Secretary Talks Climate Challenge",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1603",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Cockroach Caca Contains Chemical Messages Made by Microbes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1604",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "90-Nation Coalition Aims for Ambitious Climate Change Deal",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1605",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "New African Highways Have a High Environmental Price",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1606",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Protect the Right Places for Biodiversity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1607",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Individuals' Blood Glucose Levels after Meals May Be Predictable",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1608",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Obese Dad's Sperm May Influence Offspring's Weight",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1609",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Pollination Isn't Just for the Bees",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1610",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Race Colors New Residents' Views of Local Businesses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1611",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Espresso Machines Brew a Microbiome of Their Own",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1612",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Massive Survey Creates Amazon Tree Census",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1613",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "People Pick Familiar Foods Over Favorites",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1614",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Women Candidates Face Implicit Bias Hurdle",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1615",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Gut Bacteria Signal Your Brain When They're Full",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1616",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Vocal Cords Bioengineered from Starter Cells",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1617",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Sahara Reveals Remains of Ancient River",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1618",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Your Brain Can Taste without Your Tongue",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1619",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Urban Food Foraging Looks Fruitful",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1620",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Female Vocalists Are in the (Mouse) House",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1621",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Eat Slowly and Breathe Smoothly to Enhance Taste",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1622",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Little Galaxy Keeps Churning Out Stars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1623",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Howler Monkeys Trade Testicles for Decibels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1624",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Stone Age Pottery Reveals Signs of Beekeeping",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1625",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "What Makes Sand Dunes Sing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1626",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Brain Rhythms Sync to Musical Beat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1627",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Brain Responds to Driving Routes Repeatedly",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1628",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Arctic Marine Mammals Swim Up to the Microphone",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1629",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Decoy Mating Call Battles Citrus Pest",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1630",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Methane Plumes Bubbling along U.S. Northwest Coast",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1631",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Cultural Goofs Gear Up Gray Matter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1632",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Whale Poop Drives Global Nutrient Cycling",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1633",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Road Runoff a No-No for Coho",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1634",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Political and Industry Leaders Make a Case for Basic Research",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1635",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "TV Crime Shows Influence Sex Consent Views",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1636",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Beet Juice Could Help Body Beat Altitude",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1637",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Fall Foliage Timing Comes into Clearer Focus",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1638",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Apple Thins iPhone Cloud Connections",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1639",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Dino's Tail Might Have Whipped It Good",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1640",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Babies Move Tongue to Learn New Tongues",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1641",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Pluto Mission Targets Next Kuiper Belt Object",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1642",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Magnetic Field May Be a Map for Migratory Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1643",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Wildlife Tourism Could Be \"Domesticating\" Wild Animals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1644",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Babies Just Want to Be Smiled at",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1645",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "2015 Nobel Prize in Chemistry",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1646",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "2015 Nobel Prize in Physics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1647",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "2015 Nobel Prize in Physiology or Medicine",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1648",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Cheap Goods from China Have a High Carbon Cost",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1649",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "MacArthur Genius Grant Winner Probes the Pruning Brain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1650",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "MacArthur Genius Grant Winner Makes Waste a Resource",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1651",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Ancient Human Ancestors Heard Differently",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1652",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Sitting Not the New Smoking for Fidgeters",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1653",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "We Emit Clouds of Microbes Wherever We Go",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1654",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "House Dust Organisms Reveal Location and Residents",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1655",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Biosciences Get Defense Secretary's Attention",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1656",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Teenage Clockmaker Upholds Long Scientific Tradition",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1657",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Nonpolitical Tweets May Reveal Political Bias",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1658",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "California Mountain Snowpack Is Flaking Out",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1659",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Domesticated Pigs Kept Oinking with Wild (and Crazy) Boars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1660",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Snake Bites in Costa Rica Peak with El Niño Cycling",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1661",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Sperm Whales Congregate in Click-Based Cliques",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1662",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Humans' Predation Unsustainably Takes Healthy Adult Prey",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1663",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Better Road Signs Could Save Bicycle Riders",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1664",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Self-Healing Spaceship Shielding Could Keep Astronauts Safer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1665",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Road Noise Takes a Toll on Migrating Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1666",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Terse Titles Cited",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1667",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Sick Ants Seek Out Medicinal Food",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1668",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Seaweed Bodyguards Coral against Bullying Sea Stars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1669",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Cosmetic Ads' Science Claims Lack Foundation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1670",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Deep Voice Gives Politicians Electoral Boost",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1671",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Vomit Machine Models Cruise-Ship Virus Spread",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1672",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Sunlight Activates Smog-Causing Chemicals in City Grime",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1673",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Methane-Eating Microbes May Mitigate Arctic Emissions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1674",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Chinese Cave Graffiti Agrees with Site's Drought Evidence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1675",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Whistled Language Forces Brain to Modify Usual Processing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1676",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Invertebrates Are Forgotten Victims of \"Sixth Extinction\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1677",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Nicotine-Chomping Bacteria Could Help Smokers Quit",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1678",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Women Left out in Cold by Office A-C Standards",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1679",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bite Me: The Mutation That Made Corn Kernels Consumable",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1680",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Fish Slime Inspires New Eco-Sunscreen Ingredient",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1681",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Microbes Deep under Seafloor Reflect Ancient Land Origins",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1682",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Spicy Food Linked to Lower Risk of Death",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1683",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bonobo Peeps May Be Necessary Language Precursors",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1684",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Diminutive Peoples Took Different Paths to Petite",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1685",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Forests Suck Up Less Carbon after Drought",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1686",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "\"Imperfect\" Vaccines May Aid Survival of Ultrahot Viruses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1687",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "What All the Screaming Is about",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1688",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Baseball Great Thanks Tommy John Surgery, Decries Its Frequency",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1689",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Appetizers Can Psychologically Spoil Your Appetite",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1690",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Many Overweight and Obese Teens Underestimate Their Weight",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1691",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Alien Intelligence Search Gets Major New Push",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1692",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Plankton Blooms Fuel Cloud Droplet Formation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1693",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Male Black Widows Strive for Mate's Monogamy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1694",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Active Duty Army Suicide Attempts Analyzed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1695",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Rain and Irrigation Can Make Crops Temporary Bacteria Farms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1696",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Hitchhiking Worms Survive Slug Guts Transport",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1697",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Roman Builders May Have Copied Volcanic \"Concrete\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1698",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Dark Matter Dominates Just-Discovered Galaxies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1699",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Best Male Nightingale Vocalists Make Best Fathers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1700",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Improved Solar Storm Tracking Lengthens Prep Time for Tech Disruption",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1701",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Marijuana Muddies Memory and Mixes with Alcohol to Make Trouble",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1702",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bird Literally Weighs Its Food Options",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1703",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Noses Agree When Genes See Eye to Eye",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1704",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Smartphone Battery Drains a Lot Even with Dark Screen",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1705",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Alaska Surface Glacier Melting Means More Glug Glug Glug",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1706",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Programmed Bacteria Can Detect Tumors",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1707",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Extreme Exercise Can Poison the Blood",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1708",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Einstein–Bohr Friendship Recounted by Bohr's Grandson",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1709",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Comet Dust Kicks Up Clouds over the Moon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1710",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Rare Multitasking Plus: Brain-Teasers Enhance Workout",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1711",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Ant Smells Like Blue Cheese for a Reason",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1712",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Mars Surface Glass Could Hold Ancient Fossils",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1713",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Is Lying a Good Strategy?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1714",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Wild Chimps Seen Drinking Alcoholic Beverage",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1715",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Color You Remember Seeing Isn't What You Saw",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1716",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Ancient Human Migration Route Marked by Snail Shell \"Bread Crumbs\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1717",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "\"Brainprints\" Could Be Future Security ID",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1718",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Frenzy-Feeding Black Hole Makes Galaxy Most Luminous",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1719",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Vaccine Aims at Fly Host of Disease Parasite",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1720",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Chimps Would \"Cook\" Food If They Could",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1721",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "High Heels Heighten Health Hazard",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1722",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Parrotfish Build Islands with Their Poop",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1723",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Blood Pressure Vaccine Lengthens Rat Lives",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1724",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "CSI: Middle Pleistocene",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1725",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Mummy Mavens Unwrap Preservation Methods",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1726",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Smart Cane Could Help Blind ID Faces",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1727",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Dolphin Deaths Linked to 2010 Gulf of Mexico Oil Spill",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1728",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Octopus Skin Senses Light, No Eyes or Brain Needed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1729",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "First Woman MLBer Will Probably Pitch",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1730",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Seashell Shapes Show Strength for Safety",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1731",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "In the Future Robopets Won't Be Far-Fetched",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1732",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Crop Rotation Works in the Sea, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1733",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Food for Sale Everywhere Fuels Obesity Epidemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1734",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Netflix CEO Peers at Crystal Ball to See TV's Future",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1735",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "May 9 Is Big Day for the Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1736",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Mars Travelers Could Suffer Radiation Brain Damage",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1737",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Wheat Genes Could Bring Back Chestnut",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1738",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Pop Music Gets Its Fossil Record Analyzed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1739",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Space Supervoid Sucks Energy from Light",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1740",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Latex Lining Could Quiet Plane Rides",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1741",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Parkinson's Pen Vibrates to Improve Legibility",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1742",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Infants Already Glued to Multiple Screens",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1743",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Old Cats Can Get Seizures from Sound",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1744",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Musical Performance Activates Specific Genes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1745",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Shipwreck Champagne Reveals Old Wine Secrets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1746",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Small Screen Looks at an Electrified America",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1747",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Taste Salty with Less Salt",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1748",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Granular Materials Could Thwart Missiles",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1749",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "A Few Hundred Smartphones Could Catch Earthquakes Early",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1750",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Martian Glaciers Equal Meter-Thick Planetary Ice Shell",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1751",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Nobelist Talks about Exercise and Chromosome Integrity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1752",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Typing Style Reveals Fatigue or Disease",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1753",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "App Provides Pocket Time Capsule",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1754",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Online Breast Milk Buyers May Get Cowed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1755",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "B.O. Gives Up Its Stinky Secrets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1756",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Outdoor Exercise Worth Some Air Pollution Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1757",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Diabetics Benefit by Biggest Meal Early",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1758",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Donate Your Health Data to Medical Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1759",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "African-American Longevity Suffered after Great Migration",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1760",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Enceladus Might Be a Methane Hotspot",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1761",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Malaria Parasite Attracts Mosquitoes with Perfume",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1762",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "See Movement Better by Bicarb",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1763",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Teotihuacán's Social Tensions Contributed to Its Fall",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1764",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Music’s Physiological Effects Transcend Culture",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1765",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "That's What Ya Call a 4-Star Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1766",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Smoke Makes Twisters More Likely to Strike",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1767",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "La Niña Conditions Spin Up More Springtime Twisters",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1768",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Human Remains Double Known Rainforest Occupation Time",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1769",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Crowd-Sourced Medical Research Gets Apple Assist",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1770",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Big Bang Sitcom Stars Scientific American Tonight",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1771",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Background Music Jams Memory in Older Adults",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1772",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Some European Languages Came by Steppe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1773",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Animals Can Be Given False Memories",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1774",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Whale Grandmas' Longevity Linked to Knowledge",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1775",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Salty Skin Boosts Mouse Wound Healing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1776",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Titan Could Host Life \"Not As We Know It\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1777",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Climate Skeptic Senator Burned after Snowball Stunt",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1778",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Air Force Space Command General on Keeping Space Collision-Free",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1779",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Britain Imported Wheat 2,000 Years before Growing It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1780",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Fishes' Lateral Lines Sense Pressure and Predators",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1781",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Science Wins at the Oscars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1782",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Beaver Teeth Have Iron Advantage",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1783",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Nectar Helps Bees’ Medicine Go Down",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1784",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Pot Munchies Explained By Re-Tasked Neurons",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1785",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Hot Chili Peppers Motivate Mice to Burn Fat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1786",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Humans off the Hook for Alaskan Mastodon Extinction",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1787",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Triskaidekaphobia Plays Role in Paraskevidekatriaphobia",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1788",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Contraception Could Prevent 15 Million Unwanted Pregnancies Annually",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1789",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Preindustrial Pollution Pestered Peru",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1790",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Subway DNA Survey Finds Microbes, Mozzarella and Mystery",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1791",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Newton Figured Out How Tree Sap Rises",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1792",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Cities Could Win Economically by Losing Olympics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1793",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Drones Spy On Birds in Flight",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1794",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Save Libyan Archaeology Plea Issued",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1795",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Super Bowl Team Cities See More Flu Deaths",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1796",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Climate Influences Language Evolution",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1797",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Gates CEO: Let's Shrink Maternal Mortality",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1798",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Snail's Venom Puts Fish in Insulin Coma",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1799",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Tech Consequences Voiced by Carnegie Mellon Prez",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1800",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Diaper Material Expands Wee Microscope Views",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1801",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Obama Talks Ebola and Climate in His SOTU",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1802",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Computer Snoopers Read Electromagnetic Emissions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1803",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Ex-President Wins Campaign against Ghastly Guinea Worm",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1804",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Antibiotics in Blood Can Make Malaria Mosquitoes Mightier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1805",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Health and Conservation Reminders Cut Consumer Energy Use",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1806",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Active Sun at Birth Cut Historical Life Spans",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1807",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Making Evolution Make Microbes Make Products",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1808",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Human Eye Sometimes Sees the Unseeable",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1809",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "E.T. May Reveal Itself with Vibration",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1810",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Large Carnivores Getting Comfy in Europe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1811",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Lyme Helps Spread Other Tick Infections",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1812",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Lightning May Sink Mountain Summits",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1813",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Budget Bill Stealthily Affects Environment and Energy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1814",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Plankton Pee May Alter Ocean's Chemistry",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1815",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Penicillins Reveal Additional Antibacterial Power",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1816",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Short-Term Fasting Made Mice Healthier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1817",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Laser Zap Determines Fruit Ripeness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1818",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Birds Roost on New Evolutionary Tree",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1819",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Canary out, Smartphone in for Gas Detection",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1820",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Quarter-Million Tons of Plastic Plague Oceans",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1821",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Dumpster Diving Provides Drinking Data",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1822",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Summer Teen Jobs Cut Violence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1823",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Poorer Kids May Be Too Respectful at School",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1824",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Big Apple's Insects Eat Streets Clean",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1825",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Scientific American's 1930 Football Study Found Little Actual Action",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1826",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Looking Back on 40 Years of Lucy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1827",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Better Barley Let People Settle Tibetan Plateau",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1828",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Worse Than the Bite",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1829",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Semen Protects HIV from Microbicide Attack",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1830",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Select Few Can Truly Drink to Their Health",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1831",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "\"We Are on the Comet!\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1832",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Microbiome Studies Contaminated by Sequencing Supplies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1833",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Young Earth May Have Been All Wet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1834",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Chimps Hit Sack with Breakfast Plans",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1835",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bats Jam Rivals’ Sonar to Steal a Meal",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1836",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Half-Century Anniversary of a Mars Mishap",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1837",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Button Battery Coating Lessens Risk If Swallowed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1838",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bacteria Lowers Mosquito Transmission of Malaria, Dengue",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1839",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Mammals Might Have Slept Through Dino Destroyer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1840",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Online Personalization Means Prices Are Tailored to You, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1841",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Fecal Transplanters Fish Out Key Ingredient",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1842",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Coyote Size Forces Smartness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1843",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Plant Thorns Increase When Defense Needed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1844",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Lemur Latrine Trees Serve as Community Bulletin Boards",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1845",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Carnivorous Plant Inspires Anticlotting Medical Devices",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1846",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Less Well-Off Donate Bigger Income Percentage",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1847",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "To Walk, You Have to Fall in Step",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1848",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "2014 Nobel Prize in Chemistry",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1849",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "2014 Nobel Prize in Physics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1850",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "2014 Nobel Prize in Physiology or Medicine",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1851",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Reindeer Spit Smacks Down Plant Toxins",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1852",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Good Palm Oil Yields Could Be Bad News",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1853",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Central Park Features Worldwide Soil Microbes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1854",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Sea Garbage Shows Ocean Boundaries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1855",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Yeast Coaxed to Make Morphine",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1856",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Crustal Chemistry May Aid in Earthquake Prediction",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1857",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Fire Cooked Up Early Human Culture",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1858",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "I Got Rhythm, I Got Reading",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1859",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Dino Devastator Also Ravaged Veggies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1860",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Genius Grant Goes to Science Historian",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1861",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Leopards Wolf Down Fido in India Ag Area",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1862",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bio-Spleen Sucks Pathogens and Toxins from Blood",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1863",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Synthetic Fabrics Host More Stench-Producing Bacteria",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1864",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Turtles Not Among the \"Silent Majority\" of Reptiles",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1865",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Chimp Chatter Now up for Eavesdropping",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1866",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Most Tibetans Genetically Adapted to the High Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1867",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Narcissists Self-Involved Enough to Recognize Their Narcissism",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1868",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "How Asteroid 1950 DA Keeps It Together",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1869",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Pump Up the Bass—and Maybe Your Confidence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1870",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Stressed Women Burn Fewer Comfort Food Calories",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1871",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Habitat Loss a Real Buzzkill for Invertebrates",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1872",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Soccer Goalies Ignore Basic Rule of Probability",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1873",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Finally, an Algorithm to Sort Your Beatles Albums",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1874",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Sack Sulfates to Preserve Sewers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1875",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Bio-Battery Produces Power from Your Perspiration",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1876",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Lose Your Job? Good for the Rest of Us",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1877",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Nose Knows What the Mind Tells It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1878",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Tiny Toe Tools Ensure Gecko Traction",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1879",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Guys Prefer Electric Shocks to Boredom",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1880",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Google Searches Linked to Stock Market Moves",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1881",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Andromeda Snickers at Milky Way Mass",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1882",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Spider's Scat Disguise May Be Its Salvation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1883",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "System Converts Solar Efficiently to Steam",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1884",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Environment Has Beef with Beef",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1885",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Pack Rats Expand Diet with New Gut Bacteria",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1886",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Colorful Birds Can Also Belt Tunes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1887",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Roach Reactions to Venom Point to Targeted Pesticides",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1888",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Ocean Plastic Particles Could Get in Gills",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1889",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Salmonella's Favorite Food Could Be Its Achilles' Heel",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1890",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Education Level Linked to Nearsightedness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1891",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Give Us This Day the Bread Wheat Genome",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1892",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Supercooled Organs Could Stretch Time to Transplant",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1893",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Space-Based Data Collection Better Predicts Floods",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1894",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Mobile Phones Carry Owners' Microbiomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1895",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Malarial Mice Smell Better to Mosquitoes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1896",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "Neandertal Diners Had Side of Veggies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1897",
"addition_time": 1751279398,
"delete_time": 1751279400,
"title": "21-Second Rule Governs Mammal Micturition",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1898",
"addition_time": 1751279399,
"delete_time": 1751279400,
"title": "Dwarf Galaxies Really Cooking with Gas",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1899",
"addition_time": 1751279399,
"delete_time": 1751279400,
"title": "Cool Kids Get Schooled with Age",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1900",
"addition_time": 1751279399,
"delete_time": 1751279400,
"title": "White Bread May Actually Build Strong Bodies 1 Way",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1901",
"addition_time": 1751279399,
"delete_time": 1751279400,
"title": "Plant Spores Hitch Long-Distance Feather Rides",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1902",
"addition_time": 1751279399,
"delete_time": 1751279400,
"title": "Jellyfish Galaxies Get Guts Ripped Out",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1903",
"addition_time": 1751279399,
"delete_time": 1751279400,
"title": "2-Face Moon Tells How It Got That Way",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1904",
"addition_time": 1751279399,
"delete_time": 1751279400,
"title": "Classroom Decorations Can Distract Young Students",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1905",
"addition_time": 1751279399,
"delete_time": 1751279400,
"title": "Kid Scientist Finds Sweet Pest Control",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1906",
"addition_time": 1751279399,
"delete_time": 1751279400,
"title": "Light Colors Become Fashion Rage for Northern Europe's Insects",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1907",
"addition_time": 1751279399,
"delete_time": 1751279400,
"title": "London Fish Chip Away at Historical Unknowns",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1908",
"addition_time": 1751279399,
"delete_time": 1751279400,
"title": "Meteor Storm Went from Sizzle to Fizzle",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1909",
"addition_time": 1751279403,
"delete_time": 1751279403,
"title": "She's Alive!",
"file": "/media/podcast/Dolly Parton's America/1577811600-1909.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "7"
},
{
"id": "1910",
"addition_time": 1751279403,
"delete_time": 1751279403,
"title": "Traveling Creatures: live music from the series",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "7"
},
{
"id": "1911",
"addition_time": 1751279403,
"delete_time": 1751279403,
"title": "Dixie Disappearance",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "7"
},
{
"id": "1912",
"addition_time": 1751279403,
"delete_time": 1751279403,
"title": "Dolly Parton's America",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "7"
},
{
"id": "1913",
"addition_time": 1751279403,
"delete_time": 1751279403,
"title": "Dolly's Wildflowers: live music from the series",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "7"
},
{
"id": "1914",
"addition_time": 1751279403,
"delete_time": 1751279403,
"title": "The Only One For Me, Jolene",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "7"
},
{
"id": "1915",
"addition_time": 1751279403,
"delete_time": 1751279403,
"title": "Dollitics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "7"
},
{
"id": "1916",
"addition_time": 1751279403,
"delete_time": 1751279403,
"title": "Neon Moss",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "7"
},
{
"id": "1917",
"addition_time": 1751279403,
"delete_time": 1751279403,
"title": "Tennessee Mountain Trance",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "7"
},
{
"id": "1918",
"addition_time": 1751279403,
"delete_time": 1751279403,
"title": "I Will Always Leave You",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "7"
},
{
"id": "1919",
"addition_time": 1751279403,
"delete_time": 1751279403,
"title": "Sad Ass Songs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "7"
},
{
"id": "1920",
"addition_time": 1751279403,
"delete_time": 1751279403,
"title": "Dolly Parton's America Trailer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "7"
},
{
"id": "1921",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Megalodon Diets, Teeth Sensitivity and a Bunch of Vaccine News",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1922",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": " Are You Flourishing? This Global Study Has Surprising Takeaways",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1923",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Diagnosing Male Infertility with a Mechanical Engineering Twist",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1924",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Could We Speak to Dolphins? A Promising LLM Makes That a Possibility",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1925",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": " Do Mitochondria Talk to Each Other? A New Look at the Cell’s Powerhouse",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1926",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "How to Make Gold, Flamingo Food Tornado, and Kosmos-482 Lands",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1927",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": " Could Freezing Arctic Sea Ice Combat Climate Change?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1928",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "How a West Texas Outbreak Threatens Measles Elimination Status",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1929",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Sinking Cities, Waving Cuttlefish and Falling Spacecraft",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1930",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "This Podcast Was Recorded Inside a Particle Collider",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1931",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Rejecting Toxic Fitness Culture with Casey Johnston",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1932",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Jupiter’s Cyclones, Amazon’s Satellites and T. rex Collagen",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1933",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": " The Fungi Facing Extinction and the Conservationists Working Hard to Protect Them",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1934",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Griefbots Offer AI Connections with Deceased Loved Ones",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1935",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Scientific American in 1925: Solar Eclipses, Seances and Some Strange Inventions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1936",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "How to Become an Urban Naturalist",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1937",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": " Our Fear and Fascination around Snakes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1938",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Childhood Illnesses Surge, Magnetic Poles Wandered, and a Colossal Squid Is Found",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1939",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": " From the Internet’s Beginnings to Our Understanding of Consciousness, This Editor Has Seen It All",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1940",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "A Disinfectant That’s More Powerful Than Bleach—And Safe for Your Skin",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1941",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "A Long Day on Uranus, a Better Method of Making Coffee and Dinos Fossils in Decline",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1942",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "How Are Prenatal Blood Tests Detecting Cancer?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1943",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Treating Bacterial Vaginosis as an STI Could Improve Outcomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1944",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "How the Science of Safety Helps Tackle Global Risks [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1945",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Yodeling Monkeys, Increasing Measles Cases and Stressed Out Americans",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1946",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Cutting USAID Threatens Public Health around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1947",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Understanding the Science of ‘Squirting’",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1948",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Shark Sounds, Molecules on Mars and Continued Federal Cuts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1949",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Go Inside M.I.T.'s 50,000 Square Foot Clean Room",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1950",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Are These Plants Out of Place? A New Look at Invasive Species",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1951",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": " NASA Astronauts Finally Return, Seals Hold Their Breath, and Penguin Poop Stresses Out Krill",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1952",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Severance’s Consulting Neurosurgeon Explains the Science behind the Show’s Brain Procedure",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1953",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": " What Everyone Gets Wrong about Colonoscopies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1954",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "NASA Launches New Missions, Saturn Gains Some Moons, and Whale Urine Balances Marine Ecosystems",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1955",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Movie Magic Meets Practical Robotics for Netflix’s The Electric State",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1956",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "A Tuberculosis Outbreak Exposes U.S. Postpandemic Vulnerabilities ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1957",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Measles Misinformation, Ozone Recovery and Woolly Mice",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1958",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Author John Green on How Tuberculosis Shaped Our Modern World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1959",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Must Be Microplastics on the Brain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1960",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "How Did a Volcano Turn a Brain to Glass? Plus, Measles, Mystery Illness and Microbes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1961",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Why Do Songs Get Stuck in Your Head?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1962",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": " Saying Farewell to the Spacecraft That Mapped the Milky Way",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1963",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": " Measles Outbreaks, Asteroid Risks and Fish Friends",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1964",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Where Did Curly Hair Come From? Biological Anthropology May Provide Insights",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1965",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Exploring the Hidden Life in the Air around Us with Carl Zimmer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1966",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Valentine’s Day Isn’t Just for Romance—The Science of Deep Friendships",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1967",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "An Asteroid May Hit Earth in 2032. What Can We Do about It?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1968",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Microplastics on the Mind, Superstrong Shrimp and Bird Flu Transmission",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1969",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Trump’s Executive Orders Create Confusion for Researchers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1970",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Avoiding Outrage Fatigue in Overwhelming Times",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1971",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Tuberculosis Outbreak, RFK, Jr.’s Confirmation Hearings and Polar Bear Hair",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1972",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": " Are You Tired of Feeling Cynical? Hopeful Skepticism Could Be a Way Out",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1973",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Science Will Stare Directly Into the Sun--And Love It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1974",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "WHO Withdrawal, Bird Flu Updates and a Link between Fitness and Treatment Outcomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1975",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Combatting Climate Anxiety through Community Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1976",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "What the End of U.S. Net Neutrality Means For You",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1977",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "The Health Risks of Alcohol, a Red Dye Ban and Commercial Space Flights",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1978",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Do Pain and Joy Have a Universal Language?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1979",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "How the U.S. Mishandled the Early Days of Bird Flu",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1980",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Outbreaks of Norovirus, a Death from Bird Flu and Wildfires in L.A.",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1981",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Finding Pluto’s Potential Replacement with a Giant New Telescope",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1982",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Going Outside Can Change Our Hormones and Improve Microbiome Diversity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1983",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "A Farewell to 2024, and What We’re Following in the New Year",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1984",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "The New Conservationists: Thanks to Conservation Efforts, Pandas, Wolves and Panthers Are Making a Comeback (Part 4)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1985",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "The New Conservationists: Meet the Next Generation of Conservationists (Part 3)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1986",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "The New Conservationists: AI is Making Meaning from the Sounds and Visuals of Wildlife (Part 2)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1987",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "The New Conservationists: Where Do Zoos Fit into the Conservation Puzzle? (Part 1)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1988",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": " AI-Generated Audio Is Entering the Podcast World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1989",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Leaded Gasoline, Orca Hats and ‘Disease X’",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1990",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Iron Deficiency and Anemia May Be More Common Than We Know",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1991",
"addition_time": 1751279405,
"delete_time": 1751279408,
"title": "Anthony Fauci Is Worried about Bird Flu—And How Our Divisions Could Help It Hurt Us",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1992",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A Psychologist’s Tips for Avoiding Overconsumption This Black Friday",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1993",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "What RFK, Jr., Could Mean for Public Health, and How Tobacco Use Has Dropped Unevenly",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1994",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Using AI to Understand the Thoughts of the Dead",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1995",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Unscheduled C-Sections May Depend on the Color of Your Skin",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1996",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "An Off Day on Uranus, a Wildfire in Prospect Park and Dispatches from COP29",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1997",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Reflecting on our First Attempt to Speak with the Stars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1998",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Humans Inherited a World That Insects Made",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "1999",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Baseball Mud Bath, Water Woes and Wooden Satellites",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2000",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Why Weight May Not Be the Whole Story on Health",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2001",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Your Zodiac Sign Mattered in Medieval Times",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2002",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Your 2024 Election Rundown, from Climate Change to Education",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2003",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Your 2024 Election Rundown, from Health Care to Nuclear Proliferation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2004",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Exploring the Science of Spookiness at the Recreational Fear Lab",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2005",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Scurvy, Bird Flu and a Big Old Meteorite",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2006",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Spooky Lakes and the Science of Haunted Hydrology ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2007",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "What Do Societal Beauty Standards Have to Do with Breast Cancer?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2008",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Microbes Are Evolving to Eat Cleaning Supplies, and Whooping Cough Is Making a Comeback",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2009",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "What The Next President Will Do about Artificial Intelligence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2010",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Doctor Will See You, and Stop Judging You, Now",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2011",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Your Rundown of the Science Nobels, and Europa Clipper Is Delayed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2012",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Is Singing an Evolutionary Accident or a Critical Way to Connect?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2013",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Danger of Hurricane Downpours and the End of ‘Climate Havens’",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2014",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Stem Cell Treatments for Diabetes and a Dolphin’s Smile",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2015",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Hidden Secrets of Math: Uncharted Territory (Part 3)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2016",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Your Next Pain Prescription Could Come without Addiction Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2017",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Fighting Global Misinformation, Ditching Plastic Bottles, and Hunting with an Octopus",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2018",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Hidden Secrets of Math: Invented or Discovered? (Part 2)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2019",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Untangling the Link between Eating Disorders and PCOS",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2020",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Pregnancy Changes the Brain, and How Lizards Make DIY Scuba Gear",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2021",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Hidden Secrets of Math: Beauty and Power (Part 1)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2022",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Why Black Men Should Consider Earlier Screening for Prostate Cancer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2023",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": " AI Could Help Save Us from Conspiracy Theories, and Massachusetts Could Help Save Us from Our Trash",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2024",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "This Episode Was Recorded from Space",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2025",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How 9/11 Transformed Forensic Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2026",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Jellyfish Clones Swarm British Columbian Lakes, and Measles Cases Surge in Oregon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2027",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "In Sickness and Age: Finding Balance between Caregiving and Self-Care (Part 2)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2028",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Racism Might Be Accelerating Aging and Menopause",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2029",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "In Sickness and Age: Changing Family Structures and Caregiving (Part 1)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2030",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Dark Side of Houseplant Collection",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2031",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "NASA’s Perseverance Rover Ascends, Ozempic Is Linked to Depression, and Mpox Cases Spread Rapidly",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2032",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Dissecting the Linguistic Patterns of Kamala Harris",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2033",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "‘Dark Oxygen’ Is Coming from These Ocean Nodules, and We Don’t Know How",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2034",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Our Brains See Faces [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2035",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "James Cameron’s OceanXplorers Embraces Real- Life Science with Cinematic Flare",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2036",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Uncovering the Truth about Sexual Pleasure and Prostates with Science Vs’s Wendy Zukerman",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2037",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "What Happens when Space Junk Falls on Your Property?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2038",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Olympic Athletes Swim the Murky Seine, and Astronauts Are (Still) Stuck on the Space Station",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2039",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Unusual Archaeology: Investigating Ancient Human Sacrifice (Part 3)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2040",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Why Coral Reefs Need You to Listen",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2041",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Cancer Case Rates Are Rising Across Generations and a Private Spacewalk is Delayed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2042",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Unusual Archaeology: Contemplating the Cosmos (Part 2)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2043",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Sex Testing’s Long History in the Olympics and Other Elite Sports",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2044",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Cocaine Sharks and the Hottest Days on Record (So Far)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2045",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Unusual Archaeology: Ancient Chambers and Ocean Tides (Part 1)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2046",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Advanced Meditation Can ‘Reset’ the Brain ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2047",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Windows Devices Go Down, COVID Rates Go Up, and Tornadoes Touchdown on the Ground and on the Big Screen",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2048",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Cleaning Up Paris’s Poop River for the Olympics ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2049",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Name a Quasi-Moon with Radiolab Host Latif Nasser",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2050",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Kavli Prize Presents: Building Materials From The Bottom Up [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2051",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Astronauts Can Drink More Recycled Pee Than Ever, and You Can Still Catch the Plague",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2052",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "On Thin Ice: Contemplating Our Climate Future in Antarctica (Part 4)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2053",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Saving the Last Truly Wild Horse",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2054",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A Blast from Our Past and Plans for a Petrochemical-Free Future",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2055",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Supreme Court Plays Hot Potato with Idaho’s Abortion Restrictions, and NASA Plays It Safe with Starliner",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2056",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "On Thin Ice: Life Onboard an Antarctic Icebreaker (Part 3)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2057",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How to Stay Cool during Record-Breaking Heat Waves",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2058",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Your Penis Might Be Full of Microplastics, and The Seine is Definitely Full of Bacteria",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2059",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "On Thin Ice: Penguins in Paradise (Part 2)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2060",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "What Happens if a Nuclear Weapon Goes Off in Space?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2061",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "‘Flying’ Joro Spiders Are No Big Deal, and Starlink Satellites Are Not So Great for The Ozone Layer ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2062",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "On Thin Ice: Supercharged Phytoplankton (Part 1)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2063",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "What’s Actually In Your Tattoo Ink? No One Really Knows",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2064",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Rock Samples Taken from Far Side of the Moon and a ‘Morning-After Pill’ for STIs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2065",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Do Plants ‘Think’? We Might Not Know Enough about Consciousness to be Certain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2066",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Snacking on Cicadas Is Nutritious, Sustainable, and—Yes—Delicious",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2067",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": " Auroras Are on the Horizon, and Bird Flu Is on the Menu",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2068",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Troubled Waters on Cape Cod: Liquid Gold (Part 3)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2069",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Science Behind Curly Hair [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2070",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How to Protect Wildlife without Leaving Home",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2071",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Troubled Waters on Cape Cod: Sticker Shock (Part 2)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2072",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Apocalypse Is Going to Be a Lot Friendlier Than You Think",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2073",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "AI Is Getting Creepier and Risky Cheese Is Getting Trendier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2074",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Troubled Waters on Cape Cod: Loved to Death (Part 1)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2075",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A Citrus-Scented Cannabis Compound Reduces Anxiety for Weed Users",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2076",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Internet Is Full of Deepfakes, and the Sky Is Full of Trash",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2077",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Introducing Science Quickly’s New Host, Rachel Feltman",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2078",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Can Food Work as Medicine?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2079",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Corals Are Once Again Bleaching En Masse, but Their Fate Isn’t Sealed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2080",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Episode 3: A Long-Awaited Climate Experiment Is Poised to Launch in the Amazon. What Will It Find?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2081",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Episode 2: A Singular Climate Experiment Takes Shape in the Amazon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2082",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Episode 1: Will the Amazon Help Save the Planet?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2083",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Big a Threat Is Bird Flu?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2084",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How a New AI Model Helps Volcanic History Rise from the Ashes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2085",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Do Sperm Whales Have Culture?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2086",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Measles Is Back, and That’s Scary",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2087",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Did the Eclipse Give You the Amateur Astronomy Bug? Here’s How to Get Started",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2088",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A Veteran Eclipse Chaser Explains the Thrill of Totality",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2089",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Three Times Eclipses Eclipsed Previous Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2090",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Humans Find Total Eclipses Startling. What About a Komodo Dragon?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2091",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Inside the Race to Protect Artists from Artificial Intelligence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2092",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Tale of the Snail Slime Wrangler",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2093",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Mucus Saves Your Life Every Day",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2094",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Magical Mucus: On the Benefits of Getting Slimed by a Hagfish",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2095",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Artificial Intelligence Helped Write this Award-Winning Song",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2096",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Why Short Naps Are Good for You",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2097",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Great Debate: Could We Ever Travel through Time?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2098",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Science behind Humpback Whales’ Eerie Songs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2099",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Large Study of ME/CFS Patients Reveals Measurable Physical Changes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2100",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Hunger in Gaza Could Affect Survivors' Health for Decades ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2101",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "These Invasive Ants Are Changing How Lions Hunt ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2102",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Should You Swab Your Throat Plus Your Nose for COVID?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2103",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Is This the Earliest Evidence of Human Cannibalism?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2104",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": " What Do You Mean, Bisexual People Are ‘Risk-Taking’? Why Genetic Studies about Sexuality Can Be Fraught ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2105",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Asexuality Research Has Reached New Heights. What Are We Learning?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2106",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How to Close the Orgasm Gap for Heterosexual Couples",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2107",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Dominatrices Are Showing People How to Have Rough Sex Safely",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2108",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How to Explore Your Sexuality, according to Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2109",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "You Can't Fix Burnout With Self-Care",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2110",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How April’s Eclipse Will Solve Solar Mysteries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2111",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "When Will We Finally Have Sex In Space? ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2112",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Is This Ancient Cattle Breed Fighting Wildfires in Portugal?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2113",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Government's Former UFO Hunter Has a Lot to Say",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2114",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Quantum Computers Might Make All of Your Private Data Less Secure",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2115",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "For 60+ years, respiratory syncytial virus (RSV) vaccines have evaded scientists. But now that's changed [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2116",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "New IVF Test Could Increase Chances of Pregnancy Success",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2117",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How to Save Indigenous Languages",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2118",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Can AI Predict When You Die?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2119",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Best Way to Use Home COVID Tests Right Now",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2120",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "From Drunken Stupor to Sober with One (Hormone) Shot",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2121",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Does the World’s Largest Seabird Know Where to Fly?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2122",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Without the Moon, You Wouldn't Exist (Probably)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2123",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Strange and Beautiful Science Of Our Lives",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2124",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Surprising Health Benefits of Dog Ownership",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2125",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Podcasts of the Year: Cleo, the Mysterious Math Menace",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2126",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Podcasts of the Year: Talking to Animals using Artificial Intelligence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2127",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How to Avoid Holiday Hangovers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2128",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Podcasts of the Year: What Better Gift for the Holidays Than a Monstrous Mystery?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2129",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Are Orca Whales Friends or Foes?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2130",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Turns Out Undersea Kelp Forests Are Crucial to Salmon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2131",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Researchers Just Created the World's First Permafrost Atlas of the Entire Arctic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2132",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A New Type of Heart Disease is on the Rise",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2133",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "AI Can Now Read Your Cat's Pain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2134",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "These Researchers Put Sperm Through a Kind of 'Hunger Games'",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2135",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Is Too Little Play Hurting Our Kids?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2136",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Misinformation Spreads through Conflict",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2137",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Why Childhood Vaccination Rates Are Falling",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2138",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Climate Adaptation Can Backfire If We Aren't Careful",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2139",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Members of This Reservation Learned They Live with Nuclear Weapons. Can Their Reality Ever Be the Same?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2140",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "What Would It Mean to 'Absorb' a Nuclear Attack?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2141",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "If You Had a Nuclear Weapon in Your Neighborhood, Would You Want to Know about It?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2142",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Just One U.S. Reservation Hosts Nuclear Weapons. This Is The Story of How That Came to Be",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2143",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Did Nuclear Weapons Get on My Reservation?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2144",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Quick Naps Are Good for Your Brain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2145",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Funding for Research on Psychedelics Is on the Rise, Along with Scientists' Hopes for Using Them",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2146",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Do You Need to 'Trip' for Psychedelics to Work as Medicine?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2147",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Search for New Psychedelics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2148",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "What Are Ultraprocessed Foods, and Are They Bad for You?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2149",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "These Creatures Are Probably the Closest Thing Nature Has to Real Werewolves",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2150",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The World's Most Frightening Animal Sounds like This",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2151",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Tale of the Rotifer That Came Back to Life after 25,000 Years in an Icy Tomb",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2152",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Generative AI Models Are Sucking Up Data from All Over the Internet, Yours Included",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2153",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Some Parents Show Their Kids They Care with a Corpse",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2154",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How to Handle This New COVID Season",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2155",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "As Arctic Sea Ice Breaks Up, AI Is Starting to Predict Where the Ice Will Go",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2156",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Scientists Argue Conservation Is under Threat in Indonesia",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2157",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A Soggy Mission to Sniff Out a Greenhouse Gas 'Bomb' in the High Arctic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2158",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "This Indigenous Community Records the Climate Change That Is Causing Its Town to Erode Away",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2159",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Journey to the Thawing Edge of Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2160",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A Popular Decongestant Doesn't Work. What Does?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2161",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The State of Large Language Models",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2162",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Song of the Stars, Part 3: The Universe in all Senses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2163",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Song of the Stars, Part 2: Seeing in the Dark",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2164",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Song of the Stars, Part 1: Transforming Space into Symphonies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2165",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "This Researcher Captured Air from the Amazon in Dive-Bombs--And Found Grim Clues That the Forest Is Dying",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2166",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Should You Get a Blood Test For Alzheimer's?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2167",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Ada Limón's Poem for Europa, Jupiter's Smallest Galilean Moon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2168",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How the Woolly Bear Caterpillar Does Something Pretty Amazing to Survive the Winter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2169",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Bees 'Buzz' in More Ways Than You Might Think",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2170",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Scientists Are Beginning to Learn the Language of Bats and Bees Using AI",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2171",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Trying to Train Your Brain Faster? Knowing This Might Help with That",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2172",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "This Tick Bite Makes You Allergic to Red Meat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2173",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "This Lesbian Monkey Love Triangle Tells Us Something Really Interesting about Darwin's 'Paradox'",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2174",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "What the Luddites Can Teach Us about AI",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2175",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A Pig Kidney Was Just Transplanted Into a Human Body, and It Is Still Working",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2176",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Migratory Birds Are in Peril, but Knowing Where They Are at Night Could Help Save Them",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2177",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Artificial Intelligence Is Helping Us 'See' Some of the Billions of Birds Migrating at Night",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2178",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Here's How You Go Birding in the Middle of the Night",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2179",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Using Human-Sized Microphones and Hay Bales, They Unlocked the Mysteries of Bird Migration",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2180",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "They Tap Into the Magical, Hidden Pulse of the Planet, but What is the Nighttime Bird Surveillance Network?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2181",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Hearing Aids Stave Off Cognitive Decline",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2182",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "In This Ancient Garden, Plants Can Cure or Kill You",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2183",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Fungi Economy, Part 3: Can Climate Modeling from Space Save Our Forests?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2184",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Fungi Economy, Part 2: Here's How Plants and Fungi Trade beneath Our Feet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2185",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Fungi Economy, Part 1: Just like Us, Trees Are Experiencing Inflation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2186",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Could Weight-Loss Drugs Curb Addiction? Your Health, Quickly, Episode 12",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2187",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How to Roll a Joint Perfectly, according to Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2188",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Here's How AI Can Predict Hit Songs With Frightening Accuracy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2189",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Here's Why Actors Are So Worried about AI",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2190",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Are You a Lucid Dreamer?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2191",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Here's What 'Oppenheimer' Gets Right--And Wrong--About Nuclear History",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2192",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Stress Messes With Your Gut",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2193",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Should We Care About AI's Emergent Abilities?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2194",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "What That Jazz Beat Tells Us about Hearing and The Brain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2195",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Just like People, Orangutans Get Smoker's Voice",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2196",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Doctor AI Will See You Now",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2197",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "El Niño is Back. What Does That Mean For You?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2198",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Kavli Prize Presents: How Your Brain Maps the World [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2199",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Universe Is Abuzz with Giant Gravitational Waves, and Scientists Just Heard Them (Maybe)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2200",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Poisons and Perils on the Salton Sea",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2201",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "These Ants Are Probably Better at Navigating Than You Are",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2202",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How to Cool Down Fast in Summer Heat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2203",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Follow a Hurricane Expert into the Heart Of the Beast",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2204",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Have Astronomers Seen the Universe's First Stars?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2205",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Cleo, the Mysterious Math Menace",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2206",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "MDMA Moves from Party Drug Back to Therapy Tool",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2207",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Five Things You Need to Know about Wildfire Smoke Right Now",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2208",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "These Predators Had a Face like an Axe and Will Haunt Your Nightmares",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2209",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "This Thunderous Goose Relative Was Built like a Tank with the Wings of a Songbird",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2210",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "This Gargantuan Bird Weighed as Much as a Sports Car",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2211",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "This Massive Scientific Discovery Sat Hidden in a Museum Drawer for Decades",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2212",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Kavli Prize Presents: Understanding the Machinery of the Cell [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2213",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "What the End of the COVID Emergency Means for You",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2214",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Heat Waves Are Breaking Records. Here's What You Need to Know",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2215",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Why We're Worried about Generative AI",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2216",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Dismantling the PFAS 'Forever Chemicals' Legacy [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2217",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Understanding Dissociative Identity Disorder through the 'Community' of Ella",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2218",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Is Time Travel Even Possible?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2219",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Parrot Babies Babble Just like Us",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2220",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A 19th-Century Obscenity Law Is Being Used Again to Limit Abortion",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2221",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "These Mini Ecosystems Existed Underfoot of Dinosaurs, but Our Parking Lots Might Pave Them to Extinction",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2222",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "This $600-Million Room Contains the World's Largest Collection of These Tiny Endangered Animals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2223",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Surviving in the Ephemeral Pools of Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2224",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "This Fleeting Ecosystem Is Magical, and You Have Probably Never Heard of It or Even Noticed It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2225",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Do We Need To Save the Whales Again?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2226",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Bad Side of 'Good' Cholesterol",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2227",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "AI Chatbots and the Humans Who Love Them",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2228",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A Mission to Jupiter's Strange Moons Is Finally on Its Way",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2229",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Surprising Backstory behind Witch Hunts and Reproductive Labor",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2230",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "What You Need to Know about GPT-4",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2231",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Good News for Coffee Lovers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2232",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Meet the Magnificent Microbes of the Deep Unknown",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2233",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Zombifying Fungi Became Master Manipulators",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2234",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Science Has New Ideas about 'Oumuamua's Weirdness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2235",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Open Offices Aren't Working, so How Do We Design an Office That Does?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2236",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Cosmos, Quickly: Remembering the Genius of Vera Rubin",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2237",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Long COVID's Roots in the Brain: Your Health, Quickly, Episode 3",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2238",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "If AI Starts Making Music on Its Own, What Happens to Musicians?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2239",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Music-Making Artificial Intelligence Is Getting Scary Good",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2240",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Artificial Intelligence Helped Make the Coolest Song You've Heard This Week",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2241",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Space Force Humor, Laser Dazzlers, and the Havoc a War in Space Would Actually Wreak",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2242",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Squeak Squeak, Buzz Buzz: How Researchers Are Using AI to Talk to Animals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2243",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "RSV Vaccines Are Coming At Last: Your Health, Quickly, Episode 2",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2244",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "If the Mathematical Constant Pi Was a Song, What Would It Sound Like?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2245",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How To Stop a (Potentially Killer) Asteroid",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2246",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Scientific Secret to Soothing Fussy Babies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2247",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Helper Sharks Discovered the World's Largest Seagrass Ecosystem",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2248",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How the Woolly Bear Caterpillar Turns into a Popsicle to Survive the Winter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2249",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Pandemic's Mental Toll, and Does Telehealth Work? Your Health, Quickly, Episode 1",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2250",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Does Not Being Able to Picture Something in Your Mind Affect Your Creativity?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2251",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Sorry, UFO Hunters--You Might Just Be Looking at a Spy Balloon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2252",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Building Resilience in the Face of Climate Change [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2253",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Do We Find Aliens? Maybe Unlearn What We Know About 'Life' First",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2254",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Love and the Brain: Do Partnerships Really Make Us Happy? Here's What the Science Says",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2255",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Love and the Brain: The Animal Matchmaker and the Panda Romeo and Juliet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2256",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Love and the Brain: How Attached Are We to Attachment Styles?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2257",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Love and the Brain, Part 1: The 36 Questions, Revisited",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2258",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Coming Soon to Your Podcast Feed: Science, Quickly",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2259",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The 60-Second Podcast Takes a Short Break--But Wait, There's More",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2260",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Is Your Phone Actually Draining Your Brain?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2261",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Why Your Dog Might Think You're a Bonehead",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2262",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Alaska's Protective Sea Ice Wall Is Crumbling because of the Climate Crisis",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2263",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "It's the Bass That Makes Us Boogie",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2264",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Vaccines Saved Money and Lives and China's Zero-COVID Protests: COVID, Quickly Podcast, Episode 44",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2265",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "'Chatty Turtles' Flip the Script on the Evolutionary Origins of Vocalization in Animals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2266",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Tardigrades, an Unlikely Sleeping Beauty",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2267",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A Burned Redwood Forest Tells a Story of Climate Change, Past, Present and Future",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2268",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Antivirals Could Reduce Long COVID Risk and How Well the New Boosters Work: COVID, Quickly Podcast, Episode 43",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2269",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A Honeybee Swarm Has as Much Electric Charge as a Thundercloud",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2270",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "These Punk Rock Penguins Have a Bizarre Breeding Strategy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2271",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Viral Triple Threat and Why You Need a Booster: COVID, Quickly, Episode 42",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2272",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "What You Need to Know about Iran's Surveillance Tech",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2273",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Delivering Equitable Lung Cancer Care [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2274",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "New Halloween 'Scariant' Variants and Boosting Your Immunity: COVID, Quickly, Episode 41",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2275",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "These Hawks Have Figured Out How to See the Bat in the Swarm",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2276",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Naps Not Needed to Make New Memories",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2277",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How the Pandemic Shortened Life Expectancy and New Drugs on the Horizon: COVID, Quickly, Episode 40",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2278",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Engineering the Treatment of Early-Stage Lung Cancer [SPONSORED]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2279",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Rediscovered Red Wolf Genes May Help Conserve the Species",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2280",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "What the Disease Feels Like, and Presidents Can't End Pandemics: COVID, Quickly, Episode 39",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2281",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "These Spiders Use Their Webs like Huge, Silky Ears",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2282",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Chewing Consumes a Surprising Amount of Energy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2283",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "These Bats Buzz like Bees to Save Their Own Lives",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2284",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Unvaxxed Kids and 8 Days a Week (of Isolation): COVID, Quickly, Episode 38",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2285",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Listen to Images from the James Webb Space Telescope",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2286",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "These Tiny Pollinators Can Travel Surprisingly Huge Distances",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2287",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "During a Heat Wave, You Can Blast the AC, but What Does a Squirrel Do?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2288",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Back-to-School Special: Kids, Tests and Long COVID Reassurance: COVID, Quickly, Episode 37",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2289",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "This Artificial Intelligence Learns like a Baby",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2290",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Understanding the Inner Workings of Stars [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2291",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Dogs Actually Tear Up When Their Owners Come Home",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2292",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A Lifelong Quest to Improve Mental Health among Cancer Patients [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2293",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Next-Generation Sequencing Can Enable Precision Oncology [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2294",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Hawking, a Paradox and a Black Hole Mystery, Solved?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2295",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Monkeypox Update and Homing in on Long COVID: COVID, Quickly, Episode 36",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2296",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Fueling Patients' Drive to Treatment [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2297",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Researchers Created a Potion That Turns Loud Lions into Placid Pussycats",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2298",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Reaching the Root of Disparities in Cancer Care [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2299",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "For Some Dolphins, the Key to Mating is Rolling with a Tight, Noisy Crew",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2300",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A Source of Integrative Support for Breast and Ovarian Cancer Patients [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2301",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Common Are Reinfections? And How Trust Can Beat the Virus: COVID, Quickly, Episode 35",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2302",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Kavli Prize Presents: Understanding Molecules [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2303",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Transforming the Trajectory of Lung Cancer [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2304",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Polar Bears That Persist",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2305",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Omicron's Nasty New Variants and Better Boosters to Battle Them: COVID, Quickly, Episode 34",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2306",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A Remote-Controlled Carnivorous Plant?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2307",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Kids' Vaccines at Last and Challenges in Making New Drugs: COVID, Quickly, Episode 33",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2308",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How AI Facial Recognition Is Helping Conserve Pumas",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2309",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Kavli Prize Presents: Understanding Neurodevelopment and Neurodegeneration [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2310",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Female CEOs Change How Firms Talk about Women",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2311",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "COVID Death Rates Explained, Dismal Booster Stats and New Vaccines",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2312",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Hedgehogs Host the Evolution of Antibiotic Resistance",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2313",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Meerkats Are Getting Climate Sick",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2314",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "'Where Are Vaccines for Little Kids?' and the Latest on Long COVID",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2315",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Your Phone Could Be Used to Prosecute for Getting an Abortion: Here's How",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2316",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "If Sea Ice Melts in the Arctic, Do Trees Burn in California?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2317",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How to Care for COVID at Home, and Is That Sniffle Allergies or the Virus? COVID Quickly, Episode 30",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2318",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Astronomers Finally Captured a Photo of our Own Galaxy's Black Hole",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2319",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Two-Headed Worms Tell Us Something Fascinating about Evolution",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2320",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Harmful Effects of Overturning Roe v. Wade",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2321",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Safer Indoor Air, and People Want Masks on Planes and Trains: COVID Quickly, Episode 29",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2322",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Climate Change Is Shrinking Animals, Especially Bird-Brained Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2323",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Cosmic Simulation Shows How Dark-Matter-Deficient Galaxies Confront Goliath and Survive",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2324",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Venturing Back to the Office and the Benefits of Hybrid Immunity: COVID Quickly, Episode 28",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2325",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Science Finally Has a Good Idea about Why We Stutter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2326",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Love Computers? Love History? Listen to This Podcast",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2327",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Probiotics Could Help Save Overheated Corals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2328",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The History of the Milky Way Comes into Focus",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2329",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Second Boosters, Masks in the Next Wave and Smart Risk Decisions: COVID Quickly, Episode 27",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2330",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "New Research Decodes the Sea Cow's Hidden Language",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2331",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Does This Look like a Face to You?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2332",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Some Good News about Corals and Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2333",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Florida Gets Kids and Vaccines Wrong and Ukraine's Health Crisis: COVID Quickly, Episode 26",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2334",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Are You Better Than a Machine at Spotting a Deepfake?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2335",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A Treasure Trove of Dinosaur Bones in Italy Rewrites the Local Prehistoric Record",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2336",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Chimps Apply Insects to Their Wounds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2337",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Push to Move Past the Pandemic: COVID Quickly, Episode 25",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2338",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Researchers Analyzed Folk Music like It Was DNA: They Found Parallels between Life and Art",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2339",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Hong Kong 'Sees' Invisible Tailpipe Emissions and Pulls Polluters Off the Road",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2340",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "This Maine Farm Is Harvesting the Sun's Power while it Picks the Blueberries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2341",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Tracking Outbreaks through Sewers, and Kids' Vaccines on Hold Again: COVID Quickly, Episode 24",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2342",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Romantic Temptation of the Monogamous Prairie Vole",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2343",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Answering an Age-Old Mystery: How Do Birds Actually Fly?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2344",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "More Kids Get COVID, Long Haulers and a Vaccine Milestone: COVID Quickly, Episode 23",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2345",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "What Is the Shape of This Word?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2346",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Tiger Sharks, Tracked over Decades, Are Shifting Their Haunts with Ocean Warming",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2347",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Marine Wildlife Can Coexist with Offshore Wind [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2348",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "COVID Quickly, Episode 22: Colds Build COVID Immunity and the Omicron Vaccine Delay",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2349",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Surprising Physics of Finger Snapping",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2350",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Salvador Dali's Creative Secret Is Backed by Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2351",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A Growing Force of Fiery Zombies Threatens Cold Northern Forests",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2352",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Listen to This New Podcast: Lost Women of Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2353",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Canary Islands Eruption Resets Volcano Forecasts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2354",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "COVID Quickly, Episode 21: Vaccines against Omicron and Pandemic Progress",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2355",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "As Forests Burn, a Climate Puzzle Materializes in the Far North",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2356",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Astronomers Spot Two Dust Bunnies Hiding in the Early Universe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2357",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "COVID Quickly, Episode 20: The Omicron Scare, and Anti-COVID Pills Are Coming",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2358",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "To Better Persuade a Human, a Robot Should Use This Trick",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2359",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Redo of a Famous Experiment on the Origins of Life Reveals Critical Detail Missed for Decades",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2360",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "COVID Quickly, Episode 19: Mandate Roadblocks, Boosters for All and Sickness in the Zoo",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2361",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Flocking Together May Have Helped Dinosaurs Dominate the Earth",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2362",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Engineered Bacteria Use Air Bubbles as Acoustically Detonated Tumor TNT",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2363",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "COVID Quickly, Episode 18: Vaccines for Kids and the Limits of Natural Immunity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2364",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "These Bugs Produce Smelly Defenses That Need to Be Heard to Be Believed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2365",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "For Some Parents, Hiding a Dead Body Shows How Much You Care",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2366",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Date of the Vikings' First Atlantic Crossing Revealed by Rays from Space",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2367",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "COVID Quickly, Episode 17: Vaccine Lies and Protecting Immunocompromised People",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2368",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "How Can an Elephant Squeak Like a Mouse?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2369",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Beethoven's Unfinished 10th Symphony Brought to Life by Artificial Intelligence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2370",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Kavli Prize Presents: Understanding the Universe [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2371",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A Canary in an Ice-Rich, Slumping Rock Glacier in Alaska",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2372",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "COVID Quickly, Episode 16: Vaccines Protect Pregnancies and a New Antiviral Pill",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2373",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Mystery of Water Drops That Skate Across Oil at Impossible Speeds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2374",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Night Flights Are No Sweat for Tropical Bees",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2375",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "These Bacteria Steal from Iron and Could Be Secretly Helping to Curb Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2376",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "COVID, Quickly, Episode 15: Booster Shot Approvals--plus Vaccines for Kids?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2377",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Dinosaurs Lived--and Made Little Dinos--in the Arctic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2378",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "During a Rodent Quadrathlon, Researchers Learn That Ground Squirrels Have Personalities",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2379",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "A Car Crash Snaps the Daydreaming Mind into Focus",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2380",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "COVID, Quickly, Episode 14: Best Masks, Explaining Mask Anger, Biden's New Plan",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2381",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Kavli Prize Presents: Understanding Atoms [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2382",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "In Missouri, a Human 'Bee' Works to Better Understand Climate Change's Effects",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2383",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "These Baby Bats, like Us, Were Born to Babble",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2384",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Their Lives Have Been Upended by Hurricane Ida",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2385",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "COVID, Quickly, Episode 13: Vaccine Approval, Breakthrough Infections, Boosters",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2386",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Flexible Microprocessor Could Enable an 'Internet of Everything'",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2387",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Years Before COVID-19, Zombies Helped Prepare One Hospital System for the Real Pandemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2388",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Incredible, Reanimated 24,000-Year-Old Rotifer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2389",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Astronomers Find an Unexpected Bumper Crop of Black Holes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2390",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Inside Millions of Invisible Droplets, Potential Superbug Killers Grow",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2391",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Secret behind Songbirds' Magnetic Migratory Sense",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2392",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "COVID, Quickly, Episode 12: Masking Up Again and Why People Refuse Shots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2393",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "The Kavli Prize Presents: Understanding Touch [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2394",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Moths Have an Acoustic Invisibility Cloak to Stay under Bats' Radar",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2395",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "COVID, Quickly, Episode 11: Vaccine Booster Shots, and Reopening Offices Safely",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2396",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "Your Brain Does Something Amazing between Bouts of Intense Learning",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2397",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "COVID, Quickly, Episode 10: Long Haulers, Delta Woes and Barbershop Shots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2398",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "This Newly Discovered Species of Tree Hyrax Goes Bark in the Night",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2399",
"addition_time": 1751279406,
"delete_time": 1751279408,
"title": "COVID, Quickly, Episode 9: Delta Variant, Global Vaccine Shortfalls, Beers for Shots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2400",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Animal Kids Listen to Their Parents Even before Birth",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2401",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "For African Elephants, Pee Could Be a Potent Trail Marker",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2402",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "A 'Universal' Coronavirus Vaccine to Prevent the Next Pandemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2403",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "COVID, Quickly, Episode 8: The Pandemic's True Death Toll and the Big Lab-Leak Debate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2404",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Puppies Understand You Even at a Young Age, Most Adorable Study of the Year Confirms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2405",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "New 3-D-Printed Material Is Tough, Flexible--and Alive",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2406",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Bats on Helium Reveal an Innate Sense of the Speed of Sound",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2407",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "The Dirty Secret behind Some of the World's Earliest Microscopes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2408",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "COVID, Quickly, Episode 7: The Coming Pandemic Grief Wave, and Mask Whiplash",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2409",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Math and Sleuthing Help to Explain Epidemics of the Past",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2410",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Who Laps Whom on the Walking Track--Tyrannosaurus rex or You? Science Has a New Answer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2411",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Artificial Light Keeps Mosquitoes Biting Late into the Night",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2412",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "COVID, Quickly, Episode 6: The Real Reason for India's Surge and Mask Liftoff",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2413",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Male Lyrebirds Lie to Get Sex",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2414",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Lovebirds Adore Our Inefficient Air-Conditioning",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2415",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "COVID, Quickly, Episode 5: Vaccine Safety in Pregnancy, Blood Clots and Long-Haul Realities",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2416",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Beehives Are Held Together by Their Mutual Gut Microbes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2417",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "These Endangered Birds Are Forgetting Their Songs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2418",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "To Fight Climate Change: Grow a Floating Forest, Then Sink It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2419",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "COVID, Quickly, Episode 4: The Virtual Vaccine Line and Shots for Kids",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2420",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Big Physics News: The Muon g-2 Experiment Explained",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2421",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Boston's Pigeons Coo, 'Wicked'; New York's Birds Coo, 'Fuhgeddaboudit'",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2422",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Imperiled Freshwater Turtles Are Eating Plastics--Science Is Just Revealing the Threat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2423",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "COVID, Quickly, Episode 3: Vaccine Inequality--plus Your Body the Variant Fighter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2424",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Using Dragonflies as Contamination Detectors",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2425",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Smartphones Can Hear the Shape of Your Door Keys",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2426",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Chimpanzees Show Altruism while Gathering around the Juice Fountain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2427",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "COVID, Quickly, Episode 2: Lessons from a Pandemic Year",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2428",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "That Mouse in Your House--It's Smarter, Thanks to You",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2429",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Kangaroos with Puppy Dog Eyes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2430",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "COVID, Quickly, Episode 1: Vaccines, Variants and Diabetes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2431",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Machine Learning Pwns Old-School Atari Games",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2432",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "E-Eggs Track Turtle Traffickers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2433",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Bromances Could Lead to More Romances for Male Hyenas",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2434",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "A Heroic Effort to Measure Helium",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2435",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2436",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Scientists Take a Cattle Head Count in India",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2437",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Ancient Dogs Had Complex Genetic Histories",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2438",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Bees Use 'Bullshit' Defense to Keep Giant Hornets at Bay",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2439",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Humans May Have Befriended Wolves with Meat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2440",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "How to Avoid Becoming a Meal for a Cheetah",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2441",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "How the Coronavirus Pandemic Shaped Our Language in 2020",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2442",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from around the Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2443",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Ravens Measure Up to Great Apes on Intelligence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2444",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Baby Bees Deprive Caregivers of Sleep",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2445",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "How the Wolves Change the Forest",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2446",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Brain Sides Are Both Busy in New Language Learning",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2447",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "A Nurse's Message about the COVID-19 Vaccine",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2448",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Eye Treatment Stretches Mouse Sight Beyond Visible Spectrum",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2449",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "This Bat Wears a Face Mask",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2450",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "The Denisovans Expand Their Range into China",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2451",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Undersea Earthquakes Reveal Sound Warming Info",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2452",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Duckbill Dino Odyssey Ended in Africa",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2453",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Early Mammals Had Social Lives, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2454",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from All Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2455",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Divide and Conquer Could Be Good COVID Strategy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2456",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Zebra Coloration Messes With Fly Eyes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2457",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science Sound(E)scapes: Head Banging and Howling in the Amazon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2458",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science Sound(E)scapes: Amazon Frog Choruses at Night",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2459",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science Sound(E)scapes: Amazon Pink River Dolphins",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2460",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Frog Vocals Lead to Small Preference",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2461",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from around the Globe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2462",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Election Science Stakes: Technology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2463",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Election Science Stakes: Energy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2464",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Election Science Stakes: Environment",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2465",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Election Science Stakes: Climate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2466",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Election Science Stakes: Medicine and Public Health",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2467",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Election 2020: The Stakes for Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2468",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Why Some Easter Island Statues Are Where They Are",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2469",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Acorn Woodpeckers Fight Long, Bloody Territorial Wars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2470",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Funky Cheese Rinds Release an Influential Stench",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2471",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Dinosaur Asteroid Hit Worst-Case Place",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2472",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "River Ecosystem Restoration Can Mean Just Add Water",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2473",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "3,000-Year-Old Orbs Provide a Glimpse of Ancient Sport",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2474",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Humans Make Wild Animals Less Wary",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2475",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Play Helped Dogs Be Our Best Friends",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2476",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Neandertal DNA May Be COVID Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2477",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Nobelist Talks CRISPR Uses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2478",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Blue Whale Song Timing Reveals Time to Go",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2479",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "New Nobel Laureate Talks Today's Virology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2480",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Greenland Is Melting Faster Than Any Time in Past 12,000 Years",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2481",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Sloths Slowly Cavort by Day Now",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2482",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Dinosaurs Got Cancer, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2483",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Fluttering Feathers Could Spawn New Species",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2484",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2485",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "These Small Mammals Snort to a Different Tune",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2486",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Ice Age Temperatures Help Predict Future Warming",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2487",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "High-Elevation Hummingbirds Evolved a Temperature Trick",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2488",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Why Pet Pigs Are More like Wolves Than Dogs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2489",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Bricks Can Be Turned into Batteries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2490",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Leftovers Are a Food-Waste Problem",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2491",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Some Dinosaurs Probably Nested in Arctic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2492",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Star Systems Can Be Born Topsy-Turvy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2493",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Death by Lightning Is Common for Tropical Trees",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2494",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2495",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Alaska's Salmon Are Shrinking",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2496",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "End of 'Green Sahara' May Have Spurred a Megadrought in Southeast Asia",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2497",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "White Rhinos Eavesdrop to Know Who's Who",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2498",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Prehistoric Marine Reptile Died after a Giant Meal",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2499",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Cows with Eye Images Keep Predators in Arrears",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2500",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Warbler Species Fires Up Song Diversity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2501",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Why Lava Worlds Shine Brightly (It's Not the Lava)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2502",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Aardvarks Are Ailing amid Heat and Drought",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2503",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "The World's Highest-Dwelling Mammal Lives atop a Volcano",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2504",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Dampening of the Senses Is Linked to Dementia Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2505",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Translucent Frog Optics Create Camo Color",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2506",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Paired Comparisons Could Mean Better Witness Identifications",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2507",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Foxes Have Dined on Our Leftovers for 30,000 Years",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2508",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Mexico Caves Reveal Ancient Ocher Mining",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2509",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "In Bee Shortage, Bubbles Could Help Pollinate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2510",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from around the Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2511",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Seismologists Find the World Quieted Down during Pandemic Lockdowns",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2512",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Old Art Offers Agriculture Info",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2513",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "How COVID-19 Decreases Weather Forecast Accuracy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2514",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Cricket Avoids Being Bat Food by Doing Nothing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2515",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Speaker System Blocks City Noise",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2516",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Civil War Vaccine May Have Lessons for COVID-19",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2517",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Can People ID Infectious Disease by Cough and Sneeze Sounds?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2518",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Why Some Birds Are Likely To Hit Buildings",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2519",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Sparrow Song Undergoes Key Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2520",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Polynesians and Native South Americans Made 12th-Century Contact",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2521",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Animals Appreciate Recent Traffic Lull",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2522",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Bat Says Hi as It Hunts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2523",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Forests Getting Younger and Shorter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2524",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Young Great White Sharks Eat off the Floor",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2525",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Tweets Reveal Politics of COVID-19 ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2526",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Nature's Goods and Services Get Priced",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2527",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Animal Migrations Track Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2528",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2529",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Stiffer Roads Could Drive Down Carbon Emissions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2530",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Unicorns of the Sea Reveal Sound Activities",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2531",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Human Speech Evolution Gets Lip-Smacking Evidence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2532",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Printed Coral Could Provide Reef Relief",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2533",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "'Snot Palaces' Reveal Undersea Creature Secrets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2534",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Helping Kids Cope with COVID-19 Worries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2535",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Ancient DNA Rewrites Dead Sea Scroll History",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2536",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Whale Protections Need Not Cause Lobstering Losses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2537",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "How to Keep COVID-19 Conspiracies Contained",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2538",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Bioluminescence Helps Prey Avoid Hungry Seals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2539",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "3 Words Mislead Online Regional Mood Analysis",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2540",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "COVID Has Changed Soundscapes Worldwide",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2541",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from All Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2542",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Colorful Corals Beat Bleaching",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2543",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Skinny Genes Tell Fat to Burn",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2544",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Malaria Mosquitoes Are Biting before Bed-Net Time",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2545",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "We're Being Tested",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2546",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Barn Owl Babies Can Be Helpful Hatch Mates",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2547",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Donut Sugar Could Help Stored Blood Last",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2548",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Lemur Flirting Uses Common Scents",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2549",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Flamingos Can Be Picky about Company",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2550",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Horses Recognize Pics of Their Keepers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2551",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Tapirs Help Reforestation via Defecation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2552",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Virus-Infected Bees Practice Social Distancing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2553",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "New Data on Killer House Cats",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2554",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2555",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Birds on Rhinos' Back Help Them Avoid Poachers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2556",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Jane Goodall: We Can Learn from This Pandemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2557",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Our 3,000th Episode",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2558",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "How Herbivore Herds Might Help Permafrost",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2559",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Lung Cancer Screen Could Be Easy Pee-sy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2560",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Obama Talks Some Science Policy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2561",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Red-Winged Blackbirds Understand Yellow Warbler Alarms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2562",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Waiter, What's This Worm Doing in My Sushi?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2563",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "What's a Narwhal's Tusk For?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2564",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Coronavirus Misinformation Is Its Own Deadly Condition",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2565",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Coronavirus Can Infect Cats",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2566",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Squid's Glowing Skin Patterns May Be Code",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2567",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Bird Fossil Shared Earth with T. rex",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2568",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "City Birds: Big-Brained with Few Offspring or Small-Brained with a Lot",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2569",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Coyotes Eat Everything from Fruits to Cats",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2570",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Tiny Wormlike Creature May Be Our Oldest Known Ancestor",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2571",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from around the Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2572",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Help Researchers Track COVID-19",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2573",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Sick Vampire Bats Restrict Grooming to Close Family",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2574",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Exponential Infection Increases Are Deadly Serious",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2575",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Swamp Wallaby Reproduction Give Tribbles a Run",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2576",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Ocean Plastic Smells Great to Sea Turtles",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2577",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Ancient Clam Shell Reveals Shorter Day Length",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2578",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Snapping Shrimp Make More Noise in Warmer Oceans",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2579",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Stress from Undersea Noise Interferes with Crab Camouflage",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2580",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Indigenous Amazonians Managed Valuable Plant Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2581",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Computers Confirm Beethoven's Influence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2582",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2583",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Jet Altitude Changes Cut Climate-Changing Contrails",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2584",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Thoroughbred Horses Are Increasingly Inbred",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2585",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Pablo Escobar's Hippos Could Endanger Colombian Ecology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2586",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Wasp Nests Help Date Aboriginal Art",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2587",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Industrial Revolution Pollution Found in Himalayan Glacier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2588",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Fight-or-Flight Nerves Make Mice Go Gray",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2589",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Espresso May Be Better when Ground Coarser",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2590",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Feral Dogs Respond to Human Hand Cues",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2591",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Neandertals Tooled Around with Clams",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2592",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Fingering Fake Whiskeys with Isotopes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2593",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Having an Albatross around Your Boat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2594",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from All Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2595",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Facts about Groundhogs Other Than Their Poor Meteorology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2596",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Did Animal Calls Start in the Dark?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2597",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Sign Languages Display Distinct Ancestries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2598",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Docs Given Updated Opioid Prescribing Habit",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2599",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Some Wolf Pups Show Innate Fetching Talent",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2600",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Barred Owls Invade the Sierra Nevada",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2601",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Curiosity Killed the ... Mouse?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2602",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "This Fish Knows How to Stick Around",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2603",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Antarctic Is Ripe for Invasive Species",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2604",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Bacteria Helped Plants Evolve to Live on Land",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2605",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Meteorite Contains Material Older Than Earth",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2606",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Loss of Large Mammals Stamps Out Invertebrates, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2607",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Brittle Stars Can \"See\" without Eyes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2608",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Atlantic Puffins Spotted Using Tools",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2609",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Traffic Cameras Show Why the Yankees Should Suffer Fewer Injuries in 2020",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2610",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from around the Globe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2611",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Part of Real Paleo Diet: It's a Tuber",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2612",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "You Traveled Far in 2019",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2613",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Fido's Human Age Gets New Estimates",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2614",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Gift Wrapping Is Effective Future Trash",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2615",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Superstrong Fibers Could Be Hairy Situation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2616",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Flaky Scalps Have a Unique Fungal Microbiome",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2617",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Moths Flee or Face Bats, Depending on Toxicity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2618",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Ancient Seawall Found Submerged",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2619",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Citizen Scientists Deserve Journal Status Upgrade",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2620",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Not All Hydropower Is Climate-Considerate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2621",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Certain Zip Codes Pick Losers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2622",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Linguists Hear an Accent Begin",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2623",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Romans Would Roam for Wood",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2624",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "When the Bellbird Calls, You Know It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2625",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Fishy Trick Lures Life Back to Coral Reefs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2626",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Rain Forest Dwellers and Urbanites Have Consistently Different Microbiomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2627",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Internet Cables Could Also Measure Quakes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2628",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from All Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2629",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Subtle Ancient Footprints Come to Light",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2630",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Ancient Rock Art Got a Boost From Bacteria",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2631",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Ick Factor Is High Hurdle for Recycled Drinking Water",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2632",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Bots Outperform Humans if They Impersonate Us",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2633",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Implanting Memories in Birds Reveals How Learning Happens",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2634",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Dogs Like Motion That Matches Sound",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2635",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Egyptian Vats 5,600 Years Old Were For Beer Brewing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2636",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Famously Fickle Felines Are, in Fact, Clingy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2637",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Aversion to Broccoli May Have Genetic Roots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2638",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Marine Mammal Epidemic Linked to Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2639",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Ant Colonies Avoid Traffic Jams",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2640",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Ranking Rise May Intimidate Opponents",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2641",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Familiar Tunes Rapidly Jog the Brain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2642",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from around the Globe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2643",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "We Owe Our Pumpkins to Pooping Megafauna",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2644",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Bird Egg Colors Are Influenced by Local Climate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2645",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Crabs Do a Maze",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2646",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Odd Bird Migrates Twice to Breed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2647",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Piranha-Proof Fish Gives Inspiration for Body Armor",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2648",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Galloping Ant Beats Saharan Heat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2649",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Some Mosquito Repellents Act like Invisibility Cloaks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2650",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Your Skull Shapes Your Hearing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2651",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Tardigrade Protein Protects DNA from Chemical Attack",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2652",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "\"Mars-quakes\" Could Reveal How Mars Was Built",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2653",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Artificial Intelligence Learns to Talk Back to Bigots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2654",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Nobel in Chemistry for Lightweight Rechargeable Batteries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2655",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Nobel in Physics for Exoplanets and Cosmology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2656",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Nobel in Physiology or Medicine for How Cells Sense Oxygen Levels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2657",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Teeth Tell Black Death Genetic Tale",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2658",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Tiny Worms Are Equipped to Battle Extreme Environments",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2659",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Heat Changes Insect Call, but It Still Works",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2660",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Corals Can Inherit Symbiotic Adaptations to Warming",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2661",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Brains of Blind People Adapt in Similar Fashion",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2662",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2663",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Musical Note Perception Can Depend on Culture",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2664",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Nature Docs Avoid Habitat Destruction",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2665",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Heat Loss to Night Sky Powers Off-Grid Lights",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2666",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Early Butchers Used Small Stone Scalpels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2667",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Microplastics in Fresh Water Are Mostly Laundry Lint",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2668",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Kids Are Not Hurt by Screen Time",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2669",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Lab-Grown Human Mini Brains Show Brainy Activity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2670",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Eavesdropping Puts Anxious Squirrels at Ease",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2671",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Earth's Magnetic Field Initiated a Pole Flip Many Millennia before the Switch",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2672",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Humpback Whales Swap Songs at Island Hub",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2673",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Food Expiration Dates May Mislead Consumers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2674",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Farmland Is Also Optimal for Solar Power",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2675",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Chemical Tweak Recycles Polyurethane into Glue",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2676",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Cholesterol Climbs after Crows Chomp Cheeseburgers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2677",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "How Hurricanes Influence Spider Aggressiveness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2678",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Graphene Garment Blocks Blood-Sucking Skeeters",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2679",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Martian Winds Could Spread Microbe Hitchhikers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2680",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Including Indigenous Voices in Genomics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2681",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "West Point Uniforms Signify Explosive Chemistry",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2682",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Secrets of the Universe Trapped in Antarctic Snow",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2683",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Certain Personality Types Are Likely to Make a \"Foodie Call\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2684",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Artificial Intelligence Sniffs Out Unsafe Foods",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2685",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "A Computer Tells Real Smiles from Phonies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2686",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Stare Down Gulls to Avoid Lunch Loss",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2687",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Real Laughs Motivate More Guffaws",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2688",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Extinction Wipes Out Evolution's Hard Work",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2689",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "London Is Crawling with Drug-Resistant Microbes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2690",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Male Black Widows Poach Rivals' Approaches",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2691",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Babies Want Fair Leaders",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2692",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Parrots Are Making the U.S. Home",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2693",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from All Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2694",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Tourist Photographs Help African Wildlife Census",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2695",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "For Ants, the Sky's the Compass",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2696",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Why Two Moonships Were Better Than One",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2697",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "One Small Scoop, One Giant Impact for Mankind",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2698",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Investigating the Zombie Ant's \"Death Grip\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2699",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Attractive Young Females May Have Justice Edge",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2700",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Tobacco Plants Made to Produce Useful Compounds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2701",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Rhinos and Their Gamekeepers Benefit from AI",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2702",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Backpack Harvests Energy as You Walk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2703",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Why Baseballs Are Flying in 2019",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2704",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Some Hot Dog Histology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2705",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Mind and Body Benefit from Two Hours in Nature Each Week",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2706",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Scientist Encourages Other Women Scientists to Make Themselves Heard",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2707",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Male Bats Up Mating Odds with Mouth Morsels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2708",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Scientists Fool Flies with \"Virtual Tastes\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2709",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Wheat Plants \"Sneeze\" and Spread Disease",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2710",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Elite Runners' Microbes Make Mice Mightier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2711",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2712",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Antiperspirant Boosts Armpit and Toe-Web Microbial Diversity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2713",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Monkey Cousins Use Similar Calls",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2714",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "How Millipedes Avoid Interspecies Sexual Slips",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2715",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "You Contain Multitudes of Microplastics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2716",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "A Biodegradable Label Doesn't Make It So",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2717",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "High School Cheaters Nabbed by Neural Network",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2718",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Preserved Poop Is an Archaeological Treasure",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2719",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Remembering Murray Gell-Mann",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2720",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Bonobo Mothers Supervise Their Sons' Monkey Business",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2721",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Music May Orchestrate Better Brain Connectivity in Preterm Infants",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2722",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Icy Room Temperatures May Chill Productivity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2723",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Bird Beak Shapes Depend on More Than Diet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2724",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Ancient Gum Gives Archaeologists Something to Chew On",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2725",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Nobelist: Harness Evolution as a Problem-Solving Algorithm",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2726",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Unread Books at Home Still Spark Literacy Habits",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2727",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Kid Climate Educators Open Adult Eyes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2728",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Penguin Poop Helps Biodiversity Bloom in Antarctica",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2729",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Ancient Whiz Opens Archaeology Window",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2730",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "U.S. Coral Reefs Do $1.8 Billion of Work Per Year",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2731",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Could Air-Conditioners Help Cool the Planet?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2732",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Chemists Investigate Casanova's Clap",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2733",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Software Sniffs Out Rat Squeaks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2734",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "New Model Aims to Solve Mystery of the Moon's Formation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2735",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Cats Recognize Their Names—but May Not Respond",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2736",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from All Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2737",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Hurricane Maria Rain Amount Chances Are Boosted by Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2738",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Harder-Working Snakes Pack Stronger Venom",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2739",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "River Dolphins Have a Wide Vocal Repertoire",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2740",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Honeybees Can Put Two and Two Together",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2741",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "4/20 Traffic Accidents Claim Curbed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2742",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Hyena Society Stability Has Last Laugh",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2743",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Gluten-Free Restaurant Foods Are Often Mislabeled",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2744",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "What Chickens Can Teach Hearing Researchers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2745",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Nobelist Says System of Science Offers Life Lessons",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2746",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Squeezed Potassium Atoms Straddle Liquid and Solid",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2747",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Urban Coyote Evolution Favors the Bold",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2748",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Computers Turn an Ear on New York City",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2749",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Whitening Strips Alter Proteins in Teeth",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2750",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Infrared Light Offers a Cooler Way to Defrost",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2751",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Spider Monkeys Optimize Jungle Acoustics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2752",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Tennessee Whiskey Relies on Missing Ingredients",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2753",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "There's a Word for Today",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2754",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Bumblebee Queens Prefer Layovers to Nonstop Flights",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2755",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Scenic City Sights Linked to Higher Happiness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2756",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Tech's Brain Effect: It's Complicated",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2757",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Daylight Brings Toxic Beetles Together for Safety",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2758",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Solar Jets Cause Standing Waves in Earth's Magnetic Field",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2759",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Sing Solo for Higher Fidelity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2760",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Edible Insect Breeding Led to Larger but Not Necessarily Better Larvae",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2761",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Busting Earth-Bound Asteroids a Bigger Job Than We Thought",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2762",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Weekday–Weekend Sleep Imbalance Bad for Blood Sugar Regulation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2763",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Warm-Blooded Animals Lost Ability to Heal the Heart",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2764",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Animal Migrations Track with Wikipedia Searches",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2765",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Baseball Commish Talks Big Data",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2766",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Background Music Might Stifle Creativity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2767",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from around the Globe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2768",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Budding Yeast Produce Cannabis Compounds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2769",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Who Has \"the Right Stuff\" for Mars?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2770",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Grandma's Influence Is Good for Grandkids",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2771",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Should Robots Have a License to Kill?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2772",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Warming Climate Implies More Flies—and Disease",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2773",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Light-Skin Variant Arose in Asia Independent of Europe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2774",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Teach Science Process over Findings",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2775",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Human Diet Drugs Kill Mosquitoes' Appetite, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2776",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Grazing Deer Alter Forest Acoustics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2777",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Elephant Weight Cycles with New Teeth",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2778",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Finally Over for Mars Rover",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2779",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Our Brains Really Remember Some Pop Music",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2780",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Biologists Track Tweets to Monitor Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2781",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Desalination Could Cause Ecological Sea Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2782",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Different Humpback Whale Groups Meet to Jam",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2783",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Rocking Helps Adults Sleep Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2784",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Targeting Certain Brain Cells Can Switch Off Pain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2785",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Neandertal Spears Were Surprisingly Deadly",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2786",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "\"Rectenna\" Converts Wi-Fi to Electricity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2787",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News Briefs from the World Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2788",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Cod Could Cope with Constrained Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2789",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Intimate Hermit Crab Keeps Shell On",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2790",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Ecologists Eavesdrop with Bioacoustics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2791",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Saturn's Blingy Rings Are a Recent Upgrade",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2792",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Do-Gooders Should Survey Communities First",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2793",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Viewing This Weekend's Lunar Eclipse",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2794",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "\"Mona Lisa Effect\" Not True for Mona Lisa",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2795",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Ants Stick to Cliques to Dodge Disease",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2796",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Mistimed Migration Means Bird Death Battles",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2797",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Monogamy May Be Written in Our Genes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2798",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Seeing Superman Increases Altruism",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2799",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Inhaled RNA Might Help Heal Cystic Fibrosis",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2800",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Invisible Killers Hitchhike on Native Plant Seedlings",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2801",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Facebook Users Value the Service More Than Investors Do",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2802",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News from around the Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2803",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Turn Xmas Tree into Food and Medicine",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2804",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Simple Sugars Wipe Out Beneficial Gut Bugs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2805",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Smarter Pricing Could Ease Parking Frustration",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2806",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "\"Hunger Hormone\" Ghrelin Aids Overindulgence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2807",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Colorful Peacocks Impress Females with Good Vibes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2808",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Measuring the Strength of a Person's Gaze",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2809",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "\"Relaxation Music\" Works—but So Does Chopin",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2810",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Bone Building Needs Bit of Breakdown First",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2811",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Frog Picks Maternity Ward Like Goldilocks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2812",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "You Gotta Scratch That Itch",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2813",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Join Blue Planet II Live-Tweet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2814",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Big-Boned Chickens May Be Humans' Geologic Legacy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2815",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Ancient Marine Reptiles Had Familiar Gear",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2816",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Little Aphids Ride Big Ones to Safety",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2817",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Utah's Deserts Are Bee Hotspots ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2818",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Who's a Smart Dog?!",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2819",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Data Reveals Most Influential Movies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2820",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Blue Whales Have Changed Their Tune",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2821",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Smart Meters Speed Showers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2822",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Mars Mission Makes Clean Landing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2823",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Do Wine over Those Brussels Sprouts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2824",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Rains Bring a Microbial Massacre to Chilean Desert",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2825",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Consensual Hugs Seem to Reduce Stress",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2826",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "World's Largest Organism Faces Bleak Future",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2827",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "U.S. Immigrants Leave Country—and Microbes—Behind",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2828",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Babies and Chimps Share a Laugh",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2829",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Singing Fish Reveal Underwater Battles in the Amazon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2830",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Social Construct of Race Imposes Biology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2831",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Pandas Swoon to Particular Croons",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2832",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "First Benefit of Knowing Your Genome",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2833",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "For Halloween, Consider the Chocolate Midge",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2834",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Dolphins Dumb Down Calls to Compete with Ship Noise",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2835",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Asocial Octopuses Become Cuddly on MDMA",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2836",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Wild Songbirds Can Pick Up New Tunes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2837",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Health Care Let Neandertals \"Punch above Their Weight\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2838",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Nice People Have Emptier Wallets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2839",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Solar Eclipse Was a Buzzkill for Bees",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2840",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Confident Tone Overcomes Accent Distrust",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2841",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Mom's Genes Make Some Giraffes Hard to Spot",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2842",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Economics Nobel Highlights Climate Action Necessity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2843",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Highway Crossings Protect Migrating Pronghorns—and Motorists",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2844",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Beer Fermentation Hops Along",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2845",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Nobel in Chemistry for New and Useful Chemical Entities via Evolutionary Principles",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2846",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Nobel in Physics for Controlling Laser Light",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2847",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Nobel for Helping the Immune System Fight Cancer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2848",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Blasey Ford Spells Out Trauma Memory Formation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2849",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Scanning Ancient Civilizations from the Skies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2850",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Antifreeze Surface Fights Ice with Ice",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2851",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Scale Can Measure Medicine—and Play a Scale, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2852",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Diverse Tree Portfolio Weathers Droughts Better",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2853",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Pirates Needed Science, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2854",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Sea Otters' Powerful Paw Prey Perception",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2855",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Genetic Tweak Gave Early Humans a Leg Up",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2856",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Earlier Springs May Mean Mistimed Bird Migrations",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2857",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Survey the Wildlife of the \"Great Indoors\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2858",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "When Neutron Stars Collide",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2859",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Bonnethead Sharks Are Underwater Lawn Mowers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2860",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Hurricane Is a Natural Selection Experiment",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2861",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Pasta Problem Cracked!",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2862",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Science News You Might Have Missed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2863",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Pineapple Waste Won't Be Wasted",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2864",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Sometimes Mosquitoes Are Just Thirsty",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2865",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Robot Bartender Will Take Your Order",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2866",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "As Spring Arrives Earlier, Arctic Geese Speed Up Their Migration",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2867",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Freeloading Ants Help the Workflow",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2868",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Ancient Americans Bred Symbolically Important Scarlet Macaws",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2869",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Rising CO2 Means Monarch Butterfly Bellyaches",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2870",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "For Some Crows, Migration Is Optional",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2871",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Plants Dominate the Planet's Biomass",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2872",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Solar Eclipse of 2017 Boosted Science Interest",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2873",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Crickets Carve Tools to Amplify Their Chirps",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2874",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Computerized Chemical Toxicity Prediction Beats Animal Testing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2875",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Better Data Could Mean Better Dating",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2876",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "To Evolve Baleen, Lose Your Teeth First",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2877",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Corn Variety Grabs Fertilizer from the Air",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2878",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Birds Learn Safety from Other Kinds of Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2879",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Microbes Share Your Morning Metro Commute",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2880",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Oh Say Can You See Subtle Details?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2881",
"addition_time": 1751279406,
"delete_time": 1751279409,
"title": "Some Crows Hit On Dead Companions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2882",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Mouth Sets Healing Standard",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2883",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Border Wall Could Disrupt Hundreds of Species",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2884",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Turn a Wall into a Touch Screen Cheap",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2885",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Ancient Tooth Tartar Traps Clues to Iron Age Diet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2886",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Honey Bee Alarm Signal Could Protect Elephants",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2887",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Sea Level Rise Could Inundate the Internet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2888",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Astronomy Tool Helps ID Sharks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2889",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Mammals Moonlight around Human Settlements",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2890",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Jupiter's Moon Total Hits 79",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2891",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Moths Evade Bats with Slight of Wing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2892",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Science News You Might Have Missed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2893",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Smart Mouth Guard Senses Muscle Fatigue",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2894",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Favorite Wine Grapes May Need Genetic Help",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2895",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Iridescence Could Help Critters Hide in Plain Sight",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2896",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Primate Conflicts Play Out in the Operating Room",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2897",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Sharks Make a Splash in Brooklyn",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2898",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "City Life Favors Downsized Invertebrates",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2899",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "People Ration Where They Roam",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2900",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Humans Can Size One Another Up with a Roar",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2901",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Piano Lessons Tune Up Language Skills",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2902",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Cardinal Rule: Female Birds Sing, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2903",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bird's Song Staying Power Implies Culture",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2904",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Alaskan Beluga Whales Ace Hearing Exam",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2905",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Fat–Carb Combo Is a Potent One–Two Punch",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2906",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Jupiter Crackles with Polar Lightning",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2907",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Coral Reefs Keep Costly Waves at Bay",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2908",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Hippo Dung Fouls Up Freshwater Fisheries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2909",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "A Litmus Test for Bad Breath",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2910",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Prez (of AMA) Issues Call to Arms-Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2911",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Powder Pulls Drinking Water from Desert Air",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2912",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Ancient Clan War Explains Genetic Diversity Drop",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2913",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Saying \"This May Hurt\" May Make It Worse",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2914",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Mongooses Gift Grooming for Guard Duty",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2915",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Some Trees Beat Heat with Sweat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2916",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Computers Go Head-to-Head with Humans on Face Recognition",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2917",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Pinnipeds Don't Appreciate Biped Disturbance",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2918",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Computers Predict Pop Chart Success",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2919",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Doc's YA Novel Treats Life-and-Death Issues",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2920",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Google's AI Assistant Does Your Talk Tasks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2921",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Great Ape Makes Good Doc",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2922",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Stool-Pigeon Poop Reveals Bird-Racing Fouls",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2923",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Radar Scans Detail North Korean Nukes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2924",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Hunting Rules Have Changed Mama Bear Care",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2925",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Jupiter and Venus Squeeze Earth's Orbit",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2926",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Mars Lander Will Peer Inside the Red Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2927",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Plants Can Sense Animal Attack Coming",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2928",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Archaeologist Makes a Case for Seafaring Neandertals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2929",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Africa: Future Worldwide Science Hub",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2930",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Healthful Eating Requires Supermarket Smarts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2931",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Culture Shapes Kids' Views of Nature",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2932",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bad Audio Can Hurt a Scientist's Credibility",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2933",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bill Gates Announces a Universal Flu Vaccine Effort",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2934",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Drumming Beats Speech for Distant Communication",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2935",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bees Have a Goldilocks Lawn Mow Schedule",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2936",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "If Singing's Tough, Try Whistling",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2937",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Traffic Deaths Increase after 4:20 P.M. on 4/20",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2938",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "NYC Mice Are Packed with Pathogens",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2939",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Mine Social Media Posts to Predict Flu",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2940",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Planting Milkweed for Monarchs? Make Sure It's Native",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2941",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "The Internet Needs a Tune-Up",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2942",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Glacier Suddenly Goes Galloping",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2943",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Some Habitable Zone Exoplanets May Get X-Rayed Out",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2944",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Right Whales Seem to Think before They Speak",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2945",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Old New England Underground May Be Spry after All",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2946",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Brain Scan Might Reveal Appetite for Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2947",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Neandertal Face Shape Was All Over the Air",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2948",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Rev Up Photosynthesis to Boost Crop Yields",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2949",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "13,000-Year-Old Footprints under West Coast Beach",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2950",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Math Cracks a Knuckle-Cracking Mystery",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2951",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Rotting Flesh Offers Insight on Fossilization",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2952",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Ravens Crow with Individual Flair",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2953",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "U.S. Flu Spread Counts On Southern Cold Snaps",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2954",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Louise Slaughter Was Congress's Food Safety Champion",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2955",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Arctic Heat Waves Linked to Snowpocalypse-Like Storms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2956",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Gut Parasites Have Their Own Gut Microbiomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2957",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Drones Could Help Biologists Tally Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2958",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Saliva Protein Might Inhibit Intestinal Anarchy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2959",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Searching the Heavens for Mountains",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2960",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Human Echolocators Use Tricks Similar to Bats",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2961",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Animal Coloration Can Serve Double Duty",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2962",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Some Lichen Fungi Let Genes Go Bye",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2963",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "To See Gun Injury Drop, Hold an NRA Meeting",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2964",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Big Cities Have Fewer Tweeters Per Capita",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2965",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "How Baby Birds Learn to Duet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2966",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Mosquitoes Learn the Smell of Danger",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2967",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Needed: Info on Biodiversity Change over Time",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2968",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Undersea Recordings Reveal a Whale's Tale",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2969",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Seabird Feathers Reveal Less-Resilient Ocean",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2970",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Beetle Liberation Due to Regurgitation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2971",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Old Trees Are Ecosystem Gold",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2972",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Boat Noise Means Fish Can't Learn Their Lessons",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2973",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Woodpeckers Drum to Their Own Tunes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2974",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Homebodies Economize on Energy Use",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2975",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Killer Whale Culture Revealed by Mimicking Us",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2976",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Holiday Cheer Leads to Birth-Rate Spike",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2977",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Ticks on Uptick Where Big Game Declines",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2978",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Wildfires Spike Wine with Smoky Notes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2979",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Lion Conservation Challenges Giraffe Protection",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2980",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Nobelist Crafts Light-Switchable Antibiotics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2981",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Catching Flu Also Boosts Heart Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2982",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Worldwide Effort Says Together Science Can",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2983",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Canada Geese Taking a Winter Staycation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2984",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Moon's Tug Doesn't Cause Big Quakes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2985",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Social Media Helps ID Spew Source",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2986",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Salmonella Could Have Caused 16th-Century Epidemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2987",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Which Came First, the Proboscis or the Flower?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2988",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "You Live in a Strange Solar System",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2989",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Glow Sticks Help Ecologists Study Amphibians",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2990",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Air Force Tracks Final Frontier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2991",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "You Traveled Far Last Year",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2992",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Finches Can Learn to Sing Differently Than Their Genetics Dictate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2993",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Baby Bats Can Learn Different Dialects",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2994",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Mongoose Societies Are Skeptical of Strangers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2995",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Pain and Weather Fail to Connect",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2996",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Finding Further Places for Solar Panels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2997",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "This Fish Emits Damaging Decibels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2998",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Repetitive Sounds Are Music to the Brain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "2999",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Radiation Might Help Heart Regain Its Rhythm",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3000",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Dark Fiber Networks Can Sense Seismicity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3001",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Supermarket Snacking Boosts Sales",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3002",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Something Clicks for Dolphin Identification",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3003",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Nutrition Guidelines Healthy for the Planet, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3004",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Invading Beavers Turn Tundra to Ponds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3005",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Sharks Rule the Reef's Underwater Food Chain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3006",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Ancient Women Had Awesome Arms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3007",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Invasive Frogs Don't Bug Hawaiian Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3008",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "How Hospitals Can Dampen the Decibels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3009",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Smarter Management Means More Inventions Get to Market",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3010",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Computers Learn to Use Sound to Find Ships",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3011",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Yeti Claims Don't Bear Up",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3012",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Republican Voters Not in Denial about Climate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3013",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Tech Honcho Wants Innovation for the Bottom Billion",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3014",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bumper Stickers Make Highways More Social",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3015",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Chimps Able to Apprehend Another Chimp's Mind-Set",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3016",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Even without Hands Honeybees Show Handedness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3017",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Humpback Whale Flippers Do More Than Maneuver",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3018",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "A New Recipe for Counting Cranberries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3019",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "How Fit Is Bitcoin?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3020",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Salmon Sex Changes Entire Landscape",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3021",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Ancient 1 Percenters Were Beast-Based",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3022",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Feathers Help This Bird Sound the Alarm",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3023",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Put Space Cat on a Pedestal",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3024",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Polluted Water Whale Invents New Feeding Strategy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3025",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Insect Brain System Knows What You Want",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3026",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Sheep's Face-Reading Skills Stand Out from the Flock",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3027",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Nearby Exoplanets Invigorate the Search for E.T.",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3028",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bison Comeback Story Has a Bronx Accent",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3029",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Mammoth Remains Seem Mostly Male",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3030",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Physics Phenomenon Reveals a Pyramid's Mystery",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3031",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "A Moth with a Potent Cocktail of Poison",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3032",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Drought News Might Help Cut Water Waste",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3033",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Smog Casts a Shadow on China's Solar Farms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3034",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Dogs Bow to Wolves as Cooperators",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3035",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "California Gun Injuries Spike after Nevada Gun Shows",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3036",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Mosquitoes to Other Flying Insects: Do You Even Generate Lift?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3037",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Keep Your Wi-Fi off KRACK",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3038",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Ships at Sea Stoke Lightning Strikes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3039",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Gamers Wanted to Attack Food Toxin",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3040",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Even Jellyfish Need a Nap",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3041",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Squirrels Chunk Their Buried Treasure",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3042",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Cougar Calls Get Big Bear Reactions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3043",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Biometric Identifies You in a Heartbeat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3044",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "When We Fly to Mars, Microbes Will, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3045",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Nobel in Chemistry for Seeing Biomolecules in Action",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3046",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Nobel in Physics for Detecting Gravitational Waves",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3047",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Nobel in Physiology or Medicine for Our Inner Clocks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3048",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Electric Eels Increase Shock by Leaving Water",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3049",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Australian Bird Dips Its Dinner",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3050",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Tsunami Sent Species on a Transoceanic Trip",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3051",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "1 Sneeze, 1 Vote among African Wild Dogs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3052",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "This Frog Can't Hear Its Own Calls",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3053",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Building a Better Mirror for Telescopes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3054",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Galaxies Far, Far Away Send Us Highest-Energy Cosmic Rays",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3055",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Springtime Now Arrives Earlier for Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3056",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Warming Puts Squeeze on Ancient Trees",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3057",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Rising CO2 Pushes Plants to Drink Sparingly",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3058",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Cannibalism Quells Contagion among Caterpillars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3059",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Feds Want to Know Who's Protesting Trump",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3060",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Windows Vex Bats' Echolocating Abilities",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3061",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Wetlands Could Save Cities--and Money, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3062",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Rabbit Relatives Reel from Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3063",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Winking Star 6 Centuries Ago Explained",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3064",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Grazing Cattle Trim the Menu for Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3065",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Climate Change Might Shrink Fish",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3066",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "A Fruitful Experiment in Land Conservation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3067",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Recycle Your Eclipse Glasses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3068",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Seeing 1 Solar Eclipse May Not Be Enough",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3069",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Solar Eclipse in 1097 May Be Rock-Carving Subject",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3070",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Social Media Sites Can Profile Your Contacts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3071",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "\"Textalyzer\" Aims at Deadly Distracted Driving",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3072",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Climate Change Fires Up Polar Bear Treadmill",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3073",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "No Bull: Lizards Flee When They See Red",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3074",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Celebrities Tweet Like Bots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3075",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Cold Snap Shapes Lizard Survivors",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3076",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Mediterranean Diet Works--for Upper Crust",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3077",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Screams Heard Round the Animal World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3078",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "This Caterpillar Whistles While It Irks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3079",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "To Buy Happiness, Spend Money on Saving Time",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3080",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bacteria Can Be Resistant to Brand-New Antibiotics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3081",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Teaching Computers to Enjoy the View",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3082",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Flying through a Corpse's Clues",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3083",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Old Records Help Resurrect Historic Quake",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3084",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "This Cell Phone Needs No Battery",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3085",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bacteria Might Share the Blame for Eczema",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3086",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Franklin's Lightning Rod Served Political Ends",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3087",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Heat Will Hit America's Poorest Worst",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3088",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Rainbow Photons Pack More Computing Power",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3089",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Moths Inspire Better Smartphone Screens",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3090",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Better Memory Begets Boredom",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3091",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "DNA Points to Multiple Migrations into the Americas",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3092",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Keep Rolling Luggage Upright with Physics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3093",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Wolves Need More Room to Roam",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3094",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Engineers Build Bendy Batteries for Wearables",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3095",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Rising Temps Lower Polar Bear Mercury Intake",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3096",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Some Hotel Bed Bug Sightings May Be Bogus",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3097",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Opioids Still Needed by Some Pain Patients",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3098",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bacterially Boosted Mosquitoes Could Vex Viruses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3099",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Alaska Accelerates Indoor Agriculture",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3100",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Chromosomes Combat Counterfeit Caviar",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3101",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "French Prez Invites Trumped Researchers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3102",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Trees Beat Lawns for Water-Hungry L.A.",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3103",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Former CDC Head Warns of Threats Biological and Political",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3104",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Fitness Bands Fail on Calorie Counts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3105",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "New Concrete Recipes Could Cut Cracks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3106",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bees Prefer Flowers That Proffer Nicotine",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3107",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Large Impacts May Cause Volcanic Eruptions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3108",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Why the Cross Put Chickens on a New Road",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3109",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Field Study: Worms Leave 'Til No-Till",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3110",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "The Sneaky Danger of Space Dust",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3111",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Insects Donate DNA to Unrelated Bugs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3112",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Gophers versus the Volcano",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3113",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Wilderness Areas Suffer from Human Sound",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3114",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Pollution Peaks When Temperatures Top Out",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3115",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Hot Chilies Cool Down Gut Inflammation in Mice",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3116",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bronx River's Cleanup Brings Herring Home",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3117",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Ancient Human DNA Found in Cave Dirt",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3118",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Gut Microbes Help Keep Starved Flies Fecund",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3119",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Selective Breeding Molds Foxes into Pets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3120",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Why One Researcher Marched for Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3121",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Healthy Behavior Can Spread Like Illness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3122",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Climate 420 Million Years Ago Poised for Comeback",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3123",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Traces of Genetic Trauma Can Be Tweaked",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3124",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Species Split When Mountains Rise",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3125",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Shoelace Study Untangles a Knotty Problem",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3126",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "World Parkinson's Day Puts Spotlight on Condition",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3127",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Cave Dwellers Battled Bed Bug Bites, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3128",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Extreme Storms Are Extreme Eroders",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3129",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Spiders Gobble Gargantuan Numbers of Tiny Prey",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3130",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Your Cat Thinks You're Cool",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3131",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Exoplanets Make Life Conversation Livelier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3132",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bring Bronx Zoo to Your Living Room",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3133",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "UV Rays Strip Small Galaxies of Star Stuff",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3134",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Aggressed-Upon Monkeys Take Revenge on Aggressor's Cronies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3135",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Chaotic Orbits Could Cause Catastrophic Collision",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3136",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Pulling the String on Yo-Yo Weight Gain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3137",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Poverty Shaves Years off Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3138",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Pollinators Shape Plants to Their Preference",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3139",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Low Biodiversity Brings Earlier Bloom",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3140",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Early-Life Microbes Ward Off Asthma",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3141",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "(Probably Not a) Giant Alien Antenna",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3142",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Jupiter Moon to Be Searched for Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3143",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Teeth Hint at a Friendlier Neandertal",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3144",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Forensic Science: Trials with Errors",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3145",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "How to Find Loooong Gravitational Waves",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3146",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Biggest Rivers Are Overhead",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3147",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Last Woollies Had Mammoth Mutations",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3148",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "African Penguins Pulled into an Ecological Trap",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3149",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Neandertals Live On in Our Genomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3150",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Medical Marijuana Faces Fed's Catch-22",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3151",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Blood Cells Remember Your Mountain Vacation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3152",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Fermented Foods Find Fervent Advocate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3153",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Vision Needed to Curb Nearsightedness Epidemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3154",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Guppy Groups Provide Friendly Protection against Foes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3155",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Spaceflight Squishes Spacefarers' Brains",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3156",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "2 Words Trigger CDC to Stay Quiet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3157",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "The True \"Bottom\" of the Food Chain Is Plenty Polluted",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3158",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Heat Sensor Has Snaky Sensitivity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3159",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Housing Boom Busts Birds' Valentine's Day",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3160",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Cool Coating Chills in Sunlight",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3161",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Partnered-Up Men More Attractive to Women",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3162",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Gulf Dead Zone Makes for Shrimpier Shrimp",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3163",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Frog Spit Behaves Like Bug-Catching Ketchup",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3164",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Super Bowl Snacks Need These Exercise Equivalents",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3165",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "The Arctic's Anti-Snowball Snowball Effect",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3166",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Widening the Suez Canal Ushers In Underwater Invaders",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3167",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Hawaiian Crows Ready for the Call of the Wild",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3168",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "A Humble Fish with a Colorful Edge",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3169",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "LSD's Long, Strange Trip Explained",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3170",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Umbrellas Plus Sunscreen Best Bet to Beat Burns",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3171",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Ants Use Celestial Cues to Travel in Reverse",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3172",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "High-Sugar Diet Makes Flies Drop Like...Flies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3173",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Pesticide Additive Could Be One Culprit in Bee Deaths",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3174",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Knot Not Easy to Knot",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3175",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bat Chatter Is More Than a Cry in the Dark",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3176",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bird Feeders Attract Bird Eaters, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3177",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Adult Daughter Orcas May Trigger Moms' Menopause",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3178",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Climate Cycles Could Have Carved Canyons on Mars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3179",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Hair Cells Could Heal Skin Sans Scars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3180",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Concrete Defects Could Become Strengths",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3181",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Zika Linked to a Variety of Birth Defects",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3182",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "When Dining for Trillions, Eat Wisely",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3183",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Weakest Piglets May Sneak Help from Strongest Siblings",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3184",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Isolated Low Temps May Reassure Climate Skeptics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3185",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bats Learn to Take White-Nose Punch",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3186",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "\"Necrobiome\" Reveals a Corpse's Time of Death",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3187",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Pregnancy Primes the Brain for Motherhood",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3188",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Small Fraction of Pilots Suffer Suicidal Thoughts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3189",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Migrating Birds Prefer Lakefront Property",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3190",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Breast-Feeding Benefits Babies with Genetic Asthma Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3191",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Self-Driving Cars Probably Won't Boost Commuter Productivity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3192",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "New Insecticide Makes Mosquitoes Pop",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3193",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Commuting Patterns Help Forecast Flu Outbreaks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3194",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Stopping Splashes with Smarter Surfaces",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3195",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Dogs Teach Bomb-Sniffing Machines New Tricks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3196",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "\"Power Poses\" Don't Stand Up",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3197",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Toll-Free Number Stems Human–Wildlife Conflicts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3198",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "We Now Live in the Unnatural World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3199",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "High-Fiber Diet Keeps Intestinal Walls Intact",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3200",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Forest Die-Offs Alter Global Climate \"Like El Nino\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3201",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "DNA Samples Find a Lot of Fish in the Sea",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3202",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Police Body Cameras Appear to Moderate Interactions with Civilians",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3203",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "NIH Director Looks at Presidential Transition",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3204",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Ebola Virus Grew More Infectious in the Latest Epidemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3205",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Orangutan Picks Cocktail by Seeing Ingredients",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3206",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Small-Brained Birds More Likely to Get Shot",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3207",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Online Sociality Linked to Lower Death Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3208",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bookish Mobsters Made Better Bookies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3209",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "For River Otters, Social Life Is Shaped by the Latrine",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3210",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Falcons Patrol Fruit Fields for Pesky Invasive Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3211",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Clark Kent's Glasses Aided His Anonymity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3212",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Poor Sleepers Worse at Recognizing Unfamiliar Faces",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3213",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Yawns Help the Brain Keep Its Cool",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3214",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Polar Bears Can't Just Switch to Terrestrial Food",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3215",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Flowers Deceive Flies with Chemical Cocktail",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3216",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Feed Microbes Oxygen to Help Clear Spilled Oil",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3217",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Elephant Footprints Become Tiny Critter Havens",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3218",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Future Wet Suits Otter Be Warmer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3219",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Gender Influences Recommendations for Science Jobs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3220",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Nobel in Chemistry for Molecular Machines",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3221",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Nobel in Physics for Secrets of Exotic Matter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3222",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Nobel in Physiology or Medicine to Yoshinori Ohsumi for Autophagy Discoveries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3223",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Great Migration Left Genetic Legacy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3224",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Arctic Pollinator Faces Uncertain Future",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3225",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Water Bears' Super Survival Skills Give Up Secrets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3226",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Big Earthquakes May Be More Likely During New and Full Moons",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3227",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Clever Ants Have Backup Navigation Systems",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3228",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Ancient Biblical Scroll Gets Read While Wrapped",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3229",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Birch Trees Droop at Night with No Rays in Sight",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3230",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Some Malaria Mosquitoes May Prefer Cows to Us",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3231",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Drunk People Feel Soberer around Heavy Drinkers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3232",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Oldest Known Indigo Dye Found in Peru",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3233",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Road Noise Makes Birds' Lives Tougher",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3234",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "World Wilderness Down 10 Percent in 20 Years",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3235",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Photonic Chip Could Strengthen Smartphone Encryption",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3236",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Protein Test Could Complement Crime Scene DNA Analysis",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3237",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Shark Fins Contain Toxic \"One–Two Punch\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3238",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Teen Pregnancy Prevention Program Actually Promotes It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3239",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Color-Changing Skin Aids Climate Control and Communication",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3240",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Waste Amphetamines Alter Underwater Ecosystems",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3241",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "A Green Solution to Improve Indoor Air Quality",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3242",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Humans Are Superpredators in the Landscape of Fear",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3243",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Voters Are Seldom Swayed by Local Campaign Stops",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3244",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Ancient Mexican Metropolis Engaged in Hare-Raising Activity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3245",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Model Black Hole Re-Creates Stephen Hawking Prediction",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3246",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Pigeon Pb Proxies Could Cut Kids' Blood Tests",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3247",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Remote Door Controls Are Car Security Flaw",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3248",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "This Shark Is the Vertebrate Methuselah",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3249",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Humans and Birds Cooperate to Share Beehive Bounty",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3250",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Pesticides Act as Honeybee Contraceptives",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3251",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Cut Road Deaths with Mountain Lions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3252",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Silk Road Transported Goods--and Disease",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3253",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Inbred Songbirds Croon out of Tune",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3254",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Great Red Spot Helps Explain Jupiter's Warm Upper Atmosphere",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3255",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Beaver Dams Strengthened by Humans Help Fish Rebound",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3256",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Frigate Bird Flights Last Months",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3257",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "For Lichens, 3's Not a Crowd",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3258",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Chicken Scent Deters Malaria Mosquitoes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3259",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Vaccinate Prairie Dogs to Save Ferrets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3260",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Fuel-Efficient Engines Have a Sooty Flaw",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3261",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Mucus Lets Dolphins Emit Their Clicks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3262",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bees Rank Pollen by Taste",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3263",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Menu Featured Mammoth but Diners Were Mocked",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3264",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Evolution Ed Defenders Make Rapids Progress in Grand Canyon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3265",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Wildlife Can Bear with Hunters and Hikers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3266",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Cats' Cunning Extends beyond the Hunt",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3267",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Farmed Trout Bred to Fatten Up Fast",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3268",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "This Algorithm Can Predict Relationship Trouble",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3269",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Is Mars Missing a Moon?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3270",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Human Ears Can Hear Better-Than-CD Quality (Just Barely)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3271",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Highway Sounds Might Mask Life-Saving Birdcalls",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3272",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "City Lights Trick Trees into an Earlier Spring",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3273",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Made Ya Look, Monkey",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3274",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Drowsy Driving Kills 6,400 Americans Annually",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3275",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Social Spider Groups Need Bold and Shy Members",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3276",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Chocolate Makers Cut Fat with Electricity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3277",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Viruses Hijack the Body's Response to Mosquito Bites",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3278",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Mongooses Pile on Warthogs--to Groom Them",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3279",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Lizard Stripes May Mess Up Predators' Timing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3280",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Air Pollution Gives Storm Clouds a Stronger, Longer Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3281",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Microbes May Contribute to Wine's \"Character\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3282",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Fat Gets Gut Bacteria Working against the Waistline",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3283",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Arctic Researcher Bears Up for Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3284",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Submerged Lost City Really Bacterially Built",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3285",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Go to the (White) Light",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3286",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bleached Coral Busts Fish Learning",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3287",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bigger Glasses Rack Up More Wine Sales",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3288",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Shy Fish Prefer to Follow Other Shy Fish",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3289",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "From Wolf to Woof Twice",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3290",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Extreme Life-Forms Could Complicate Carbon Sequestration",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3291",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Knee Sounds Give Docs a Leg Up",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3292",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Candidates Tend to Not Dodge Questions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3293",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Oldest Chinese Beer Brewery Found",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3294",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Giant Tsunami Remnants Spotted on Mars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3295",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Red Birds Carry On Colorful Chemistry",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3296",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Alliance of Bacterial Strains Disables Antibiotics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3297",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Wanted: Gravitational Constant's True Value",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3298",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Saharan Dust Brings Bacterial Blooms to the Caribbean",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3299",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Microbe Breaks the Powerhouse Rules",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3300",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Everything There Is",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3301",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Farm Fields Release Carbon Mist during Rainstorms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3302",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Flying Boats Soar over the Hudson",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3303",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Feed Additive Squelches Ruminants' Methane Belches",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3304",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Male Lemurs Are Masters of Musk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3305",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Married Couples Pack On More Pounds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3306",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Photos Tagged as Art Linked to Rising Property Prices",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3307",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Miley Cyrus and Macaroni Combo Enables Brain-Based ID",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3308",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Traces of Pharmaceuticals Dwell in Wastewater-Grown Veggies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3309",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "This Plant Bleeds Nectar to Attract Help",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3310",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Climbing Bears Help Plants Keep Cool",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3311",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Lower Your Voice Pitch to Persuade",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3312",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "This Primate's Calls Obey a Linguistic Law",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3313",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Woodpecker Head Bangs Communicate Info",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3314",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Gambling Gave Science Some Lucky Breaks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3315",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Microbots Get the Lead Out--of Wastewater",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3316",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Heat ID'd as Subtle Cause of Rockfalls",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3317",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bearcats Naturally Pass the Popcorn",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3318",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Transforming Stem Cells into Diabetes Beaters",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3319",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Find Shows Widespread Literacy 2,600 Years Ago in Judah",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3320",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Frogs Signal Visually in Noisy Environments",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3321",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Choir Practice Could Lower Stress in Cancer Patients",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3322",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Crater Bottoms Could Be Cradles of Martian Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3323",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Wolves Have Local Howl Accents",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3324",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bird Combines Calls in Specific Order",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3325",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Cellular Circuit Computes with DNA",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3326",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Lasers Could Hide Earth from Prying Aliens",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3327",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Twin Birth Proposed for Colliding Black Holes That Produced Gravitational Waves",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3328",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "City Birds Outwit Country Counterparts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3329",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Quasar Winds Clock In at a Fifth of Light Speed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3330",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "The Fastball Gets Its Scientific Due in a New Documentary",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3331",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Garbage Pickings Get Storks to Stop Migrating",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3332",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Smart Glass Goes from Clear to Cloudy in a Jolt",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3333",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Cuba–U.S. Thaw Should Ease Scientific Collaborations",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3334",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "African Park Comeback Offers Ecological Optimism",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3335",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bring a Musician to Untangle Cocktail Party Din",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3336",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Our Noise Bothers Overlooked Seafloor Critters",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3337",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Eavesdrop on Echolocation to Count Bats",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3338",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Underground Eruptions Could Cause Quakes Months Later",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3339",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Raw Stone Age Meals Got Tenderizing Treatment",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3340",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Fear of Spiders Makes Them Look Bigger",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3341",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Pro Baseball Player Tech Avatars Could Be a Hit",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3342",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "This Dragonfly Outmigrates Monarchs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3343",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Gators Guard Birds That Nest Nearby",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3344",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Space \"Treasure Map\" Guides E.T. Search",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3345",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Milgram's Conformity Experiment Revisited in Lab and on Stage",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3346",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bats Beat Ebola with Hypervigilant Immunity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3347",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Cutting Carbon Pollution Could Save Health Care $",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3348",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Billion Sun–Bright Events Leave Radio Wave Clues",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3349",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Cyber Thieves Hold Hospital's Data for Ransom",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3350",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Ball Really Looks Bigger to Better Hitters",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3351",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "HPV Vaccine Needs to Reach Boys, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3352",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Mantis Shrimp Shells May Inspire Next-Generation Computer Chips",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3353",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Opioid Epidemic Gets Treatment Prescription",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3354",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Elephant Ivory DNA Reveals Poaching Hotspots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3355",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Gut Microbes Lessen Mice Malarial Malaise",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3356",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Greenland's Meltwater May Fertilize Fjords with Phosphorus",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3357",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Lizard Picks Best Color--to Stand against",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3358",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Giant Bird Driven Extinct by Egg-Eating Humans",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3359",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Climate Change Most Affects Nations That Didn't Produce It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3360",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Super Bowl Sunday's Food Needs Work",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3361",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Bear Gut Microbes Help Prep Hibernation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3362",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Seed-Scattering Birds May Help Trees Cope with Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3363",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Plastic Pollution Perturbs Oyster Offspring",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3364",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Antioxidant Use Still Small Mixed Bag",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3365",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Sweet Song Gives Away New Bird Species",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3366",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Suicide Differences by Region Related to Gun Availability",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3367",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Musical Pitch Perception May Have Long Evolutionary History",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3368",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Quick Test Could Tell If a Patient Needs Antibiotics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3369",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Pluto Killer Thinks He Has New Ninth Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3370",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Sharks Head Straight Home by Smell",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3371",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Volcano Role in Dino Death Gets Mercury Boost",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3372",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Healthful Diet Switch Helps Even Late in Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3373",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Better Gut Microbiome Census through Computing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3374",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Sociable Chimps Get Richer Gut Microbiomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3375",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Mammoth Find Moves Humans in Arctic Back 10,000 Years",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3376",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "City Swans May Tolerate Humans Due to Gene Variant",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3377",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Hippo Meat-Munching May Explain Their Anthrax Outbreaks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3378",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Powerball Lottery Winning Made Inevitable (If Not Easy)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3379",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Iceman Ötzi Died with a Bellyache",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3380",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Allergies May Have Been Bequeathed by Neandertals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3381",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Needle Exchange Programs Now Get Fed Support",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3382",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Obama Notes Blocks of Gun Violence Research",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3383",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Big Cats and People Live in Close Quarters in India",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3384",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Asphalt Roads Could De-Ice Themselves",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3385",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Race-Based Brand Preferences Found for Underage Drinkers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3386",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Baby Whales Pecked to Death by Gulls",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3387",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Polar Bears Must Work Harder on Faster Sea Ice Treadmill",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3388",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Southwest's Conifers Face Trial by Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3389",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Superfast Computer Chip Transmits Data with Light",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3390",
"addition_time": 1751279407,
"delete_time": 1751279409,
"title": "Text Reminders Cut Binge Drinking in At-Risk Recipients",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3391",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Drugged Gut Microbiome Cuts Heart Risk in Mice",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3392",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Antievolution Legislation Shows Descent with Modification",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3393",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Small Fish Takes Fast-Evolution Track",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3394",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Marion Nestle Talks \"Soda Politics\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3395",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Teachers' Racial Biases Have Different Effects for High Versus Low Performers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3396",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Energy Secretary Talks Climate Challenge",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3397",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Cockroach Caca Contains Chemical Messages Made by Microbes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3398",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "90-Nation Coalition Aims for Ambitious Climate Change Deal",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3399",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "New African Highways Have a High Environmental Price",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3400",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Protect the Right Places for Biodiversity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3401",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Individuals' Blood Glucose Levels after Meals May Be Predictable",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3402",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Obese Dad's Sperm May Influence Offspring's Weight",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3403",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Pollination Isn't Just for the Bees",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3404",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Race Colors New Residents' Views of Local Businesses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3405",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Espresso Machines Brew a Microbiome of Their Own",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3406",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Massive Survey Creates Amazon Tree Census",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3407",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "People Pick Familiar Foods Over Favorites",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3408",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Women Candidates Face Implicit Bias Hurdle",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3409",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Gut Bacteria Signal Your Brain When They're Full",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3410",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Vocal Cords Bioengineered from Starter Cells",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3411",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Sahara Reveals Remains of Ancient River",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3412",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Your Brain Can Taste without Your Tongue",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3413",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Urban Food Foraging Looks Fruitful",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3414",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Female Vocalists Are in the (Mouse) House",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3415",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Eat Slowly and Breathe Smoothly to Enhance Taste",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3416",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Little Galaxy Keeps Churning Out Stars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3417",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Howler Monkeys Trade Testicles for Decibels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3418",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Stone Age Pottery Reveals Signs of Beekeeping",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3419",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "What Makes Sand Dunes Sing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3420",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Brain Rhythms Sync to Musical Beat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3421",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Brain Responds to Driving Routes Repeatedly",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3422",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Arctic Marine Mammals Swim Up to the Microphone",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3423",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Decoy Mating Call Battles Citrus Pest",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3424",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Methane Plumes Bubbling along U.S. Northwest Coast",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3425",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Cultural Goofs Gear Up Gray Matter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3426",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Whale Poop Drives Global Nutrient Cycling",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3427",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Road Runoff a No-No for Coho",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3428",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Political and Industry Leaders Make a Case for Basic Research",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3429",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "TV Crime Shows Influence Sex Consent Views",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3430",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Beet Juice Could Help Body Beat Altitude",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3431",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Fall Foliage Timing Comes into Clearer Focus",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3432",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Apple Thins iPhone Cloud Connections",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3433",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Dino's Tail Might Have Whipped It Good",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3434",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Babies Move Tongue to Learn New Tongues",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3435",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Pluto Mission Targets Next Kuiper Belt Object",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3436",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Magnetic Field May Be a Map for Migratory Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3437",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Wildlife Tourism Could Be \"Domesticating\" Wild Animals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3438",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Babies Just Want to Be Smiled at",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3439",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "2015 Nobel Prize in Chemistry",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3440",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "2015 Nobel Prize in Physics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3441",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "2015 Nobel Prize in Physiology or Medicine",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3442",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Cheap Goods from China Have a High Carbon Cost",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3443",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "MacArthur Genius Grant Winner Probes the Pruning Brain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3444",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "MacArthur Genius Grant Winner Makes Waste a Resource",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3445",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Ancient Human Ancestors Heard Differently",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3446",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Sitting Not the New Smoking for Fidgeters",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3447",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "We Emit Clouds of Microbes Wherever We Go",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3448",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "House Dust Organisms Reveal Location and Residents",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3449",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Biosciences Get Defense Secretary's Attention",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3450",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Teenage Clockmaker Upholds Long Scientific Tradition",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3451",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Nonpolitical Tweets May Reveal Political Bias",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3452",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "California Mountain Snowpack Is Flaking Out",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3453",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Domesticated Pigs Kept Oinking with Wild (and Crazy) Boars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3454",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Snake Bites in Costa Rica Peak with El Niño Cycling",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3455",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Sperm Whales Congregate in Click-Based Cliques",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3456",
"addition_time": 1751279407,
"delete_time": 1751279410,
"title": "Humans' Predation Unsustainably Takes Healthy Adult Prey",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3457",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Better Road Signs Could Save Bicycle Riders",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3458",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Self-Healing Spaceship Shielding Could Keep Astronauts Safer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3459",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Road Noise Takes a Toll on Migrating Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3460",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Terse Titles Cited",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3461",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Sick Ants Seek Out Medicinal Food",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3462",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Seaweed Bodyguards Coral against Bullying Sea Stars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3463",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Cosmetic Ads' Science Claims Lack Foundation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3464",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Deep Voice Gives Politicians Electoral Boost",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3465",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Vomit Machine Models Cruise-Ship Virus Spread",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3466",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Sunlight Activates Smog-Causing Chemicals in City Grime",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3467",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Methane-Eating Microbes May Mitigate Arctic Emissions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3468",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Chinese Cave Graffiti Agrees with Site's Drought Evidence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3469",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Whistled Language Forces Brain to Modify Usual Processing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3470",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Invertebrates Are Forgotten Victims of \"Sixth Extinction\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3471",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Nicotine-Chomping Bacteria Could Help Smokers Quit",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3472",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Women Left out in Cold by Office A-C Standards",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3473",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Bite Me: The Mutation That Made Corn Kernels Consumable",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3474",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Fish Slime Inspires New Eco-Sunscreen Ingredient",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3475",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Microbes Deep under Seafloor Reflect Ancient Land Origins",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3476",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Spicy Food Linked to Lower Risk of Death",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3477",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Bonobo Peeps May Be Necessary Language Precursors",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3478",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Diminutive Peoples Took Different Paths to Petite",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3479",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Forests Suck Up Less Carbon after Drought",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3480",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "\"Imperfect\" Vaccines May Aid Survival of Ultrahot Viruses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3481",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "What All the Screaming Is about",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3482",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Baseball Great Thanks Tommy John Surgery, Decries Its Frequency",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3483",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Appetizers Can Psychologically Spoil Your Appetite",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3484",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Many Overweight and Obese Teens Underestimate Their Weight",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3485",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Alien Intelligence Search Gets Major New Push",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3486",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Plankton Blooms Fuel Cloud Droplet Formation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3487",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Male Black Widows Strive for Mate's Monogamy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3488",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Active Duty Army Suicide Attempts Analyzed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3489",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Rain and Irrigation Can Make Crops Temporary Bacteria Farms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3490",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Hitchhiking Worms Survive Slug Guts Transport",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3491",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Roman Builders May Have Copied Volcanic \"Concrete\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3492",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Dark Matter Dominates Just-Discovered Galaxies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3493",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Best Male Nightingale Vocalists Make Best Fathers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3494",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Improved Solar Storm Tracking Lengthens Prep Time for Tech Disruption",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3495",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Marijuana Muddies Memory and Mixes with Alcohol to Make Trouble",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3496",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Bird Literally Weighs Its Food Options",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3497",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Noses Agree When Genes See Eye to Eye",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3498",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Smartphone Battery Drains a Lot Even with Dark Screen",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3499",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Alaska Surface Glacier Melting Means More Glug Glug Glug",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3500",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Programmed Bacteria Can Detect Tumors",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3501",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Extreme Exercise Can Poison the Blood",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3502",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Einstein–Bohr Friendship Recounted by Bohr's Grandson",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3503",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Comet Dust Kicks Up Clouds over the Moon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3504",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Rare Multitasking Plus: Brain-Teasers Enhance Workout",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3505",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Ant Smells Like Blue Cheese for a Reason",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3506",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Mars Surface Glass Could Hold Ancient Fossils",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3507",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Is Lying a Good Strategy?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3508",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Wild Chimps Seen Drinking Alcoholic Beverage",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3509",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Color You Remember Seeing Isn't What You Saw",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3510",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Ancient Human Migration Route Marked by Snail Shell \"Bread Crumbs\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3511",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "\"Brainprints\" Could Be Future Security ID",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3512",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Frenzy-Feeding Black Hole Makes Galaxy Most Luminous",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3513",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Vaccine Aims at Fly Host of Disease Parasite",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3514",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Chimps Would \"Cook\" Food If They Could",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3515",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "High Heels Heighten Health Hazard",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3516",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Parrotfish Build Islands with Their Poop",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3517",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Blood Pressure Vaccine Lengthens Rat Lives",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3518",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "CSI: Middle Pleistocene",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3519",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Mummy Mavens Unwrap Preservation Methods",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3520",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Smart Cane Could Help Blind ID Faces",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3521",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Dolphin Deaths Linked to 2010 Gulf of Mexico Oil Spill",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3522",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Octopus Skin Senses Light, No Eyes or Brain Needed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3523",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "First Woman MLBer Will Probably Pitch",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3524",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Seashell Shapes Show Strength for Safety",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3525",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "In the Future Robopets Won't Be Far-Fetched",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3526",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Crop Rotation Works in the Sea, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3527",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Food for Sale Everywhere Fuels Obesity Epidemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3528",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Netflix CEO Peers at Crystal Ball to See TV's Future",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3529",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "May 9 Is Big Day for the Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3530",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Mars Travelers Could Suffer Radiation Brain Damage",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3531",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Wheat Genes Could Bring Back Chestnut",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3532",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Pop Music Gets Its Fossil Record Analyzed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3533",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Space Supervoid Sucks Energy from Light",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3534",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Latex Lining Could Quiet Plane Rides",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3535",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Parkinson's Pen Vibrates to Improve Legibility",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3536",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Infants Already Glued to Multiple Screens",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3537",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Old Cats Can Get Seizures from Sound",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3538",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Musical Performance Activates Specific Genes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3539",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Shipwreck Champagne Reveals Old Wine Secrets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3540",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Small Screen Looks at an Electrified America",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3541",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Taste Salty with Less Salt",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3542",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Granular Materials Could Thwart Missiles",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3543",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "A Few Hundred Smartphones Could Catch Earthquakes Early",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3544",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Martian Glaciers Equal Meter-Thick Planetary Ice Shell",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3545",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Nobelist Talks about Exercise and Chromosome Integrity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3546",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Typing Style Reveals Fatigue or Disease",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3547",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "App Provides Pocket Time Capsule",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3548",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Online Breast Milk Buyers May Get Cowed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3549",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "B.O. Gives Up Its Stinky Secrets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3550",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Outdoor Exercise Worth Some Air Pollution Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3551",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Diabetics Benefit by Biggest Meal Early",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3552",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Donate Your Health Data to Medical Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3553",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "African-American Longevity Suffered after Great Migration",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3554",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Enceladus Might Be a Methane Hotspot",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3555",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Malaria Parasite Attracts Mosquitoes with Perfume",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3556",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "See Movement Better by Bicarb",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3557",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Teotihuacán's Social Tensions Contributed to Its Fall",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3558",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Music’s Physiological Effects Transcend Culture",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3559",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "That's What Ya Call a 4-Star Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3560",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Smoke Makes Twisters More Likely to Strike",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3561",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "La Niña Conditions Spin Up More Springtime Twisters",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3562",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Human Remains Double Known Rainforest Occupation Time",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3563",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Crowd-Sourced Medical Research Gets Apple Assist",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3564",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Big Bang Sitcom Stars Scientific American Tonight",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3565",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Background Music Jams Memory in Older Adults",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3566",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Some European Languages Came by Steppe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3567",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Animals Can Be Given False Memories",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3568",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Whale Grandmas' Longevity Linked to Knowledge",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3569",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Salty Skin Boosts Mouse Wound Healing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3570",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Titan Could Host Life \"Not As We Know It\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3571",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Climate Skeptic Senator Burned after Snowball Stunt",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3572",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Air Force Space Command General on Keeping Space Collision-Free",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3573",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Britain Imported Wheat 2,000 Years before Growing It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3574",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Fishes' Lateral Lines Sense Pressure and Predators",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3575",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Science Wins at the Oscars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3576",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Beaver Teeth Have Iron Advantage",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3577",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Nectar Helps Bees’ Medicine Go Down",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3578",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Pot Munchies Explained By Re-Tasked Neurons",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3579",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Hot Chili Peppers Motivate Mice to Burn Fat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3580",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Humans off the Hook for Alaskan Mastodon Extinction",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3581",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Triskaidekaphobia Plays Role in Paraskevidekatriaphobia",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3582",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Contraception Could Prevent 15 Million Unwanted Pregnancies Annually",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3583",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Preindustrial Pollution Pestered Peru",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3584",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Subway DNA Survey Finds Microbes, Mozzarella and Mystery",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3585",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Newton Figured Out How Tree Sap Rises",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3586",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Cities Could Win Economically by Losing Olympics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3587",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Drones Spy On Birds in Flight",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3588",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Save Libyan Archaeology Plea Issued",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3589",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Super Bowl Team Cities See More Flu Deaths",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3590",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Climate Influences Language Evolution",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3591",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Gates CEO: Let's Shrink Maternal Mortality",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3592",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Snail's Venom Puts Fish in Insulin Coma",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3593",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Tech Consequences Voiced by Carnegie Mellon Prez",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3594",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Diaper Material Expands Wee Microscope Views",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3595",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Obama Talks Ebola and Climate in His SOTU",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3596",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Computer Snoopers Read Electromagnetic Emissions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3597",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Ex-President Wins Campaign against Ghastly Guinea Worm",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3598",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Antibiotics in Blood Can Make Malaria Mosquitoes Mightier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3599",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Health and Conservation Reminders Cut Consumer Energy Use",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3600",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Active Sun at Birth Cut Historical Life Spans",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3601",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Making Evolution Make Microbes Make Products",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3602",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Human Eye Sometimes Sees the Unseeable",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3603",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "E.T. May Reveal Itself with Vibration",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3604",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Large Carnivores Getting Comfy in Europe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3605",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Lyme Helps Spread Other Tick Infections",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3606",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Lightning May Sink Mountain Summits",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3607",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Budget Bill Stealthily Affects Environment and Energy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3608",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Plankton Pee May Alter Ocean's Chemistry",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3609",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Penicillins Reveal Additional Antibacterial Power",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3610",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Short-Term Fasting Made Mice Healthier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3611",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Laser Zap Determines Fruit Ripeness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3612",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Birds Roost on New Evolutionary Tree",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3613",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Canary out, Smartphone in for Gas Detection",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3614",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Quarter-Million Tons of Plastic Plague Oceans",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3615",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Dumpster Diving Provides Drinking Data",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3616",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Summer Teen Jobs Cut Violence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3617",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Poorer Kids May Be Too Respectful at School",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3618",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Big Apple's Insects Eat Streets Clean",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3619",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Scientific American's 1930 Football Study Found Little Actual Action",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3620",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Looking Back on 40 Years of Lucy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3621",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Better Barley Let People Settle Tibetan Plateau",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3622",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Worse Than the Bite",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3623",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Semen Protects HIV from Microbicide Attack",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3624",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Select Few Can Truly Drink to Their Health",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3625",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "\"We Are on the Comet!\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3626",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Microbiome Studies Contaminated by Sequencing Supplies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3627",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Young Earth May Have Been All Wet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3628",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Chimps Hit Sack with Breakfast Plans",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3629",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Bats Jam Rivals’ Sonar to Steal a Meal",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3630",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Half-Century Anniversary of a Mars Mishap",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3631",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Button Battery Coating Lessens Risk If Swallowed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3632",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Bacteria Lowers Mosquito Transmission of Malaria, Dengue",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3633",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Mammals Might Have Slept Through Dino Destroyer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3634",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Online Personalization Means Prices Are Tailored to You, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3635",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Fecal Transplanters Fish Out Key Ingredient",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3636",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Coyote Size Forces Smartness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3637",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Plant Thorns Increase When Defense Needed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3638",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Lemur Latrine Trees Serve as Community Bulletin Boards",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3639",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Carnivorous Plant Inspires Anticlotting Medical Devices",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3640",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Less Well-Off Donate Bigger Income Percentage",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3641",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "To Walk, You Have to Fall in Step",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3642",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "2014 Nobel Prize in Chemistry",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3643",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "2014 Nobel Prize in Physics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3644",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "2014 Nobel Prize in Physiology or Medicine",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3645",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Reindeer Spit Smacks Down Plant Toxins",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3646",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Good Palm Oil Yields Could Be Bad News",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3647",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Central Park Features Worldwide Soil Microbes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3648",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Sea Garbage Shows Ocean Boundaries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3649",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Yeast Coaxed to Make Morphine",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3650",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Crustal Chemistry May Aid in Earthquake Prediction",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3651",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Fire Cooked Up Early Human Culture",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3652",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "I Got Rhythm, I Got Reading",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3653",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Dino Devastator Also Ravaged Veggies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3654",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Genius Grant Goes to Science Historian",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3655",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Leopards Wolf Down Fido in India Ag Area",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3656",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Bio-Spleen Sucks Pathogens and Toxins from Blood",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3657",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Synthetic Fabrics Host More Stench-Producing Bacteria",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3658",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Turtles Not Among the \"Silent Majority\" of Reptiles",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3659",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Chimp Chatter Now up for Eavesdropping",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3660",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Most Tibetans Genetically Adapted to the High Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3661",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Narcissists Self-Involved Enough to Recognize Their Narcissism",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3662",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "How Asteroid 1950 DA Keeps It Together",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3663",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Pump Up the Bass—and Maybe Your Confidence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3664",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Stressed Women Burn Fewer Comfort Food Calories",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3665",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Habitat Loss a Real Buzzkill for Invertebrates",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3666",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Soccer Goalies Ignore Basic Rule of Probability",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3667",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Finally, an Algorithm to Sort Your Beatles Albums",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3668",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Sack Sulfates to Preserve Sewers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3669",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Bio-Battery Produces Power from Your Perspiration",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3670",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Lose Your Job? Good for the Rest of Us",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3671",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Nose Knows What the Mind Tells It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3672",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Tiny Toe Tools Ensure Gecko Traction",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3673",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Guys Prefer Electric Shocks to Boredom",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3674",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Google Searches Linked to Stock Market Moves",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3675",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Andromeda Snickers at Milky Way Mass",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3676",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Spider's Scat Disguise May Be Its Salvation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3677",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "System Converts Solar Efficiently to Steam",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3678",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Environment Has Beef with Beef",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3679",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Pack Rats Expand Diet with New Gut Bacteria",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3680",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Colorful Birds Can Also Belt Tunes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3681",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Roach Reactions to Venom Point to Targeted Pesticides",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3682",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Ocean Plastic Particles Could Get in Gills",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3683",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Salmonella's Favorite Food Could Be Its Achilles' Heel",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3684",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Education Level Linked to Nearsightedness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3685",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Give Us This Day the Bread Wheat Genome",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3686",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Supercooled Organs Could Stretch Time to Transplant",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3687",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Space-Based Data Collection Better Predicts Floods",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3688",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Mobile Phones Carry Owners' Microbiomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3689",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Malarial Mice Smell Better to Mosquitoes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3690",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Neandertal Diners Had Side of Veggies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3691",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "21-Second Rule Governs Mammal Micturition",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3692",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Dwarf Galaxies Really Cooking with Gas",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3693",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Cool Kids Get Schooled with Age",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3694",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "White Bread May Actually Build Strong Bodies 1 Way",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3695",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Plant Spores Hitch Long-Distance Feather Rides",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3696",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Jellyfish Galaxies Get Guts Ripped Out",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3697",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "2-Face Moon Tells How It Got That Way",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3698",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Classroom Decorations Can Distract Young Students",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3699",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Kid Scientist Finds Sweet Pest Control",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3700",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Light Colors Become Fashion Rage for Northern Europe's Insects",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3701",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "London Fish Chip Away at Historical Unknowns",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3702",
"addition_time": 1751279408,
"delete_time": 1751279410,
"title": "Meteor Storm Went from Sizzle to Fizzle",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3703",
"addition_time": 1751339899,
"delete_time": 1751339899,
"title": "She's Alive!",
"file": "/media/podcast/Dolly Parton's America/1577811600-3703.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "8"
},
{
"id": "3704",
"addition_time": 1751339899,
"delete_time": 1751339899,
"title": "Traveling Creatures: live music from the series",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "8"
},
{
"id": "3705",
"addition_time": 1751339899,
"delete_time": 1751339899,
"title": "Dixie Disappearance",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "8"
},
{
"id": "3706",
"addition_time": 1751339899,
"delete_time": 1751339899,
"title": "Dolly Parton's America",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "8"
},
{
"id": "3707",
"addition_time": 1751339899,
"delete_time": 1751339899,
"title": "Dolly's Wildflowers: live music from the series",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "8"
},
{
"id": "3708",
"addition_time": 1751339899,
"delete_time": 1751339899,
"title": "The Only One For Me, Jolene",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "8"
},
{
"id": "3709",
"addition_time": 1751339899,
"delete_time": 1751339899,
"title": "Dollitics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "8"
},
{
"id": "3710",
"addition_time": 1751339899,
"delete_time": 1751339899,
"title": "Neon Moss",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "8"
},
{
"id": "3711",
"addition_time": 1751339899,
"delete_time": 1751339899,
"title": "Tennessee Mountain Trance",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "8"
},
{
"id": "3712",
"addition_time": 1751339899,
"delete_time": 1751339899,
"title": "I Will Always Leave You",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "8"
},
{
"id": "3713",
"addition_time": 1751339899,
"delete_time": 1751339899,
"title": "Sad Ass Songs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "8"
},
{
"id": "3714",
"addition_time": 1751339899,
"delete_time": 1751339899,
"title": "Dolly Parton's America Trailer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "8"
},
{
"id": "3715",
"addition_time": 1751339902,
"delete_time": 1783643475,
"title": "Talking to the Host of Drilled about the Legal Battles around Standing Rock",
"file": "/media/podcast/60-Second Science/1751277300-3715.mp3",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3716",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Megalodon Diets, Teeth Sensitivity and a Bunch of Vaccine News",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3717",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": " Are You Flourishing? This Global Study Has Surprising Takeaways",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3718",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Diagnosing Male Infertility with a Mechanical Engineering Twist",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3719",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Could We Speak to Dolphins? A Promising LLM Makes That a Possibility",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3720",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": " Do Mitochondria Talk to Each Other? A New Look at the Cell’s Powerhouse",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3721",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How to Make Gold, Flamingo Food Tornado, and Kosmos-482 Lands",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3722",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": " Could Freezing Arctic Sea Ice Combat Climate Change?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3723",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How a West Texas Outbreak Threatens Measles Elimination Status",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3724",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Sinking Cities, Waving Cuttlefish and Falling Spacecraft",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3725",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "This Podcast Was Recorded Inside a Particle Collider",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3726",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Rejecting Toxic Fitness Culture with Casey Johnston",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3727",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Jupiter’s Cyclones, Amazon’s Satellites and T. rex Collagen",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3728",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": " The Fungi Facing Extinction and the Conservationists Working Hard to Protect Them",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3729",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Griefbots Offer AI Connections with Deceased Loved Ones",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3730",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Scientific American in 1925: Solar Eclipses, Seances and Some Strange Inventions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3731",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How to Become an Urban Naturalist",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3732",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": " Our Fear and Fascination around Snakes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3733",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Childhood Illnesses Surge, Magnetic Poles Wandered, and a Colossal Squid Is Found",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3734",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": " From the Internet’s Beginnings to Our Understanding of Consciousness, This Editor Has Seen It All",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3735",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Disinfectant That’s More Powerful Than Bleach—And Safe for Your Skin",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3736",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Long Day on Uranus, a Better Method of Making Coffee and Dinos Fossils in Decline",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3737",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Are Prenatal Blood Tests Detecting Cancer?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3738",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Treating Bacterial Vaginosis as an STI Could Improve Outcomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3739",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How the Science of Safety Helps Tackle Global Risks [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3740",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Yodeling Monkeys, Increasing Measles Cases and Stressed Out Americans",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3741",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Cutting USAID Threatens Public Health around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3742",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Understanding the Science of ‘Squirting’",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3743",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Shark Sounds, Molecules on Mars and Continued Federal Cuts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3744",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Go Inside M.I.T.'s 50,000 Square Foot Clean Room",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3745",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Are These Plants Out of Place? A New Look at Invasive Species",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3746",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": " NASA Astronauts Finally Return, Seals Hold Their Breath, and Penguin Poop Stresses Out Krill",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3747",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Severance’s Consulting Neurosurgeon Explains the Science behind the Show’s Brain Procedure",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3748",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": " What Everyone Gets Wrong about Colonoscopies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3749",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "NASA Launches New Missions, Saturn Gains Some Moons, and Whale Urine Balances Marine Ecosystems",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3750",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Movie Magic Meets Practical Robotics for Netflix’s The Electric State",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3751",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Tuberculosis Outbreak Exposes U.S. Postpandemic Vulnerabilities ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3752",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Measles Misinformation, Ozone Recovery and Woolly Mice",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3753",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Author John Green on How Tuberculosis Shaped Our Modern World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3754",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Must Be Microplastics on the Brain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3755",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Did a Volcano Turn a Brain to Glass? Plus, Measles, Mystery Illness and Microbes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3756",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Why Do Songs Get Stuck in Your Head?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3757",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": " Saying Farewell to the Spacecraft That Mapped the Milky Way",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3758",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": " Measles Outbreaks, Asteroid Risks and Fish Friends",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3759",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Where Did Curly Hair Come From? Biological Anthropology May Provide Insights",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3760",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Exploring the Hidden Life in the Air around Us with Carl Zimmer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3761",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Valentine’s Day Isn’t Just for Romance—The Science of Deep Friendships",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3762",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "An Asteroid May Hit Earth in 2032. What Can We Do about It?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3763",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Microplastics on the Mind, Superstrong Shrimp and Bird Flu Transmission",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3764",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Trump’s Executive Orders Create Confusion for Researchers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3765",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Avoiding Outrage Fatigue in Overwhelming Times",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3766",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Tuberculosis Outbreak, RFK, Jr.’s Confirmation Hearings and Polar Bear Hair",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3767",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": " Are You Tired of Feeling Cynical? Hopeful Skepticism Could Be a Way Out",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3768",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Science Will Stare Directly Into the Sun--And Love It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3769",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "WHO Withdrawal, Bird Flu Updates and a Link between Fitness and Treatment Outcomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3770",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Combatting Climate Anxiety through Community Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3771",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "What the End of U.S. Net Neutrality Means For You",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3772",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Health Risks of Alcohol, a Red Dye Ban and Commercial Space Flights",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3773",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Do Pain and Joy Have a Universal Language?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3774",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How the U.S. Mishandled the Early Days of Bird Flu",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3775",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Outbreaks of Norovirus, a Death from Bird Flu and Wildfires in L.A.",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3776",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Finding Pluto’s Potential Replacement with a Giant New Telescope",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3777",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Going Outside Can Change Our Hormones and Improve Microbiome Diversity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3778",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Farewell to 2024, and What We’re Following in the New Year",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3779",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The New Conservationists: Thanks to Conservation Efforts, Pandas, Wolves and Panthers Are Making a Comeback (Part 4)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3780",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The New Conservationists: Meet the Next Generation of Conservationists (Part 3)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3781",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The New Conservationists: AI is Making Meaning from the Sounds and Visuals of Wildlife (Part 2)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3782",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The New Conservationists: Where Do Zoos Fit into the Conservation Puzzle? (Part 1)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3783",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": " AI-Generated Audio Is Entering the Podcast World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3784",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Leaded Gasoline, Orca Hats and ‘Disease X’",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3785",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Iron Deficiency and Anemia May Be More Common Than We Know",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3786",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Anthony Fauci Is Worried about Bird Flu—And How Our Divisions Could Help It Hurt Us",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3787",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Psychologist’s Tips for Avoiding Overconsumption This Black Friday",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3788",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "What RFK, Jr., Could Mean for Public Health, and How Tobacco Use Has Dropped Unevenly",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3789",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Using AI to Understand the Thoughts of the Dead",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3790",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Unscheduled C-Sections May Depend on the Color of Your Skin",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3791",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "An Off Day on Uranus, a Wildfire in Prospect Park and Dispatches from COP29",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3792",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Reflecting on our First Attempt to Speak with the Stars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3793",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Humans Inherited a World That Insects Made",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3794",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Baseball Mud Bath, Water Woes and Wooden Satellites",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3795",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Why Weight May Not Be the Whole Story on Health",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3796",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Your Zodiac Sign Mattered in Medieval Times",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3797",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Your 2024 Election Rundown, from Climate Change to Education",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3798",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Your 2024 Election Rundown, from Health Care to Nuclear Proliferation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3799",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Exploring the Science of Spookiness at the Recreational Fear Lab",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3800",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Scurvy, Bird Flu and a Big Old Meteorite",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3801",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Spooky Lakes and the Science of Haunted Hydrology ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3802",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "What Do Societal Beauty Standards Have to Do with Breast Cancer?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3803",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Microbes Are Evolving to Eat Cleaning Supplies, and Whooping Cough Is Making a Comeback",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3804",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "What The Next President Will Do about Artificial Intelligence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3805",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Doctor Will See You, and Stop Judging You, Now",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3806",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Your Rundown of the Science Nobels, and Europa Clipper Is Delayed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3807",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Is Singing an Evolutionary Accident or a Critical Way to Connect?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3808",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Danger of Hurricane Downpours and the End of ‘Climate Havens’",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3809",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Stem Cell Treatments for Diabetes and a Dolphin’s Smile",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3810",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Hidden Secrets of Math: Uncharted Territory (Part 3)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3811",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Your Next Pain Prescription Could Come without Addiction Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3812",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Fighting Global Misinformation, Ditching Plastic Bottles, and Hunting with an Octopus",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3813",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Hidden Secrets of Math: Invented or Discovered? (Part 2)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3814",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Untangling the Link between Eating Disorders and PCOS",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3815",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Pregnancy Changes the Brain, and How Lizards Make DIY Scuba Gear",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3816",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Hidden Secrets of Math: Beauty and Power (Part 1)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3817",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Why Black Men Should Consider Earlier Screening for Prostate Cancer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3818",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": " AI Could Help Save Us from Conspiracy Theories, and Massachusetts Could Help Save Us from Our Trash",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3819",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "This Episode Was Recorded from Space",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3820",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How 9/11 Transformed Forensic Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3821",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Jellyfish Clones Swarm British Columbian Lakes, and Measles Cases Surge in Oregon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3822",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "In Sickness and Age: Finding Balance between Caregiving and Self-Care (Part 2)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3823",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Racism Might Be Accelerating Aging and Menopause",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3824",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "In Sickness and Age: Changing Family Structures and Caregiving (Part 1)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3825",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Dark Side of Houseplant Collection",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3826",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "NASA’s Perseverance Rover Ascends, Ozempic Is Linked to Depression, and Mpox Cases Spread Rapidly",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3827",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Dissecting the Linguistic Patterns of Kamala Harris",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3828",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "‘Dark Oxygen’ Is Coming from These Ocean Nodules, and We Don’t Know How",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3829",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Our Brains See Faces [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3830",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "James Cameron’s OceanXplorers Embraces Real- Life Science with Cinematic Flare",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3831",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Uncovering the Truth about Sexual Pleasure and Prostates with Science Vs’s Wendy Zukerman",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3832",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "What Happens when Space Junk Falls on Your Property?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3833",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Olympic Athletes Swim the Murky Seine, and Astronauts Are (Still) Stuck on the Space Station",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3834",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Unusual Archaeology: Investigating Ancient Human Sacrifice (Part 3)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3835",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Why Coral Reefs Need You to Listen",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3836",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Cancer Case Rates Are Rising Across Generations and a Private Spacewalk is Delayed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3837",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Unusual Archaeology: Contemplating the Cosmos (Part 2)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3838",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Sex Testing’s Long History in the Olympics and Other Elite Sports",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3839",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Cocaine Sharks and the Hottest Days on Record (So Far)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3840",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Unusual Archaeology: Ancient Chambers and Ocean Tides (Part 1)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3841",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Advanced Meditation Can ‘Reset’ the Brain ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3842",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Windows Devices Go Down, COVID Rates Go Up, and Tornadoes Touchdown on the Ground and on the Big Screen",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3843",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Cleaning Up Paris’s Poop River for the Olympics ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3844",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Name a Quasi-Moon with Radiolab Host Latif Nasser",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3845",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Kavli Prize Presents: Building Materials From The Bottom Up [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3846",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Astronauts Can Drink More Recycled Pee Than Ever, and You Can Still Catch the Plague",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3847",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "On Thin Ice: Contemplating Our Climate Future in Antarctica (Part 4)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3848",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Saving the Last Truly Wild Horse",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3849",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Blast from Our Past and Plans for a Petrochemical-Free Future",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3850",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Supreme Court Plays Hot Potato with Idaho’s Abortion Restrictions, and NASA Plays It Safe with Starliner",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3851",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "On Thin Ice: Life Onboard an Antarctic Icebreaker (Part 3)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3852",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How to Stay Cool during Record-Breaking Heat Waves",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3853",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Your Penis Might Be Full of Microplastics, and The Seine is Definitely Full of Bacteria",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3854",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "On Thin Ice: Penguins in Paradise (Part 2)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3855",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "What Happens if a Nuclear Weapon Goes Off in Space?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3856",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "‘Flying’ Joro Spiders Are No Big Deal, and Starlink Satellites Are Not So Great for The Ozone Layer ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3857",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "On Thin Ice: Supercharged Phytoplankton (Part 1)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3858",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "What’s Actually In Your Tattoo Ink? No One Really Knows",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3859",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Rock Samples Taken from Far Side of the Moon and a ‘Morning-After Pill’ for STIs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3860",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Do Plants ‘Think’? We Might Not Know Enough about Consciousness to be Certain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3861",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Snacking on Cicadas Is Nutritious, Sustainable, and—Yes—Delicious",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3862",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": " Auroras Are on the Horizon, and Bird Flu Is on the Menu",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3863",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Troubled Waters on Cape Cod: Liquid Gold (Part 3)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3864",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Science Behind Curly Hair [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3865",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How to Protect Wildlife without Leaving Home",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3866",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Troubled Waters on Cape Cod: Sticker Shock (Part 2)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3867",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Apocalypse Is Going to Be a Lot Friendlier Than You Think",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3868",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "AI Is Getting Creepier and Risky Cheese Is Getting Trendier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3869",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Troubled Waters on Cape Cod: Loved to Death (Part 1)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3870",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Citrus-Scented Cannabis Compound Reduces Anxiety for Weed Users",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3871",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Internet Is Full of Deepfakes, and the Sky Is Full of Trash",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3872",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Introducing Science Quickly’s New Host, Rachel Feltman",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3873",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Can Food Work as Medicine?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3874",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Corals Are Once Again Bleaching En Masse, but Their Fate Isn’t Sealed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3875",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Episode 3: A Long-Awaited Climate Experiment Is Poised to Launch in the Amazon. What Will It Find?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3876",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Episode 2: A Singular Climate Experiment Takes Shape in the Amazon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3877",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Episode 1: Will the Amazon Help Save the Planet?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3878",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Big a Threat Is Bird Flu?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3879",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How a New AI Model Helps Volcanic History Rise from the Ashes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3880",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Do Sperm Whales Have Culture?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3881",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Measles Is Back, and That’s Scary",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3882",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Did the Eclipse Give You the Amateur Astronomy Bug? Here’s How to Get Started",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3883",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Veteran Eclipse Chaser Explains the Thrill of Totality",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3884",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Three Times Eclipses Eclipsed Previous Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3885",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Humans Find Total Eclipses Startling. What About a Komodo Dragon?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3886",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Inside the Race to Protect Artists from Artificial Intelligence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3887",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Tale of the Snail Slime Wrangler",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3888",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Mucus Saves Your Life Every Day",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3889",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Magical Mucus: On the Benefits of Getting Slimed by a Hagfish",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3890",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Artificial Intelligence Helped Write this Award-Winning Song",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3891",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Why Short Naps Are Good for You",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3892",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Great Debate: Could We Ever Travel through Time?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3893",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Science behind Humpback Whales’ Eerie Songs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3894",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Large Study of ME/CFS Patients Reveals Measurable Physical Changes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3895",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Hunger in Gaza Could Affect Survivors' Health for Decades ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3896",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "These Invasive Ants Are Changing How Lions Hunt ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3897",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Should You Swab Your Throat Plus Your Nose for COVID?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3898",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Is This the Earliest Evidence of Human Cannibalism?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3899",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": " What Do You Mean, Bisexual People Are ‘Risk-Taking’? Why Genetic Studies about Sexuality Can Be Fraught ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3900",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Asexuality Research Has Reached New Heights. What Are We Learning?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3901",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How to Close the Orgasm Gap for Heterosexual Couples",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3902",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Dominatrices Are Showing People How to Have Rough Sex Safely",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3903",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How to Explore Your Sexuality, according to Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3904",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "You Can't Fix Burnout With Self-Care",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3905",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How April’s Eclipse Will Solve Solar Mysteries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3906",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "When Will We Finally Have Sex In Space? ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3907",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Is This Ancient Cattle Breed Fighting Wildfires in Portugal?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3908",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Government's Former UFO Hunter Has a Lot to Say",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3909",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Quantum Computers Might Make All of Your Private Data Less Secure",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3910",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "For 60+ years, respiratory syncytial virus (RSV) vaccines have evaded scientists. But now that's changed [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3911",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "New IVF Test Could Increase Chances of Pregnancy Success",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3912",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How to Save Indigenous Languages",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3913",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Can AI Predict When You Die?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3914",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Best Way to Use Home COVID Tests Right Now",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3915",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "From Drunken Stupor to Sober with One (Hormone) Shot",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3916",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Does the World’s Largest Seabird Know Where to Fly?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3917",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Without the Moon, You Wouldn't Exist (Probably)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3918",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Strange and Beautiful Science Of Our Lives",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3919",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Surprising Health Benefits of Dog Ownership",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3920",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Podcasts of the Year: Cleo, the Mysterious Math Menace",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3921",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Podcasts of the Year: Talking to Animals using Artificial Intelligence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3922",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How to Avoid Holiday Hangovers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3923",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Podcasts of the Year: What Better Gift for the Holidays Than a Monstrous Mystery?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3924",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Are Orca Whales Friends or Foes?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3925",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Turns Out Undersea Kelp Forests Are Crucial to Salmon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3926",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Researchers Just Created the World's First Permafrost Atlas of the Entire Arctic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3927",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A New Type of Heart Disease is on the Rise",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3928",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "AI Can Now Read Your Cat's Pain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3929",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "These Researchers Put Sperm Through a Kind of 'Hunger Games'",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3930",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Is Too Little Play Hurting Our Kids?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3931",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Misinformation Spreads through Conflict",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3932",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Why Childhood Vaccination Rates Are Falling",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3933",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Climate Adaptation Can Backfire If We Aren't Careful",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3934",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Members of This Reservation Learned They Live with Nuclear Weapons. Can Their Reality Ever Be the Same?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3935",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "What Would It Mean to 'Absorb' a Nuclear Attack?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3936",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "If You Had a Nuclear Weapon in Your Neighborhood, Would You Want to Know about It?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3937",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Just One U.S. Reservation Hosts Nuclear Weapons. This Is The Story of How That Came to Be",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3938",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Did Nuclear Weapons Get on My Reservation?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3939",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Quick Naps Are Good for Your Brain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3940",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Funding for Research on Psychedelics Is on the Rise, Along with Scientists' Hopes for Using Them",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3941",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Do You Need to 'Trip' for Psychedelics to Work as Medicine?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3942",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Search for New Psychedelics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3943",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "What Are Ultraprocessed Foods, and Are They Bad for You?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3944",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "These Creatures Are Probably the Closest Thing Nature Has to Real Werewolves",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3945",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The World's Most Frightening Animal Sounds like This",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3946",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Tale of the Rotifer That Came Back to Life after 25,000 Years in an Icy Tomb",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3947",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Generative AI Models Are Sucking Up Data from All Over the Internet, Yours Included",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3948",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Some Parents Show Their Kids They Care with a Corpse",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3949",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How to Handle This New COVID Season",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3950",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "As Arctic Sea Ice Breaks Up, AI Is Starting to Predict Where the Ice Will Go",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3951",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Scientists Argue Conservation Is under Threat in Indonesia",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3952",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Soggy Mission to Sniff Out a Greenhouse Gas 'Bomb' in the High Arctic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3953",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "This Indigenous Community Records the Climate Change That Is Causing Its Town to Erode Away",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3954",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Journey to the Thawing Edge of Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3955",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Popular Decongestant Doesn't Work. What Does?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3956",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The State of Large Language Models",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3957",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Song of the Stars, Part 3: The Universe in all Senses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3958",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Song of the Stars, Part 2: Seeing in the Dark",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3959",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Song of the Stars, Part 1: Transforming Space into Symphonies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3960",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "This Researcher Captured Air from the Amazon in Dive-Bombs--And Found Grim Clues That the Forest Is Dying",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3961",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Should You Get a Blood Test For Alzheimer's?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3962",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Ada Limón's Poem for Europa, Jupiter's Smallest Galilean Moon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3963",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How the Woolly Bear Caterpillar Does Something Pretty Amazing to Survive the Winter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3964",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Bees 'Buzz' in More Ways Than You Might Think",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3965",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Scientists Are Beginning to Learn the Language of Bats and Bees Using AI",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3966",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Trying to Train Your Brain Faster? Knowing This Might Help with That",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3967",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "This Tick Bite Makes You Allergic to Red Meat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3968",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "This Lesbian Monkey Love Triangle Tells Us Something Really Interesting about Darwin's 'Paradox'",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3969",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "What the Luddites Can Teach Us about AI",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3970",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Pig Kidney Was Just Transplanted Into a Human Body, and It Is Still Working",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3971",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Migratory Birds Are in Peril, but Knowing Where They Are at Night Could Help Save Them",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3972",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Artificial Intelligence Is Helping Us 'See' Some of the Billions of Birds Migrating at Night",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3973",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Here's How You Go Birding in the Middle of the Night",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3974",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Using Human-Sized Microphones and Hay Bales, They Unlocked the Mysteries of Bird Migration",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3975",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "They Tap Into the Magical, Hidden Pulse of the Planet, but What is the Nighttime Bird Surveillance Network?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3976",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Hearing Aids Stave Off Cognitive Decline",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3977",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "In This Ancient Garden, Plants Can Cure or Kill You",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3978",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Fungi Economy, Part 3: Can Climate Modeling from Space Save Our Forests?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3979",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Fungi Economy, Part 2: Here's How Plants and Fungi Trade beneath Our Feet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3980",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Fungi Economy, Part 1: Just like Us, Trees Are Experiencing Inflation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3981",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Could Weight-Loss Drugs Curb Addiction? Your Health, Quickly, Episode 12",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3982",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How to Roll a Joint Perfectly, according to Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3983",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Here's How AI Can Predict Hit Songs With Frightening Accuracy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3984",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Here's Why Actors Are So Worried about AI",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3985",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Are You a Lucid Dreamer?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3986",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Here's What 'Oppenheimer' Gets Right--And Wrong--About Nuclear History",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3987",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Stress Messes With Your Gut",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3988",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Should We Care About AI's Emergent Abilities?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3989",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "What That Jazz Beat Tells Us about Hearing and The Brain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3990",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Just like People, Orangutans Get Smoker's Voice",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3991",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Doctor AI Will See You Now",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3992",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "El Niño is Back. What Does That Mean For You?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3993",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Kavli Prize Presents: How Your Brain Maps the World [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3994",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Universe Is Abuzz with Giant Gravitational Waves, and Scientists Just Heard Them (Maybe)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3995",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Poisons and Perils on the Salton Sea",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3996",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "These Ants Are Probably Better at Navigating Than You Are",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3997",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How to Cool Down Fast in Summer Heat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3998",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Follow a Hurricane Expert into the Heart Of the Beast",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "3999",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Have Astronomers Seen the Universe's First Stars?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4000",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Cleo, the Mysterious Math Menace",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4001",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "MDMA Moves from Party Drug Back to Therapy Tool",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4002",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Five Things You Need to Know about Wildfire Smoke Right Now",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4003",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "These Predators Had a Face like an Axe and Will Haunt Your Nightmares",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4004",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "This Thunderous Goose Relative Was Built like a Tank with the Wings of a Songbird",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4005",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "This Gargantuan Bird Weighed as Much as a Sports Car",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4006",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "This Massive Scientific Discovery Sat Hidden in a Museum Drawer for Decades",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4007",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Kavli Prize Presents: Understanding the Machinery of the Cell [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4008",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "What the End of the COVID Emergency Means for You",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4009",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Heat Waves Are Breaking Records. Here's What You Need to Know",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4010",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Why We're Worried about Generative AI",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4011",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Dismantling the PFAS 'Forever Chemicals' Legacy [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4012",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Understanding Dissociative Identity Disorder through the 'Community' of Ella",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4013",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Is Time Travel Even Possible?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4014",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Parrot Babies Babble Just like Us",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4015",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A 19th-Century Obscenity Law Is Being Used Again to Limit Abortion",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4016",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "These Mini Ecosystems Existed Underfoot of Dinosaurs, but Our Parking Lots Might Pave Them to Extinction",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4017",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "This $600-Million Room Contains the World's Largest Collection of These Tiny Endangered Animals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4018",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Surviving in the Ephemeral Pools of Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4019",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "This Fleeting Ecosystem Is Magical, and You Have Probably Never Heard of It or Even Noticed It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4020",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Do We Need To Save the Whales Again?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4021",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Bad Side of 'Good' Cholesterol",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4022",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "AI Chatbots and the Humans Who Love Them",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4023",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Mission to Jupiter's Strange Moons Is Finally on Its Way",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4024",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Surprising Backstory behind Witch Hunts and Reproductive Labor",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4025",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "What You Need to Know about GPT-4",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4026",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Good News for Coffee Lovers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4027",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Meet the Magnificent Microbes of the Deep Unknown",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4028",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Zombifying Fungi Became Master Manipulators",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4029",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Science Has New Ideas about 'Oumuamua's Weirdness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4030",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Open Offices Aren't Working, so How Do We Design an Office That Does?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4031",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Cosmos, Quickly: Remembering the Genius of Vera Rubin",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4032",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Long COVID's Roots in the Brain: Your Health, Quickly, Episode 3",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4033",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "If AI Starts Making Music on Its Own, What Happens to Musicians?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4034",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Music-Making Artificial Intelligence Is Getting Scary Good",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4035",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Artificial Intelligence Helped Make the Coolest Song You've Heard This Week",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4036",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Space Force Humor, Laser Dazzlers, and the Havoc a War in Space Would Actually Wreak",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4037",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Squeak Squeak, Buzz Buzz: How Researchers Are Using AI to Talk to Animals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4038",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "RSV Vaccines Are Coming At Last: Your Health, Quickly, Episode 2",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4039",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "If the Mathematical Constant Pi Was a Song, What Would It Sound Like?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4040",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How To Stop a (Potentially Killer) Asteroid",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4041",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Scientific Secret to Soothing Fussy Babies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4042",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Helper Sharks Discovered the World's Largest Seagrass Ecosystem",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4043",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How the Woolly Bear Caterpillar Turns into a Popsicle to Survive the Winter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4044",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Pandemic's Mental Toll, and Does Telehealth Work? Your Health, Quickly, Episode 1",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4045",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Does Not Being Able to Picture Something in Your Mind Affect Your Creativity?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4046",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Sorry, UFO Hunters--You Might Just Be Looking at a Spy Balloon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4047",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Building Resilience in the Face of Climate Change [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4048",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Do We Find Aliens? Maybe Unlearn What We Know About 'Life' First",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4049",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Love and the Brain: Do Partnerships Really Make Us Happy? Here's What the Science Says",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4050",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Love and the Brain: The Animal Matchmaker and the Panda Romeo and Juliet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4051",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Love and the Brain: How Attached Are We to Attachment Styles?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4052",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Love and the Brain, Part 1: The 36 Questions, Revisited",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4053",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Coming Soon to Your Podcast Feed: Science, Quickly",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4054",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The 60-Second Podcast Takes a Short Break--But Wait, There's More",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4055",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Is Your Phone Actually Draining Your Brain?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4056",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Why Your Dog Might Think You're a Bonehead",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4057",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Alaska's Protective Sea Ice Wall Is Crumbling because of the Climate Crisis",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4058",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "It's the Bass That Makes Us Boogie",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4059",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Vaccines Saved Money and Lives and China's Zero-COVID Protests: COVID, Quickly Podcast, Episode 44",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4060",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "'Chatty Turtles' Flip the Script on the Evolutionary Origins of Vocalization in Animals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4061",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Tardigrades, an Unlikely Sleeping Beauty",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4062",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Burned Redwood Forest Tells a Story of Climate Change, Past, Present and Future",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4063",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Antivirals Could Reduce Long COVID Risk and How Well the New Boosters Work: COVID, Quickly Podcast, Episode 43",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4064",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Honeybee Swarm Has as Much Electric Charge as a Thundercloud",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4065",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "These Punk Rock Penguins Have a Bizarre Breeding Strategy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4066",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Viral Triple Threat and Why You Need a Booster: COVID, Quickly, Episode 42",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4067",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "What You Need to Know about Iran's Surveillance Tech",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4068",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Delivering Equitable Lung Cancer Care [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4069",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "New Halloween 'Scariant' Variants and Boosting Your Immunity: COVID, Quickly, Episode 41",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4070",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "These Hawks Have Figured Out How to See the Bat in the Swarm",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4071",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Naps Not Needed to Make New Memories",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4072",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How the Pandemic Shortened Life Expectancy and New Drugs on the Horizon: COVID, Quickly, Episode 40",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4073",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Engineering the Treatment of Early-Stage Lung Cancer [SPONSORED]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4074",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Rediscovered Red Wolf Genes May Help Conserve the Species",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4075",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "What the Disease Feels Like, and Presidents Can't End Pandemics: COVID, Quickly, Episode 39",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4076",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "These Spiders Use Their Webs like Huge, Silky Ears",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4077",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Chewing Consumes a Surprising Amount of Energy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4078",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "These Bats Buzz like Bees to Save Their Own Lives",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4079",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Unvaxxed Kids and 8 Days a Week (of Isolation): COVID, Quickly, Episode 38",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4080",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Listen to Images from the James Webb Space Telescope",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4081",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "These Tiny Pollinators Can Travel Surprisingly Huge Distances",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4082",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "During a Heat Wave, You Can Blast the AC, but What Does a Squirrel Do?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4083",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Back-to-School Special: Kids, Tests and Long COVID Reassurance: COVID, Quickly, Episode 37",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4084",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "This Artificial Intelligence Learns like a Baby",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4085",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Understanding the Inner Workings of Stars [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4086",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Dogs Actually Tear Up When Their Owners Come Home",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4087",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Lifelong Quest to Improve Mental Health among Cancer Patients [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4088",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Next-Generation Sequencing Can Enable Precision Oncology [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4089",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Hawking, a Paradox and a Black Hole Mystery, Solved?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4090",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Monkeypox Update and Homing in on Long COVID: COVID, Quickly, Episode 36",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4091",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Fueling Patients' Drive to Treatment [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4092",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Researchers Created a Potion That Turns Loud Lions into Placid Pussycats",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4093",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Reaching the Root of Disparities in Cancer Care [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4094",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "For Some Dolphins, the Key to Mating is Rolling with a Tight, Noisy Crew",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4095",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Source of Integrative Support for Breast and Ovarian Cancer Patients [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4096",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Common Are Reinfections? And How Trust Can Beat the Virus: COVID, Quickly, Episode 35",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4097",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Kavli Prize Presents: Understanding Molecules [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4098",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Transforming the Trajectory of Lung Cancer [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4099",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Polar Bears That Persist",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4100",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Omicron's Nasty New Variants and Better Boosters to Battle Them: COVID, Quickly, Episode 34",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4101",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Remote-Controlled Carnivorous Plant?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4102",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Kids' Vaccines at Last and Challenges in Making New Drugs: COVID, Quickly, Episode 33",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4103",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How AI Facial Recognition Is Helping Conserve Pumas",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4104",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Kavli Prize Presents: Understanding Neurodevelopment and Neurodegeneration [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4105",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Female CEOs Change How Firms Talk about Women",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4106",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID Death Rates Explained, Dismal Booster Stats and New Vaccines",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4107",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Hedgehogs Host the Evolution of Antibiotic Resistance",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4108",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Meerkats Are Getting Climate Sick",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4109",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "'Where Are Vaccines for Little Kids?' and the Latest on Long COVID",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4110",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Your Phone Could Be Used to Prosecute for Getting an Abortion: Here's How",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4111",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "If Sea Ice Melts in the Arctic, Do Trees Burn in California?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4112",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How to Care for COVID at Home, and Is That Sniffle Allergies or the Virus? COVID Quickly, Episode 30",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4113",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Astronomers Finally Captured a Photo of our Own Galaxy's Black Hole",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4114",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Two-Headed Worms Tell Us Something Fascinating about Evolution",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4115",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Harmful Effects of Overturning Roe v. Wade",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4116",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Safer Indoor Air, and People Want Masks on Planes and Trains: COVID Quickly, Episode 29",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4117",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Climate Change Is Shrinking Animals, Especially Bird-Brained Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4118",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Cosmic Simulation Shows How Dark-Matter-Deficient Galaxies Confront Goliath and Survive",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4119",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Venturing Back to the Office and the Benefits of Hybrid Immunity: COVID Quickly, Episode 28",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4120",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Science Finally Has a Good Idea about Why We Stutter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4121",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Love Computers? Love History? Listen to This Podcast",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4122",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Probiotics Could Help Save Overheated Corals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4123",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The History of the Milky Way Comes into Focus",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4124",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Second Boosters, Masks in the Next Wave and Smart Risk Decisions: COVID Quickly, Episode 27",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4125",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "New Research Decodes the Sea Cow's Hidden Language",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4126",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Does This Look like a Face to You?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4127",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Some Good News about Corals and Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4128",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Florida Gets Kids and Vaccines Wrong and Ukraine's Health Crisis: COVID Quickly, Episode 26",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4129",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Are You Better Than a Machine at Spotting a Deepfake?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4130",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Treasure Trove of Dinosaur Bones in Italy Rewrites the Local Prehistoric Record",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4131",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Chimps Apply Insects to Their Wounds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4132",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Push to Move Past the Pandemic: COVID Quickly, Episode 25",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4133",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Researchers Analyzed Folk Music like It Was DNA: They Found Parallels between Life and Art",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4134",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Hong Kong 'Sees' Invisible Tailpipe Emissions and Pulls Polluters Off the Road",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4135",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "This Maine Farm Is Harvesting the Sun's Power while it Picks the Blueberries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4136",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Tracking Outbreaks through Sewers, and Kids' Vaccines on Hold Again: COVID Quickly, Episode 24",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4137",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Romantic Temptation of the Monogamous Prairie Vole",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4138",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Answering an Age-Old Mystery: How Do Birds Actually Fly?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4139",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "More Kids Get COVID, Long Haulers and a Vaccine Milestone: COVID Quickly, Episode 23",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4140",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "What Is the Shape of This Word?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4141",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Tiger Sharks, Tracked over Decades, Are Shifting Their Haunts with Ocean Warming",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4142",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Marine Wildlife Can Coexist with Offshore Wind [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4143",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID Quickly, Episode 22: Colds Build COVID Immunity and the Omicron Vaccine Delay",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4144",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Surprising Physics of Finger Snapping",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4145",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Salvador Dali's Creative Secret Is Backed by Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4146",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Growing Force of Fiery Zombies Threatens Cold Northern Forests",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4147",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Listen to This New Podcast: Lost Women of Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4148",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Canary Islands Eruption Resets Volcano Forecasts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4149",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID Quickly, Episode 21: Vaccines against Omicron and Pandemic Progress",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4150",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "As Forests Burn, a Climate Puzzle Materializes in the Far North",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4151",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Astronomers Spot Two Dust Bunnies Hiding in the Early Universe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4152",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID Quickly, Episode 20: The Omicron Scare, and Anti-COVID Pills Are Coming",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4153",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "To Better Persuade a Human, a Robot Should Use This Trick",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4154",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Redo of a Famous Experiment on the Origins of Life Reveals Critical Detail Missed for Decades",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4155",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID Quickly, Episode 19: Mandate Roadblocks, Boosters for All and Sickness in the Zoo",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4156",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Flocking Together May Have Helped Dinosaurs Dominate the Earth",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4157",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Engineered Bacteria Use Air Bubbles as Acoustically Detonated Tumor TNT",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4158",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID Quickly, Episode 18: Vaccines for Kids and the Limits of Natural Immunity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4159",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "These Bugs Produce Smelly Defenses That Need to Be Heard to Be Believed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4160",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "For Some Parents, Hiding a Dead Body Shows How Much You Care",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4161",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Date of the Vikings' First Atlantic Crossing Revealed by Rays from Space",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4162",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID Quickly, Episode 17: Vaccine Lies and Protecting Immunocompromised People",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4163",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "How Can an Elephant Squeak Like a Mouse?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4164",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Beethoven's Unfinished 10th Symphony Brought to Life by Artificial Intelligence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4165",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Kavli Prize Presents: Understanding the Universe [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4166",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Canary in an Ice-Rich, Slumping Rock Glacier in Alaska",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4167",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID Quickly, Episode 16: Vaccines Protect Pregnancies and a New Antiviral Pill",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4168",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Mystery of Water Drops That Skate Across Oil at Impossible Speeds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4169",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Night Flights Are No Sweat for Tropical Bees",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4170",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "These Bacteria Steal from Iron and Could Be Secretly Helping to Curb Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4171",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID, Quickly, Episode 15: Booster Shot Approvals--plus Vaccines for Kids?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4172",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Dinosaurs Lived--and Made Little Dinos--in the Arctic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4173",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "During a Rodent Quadrathlon, Researchers Learn That Ground Squirrels Have Personalities",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4174",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A Car Crash Snaps the Daydreaming Mind into Focus",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4175",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID, Quickly, Episode 14: Best Masks, Explaining Mask Anger, Biden's New Plan",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4176",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Kavli Prize Presents: Understanding Atoms [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4177",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "In Missouri, a Human 'Bee' Works to Better Understand Climate Change's Effects",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4178",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "These Baby Bats, like Us, Were Born to Babble",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4179",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Their Lives Have Been Upended by Hurricane Ida",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4180",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID, Quickly, Episode 13: Vaccine Approval, Breakthrough Infections, Boosters",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4181",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Flexible Microprocessor Could Enable an 'Internet of Everything'",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4182",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Years Before COVID-19, Zombies Helped Prepare One Hospital System for the Real Pandemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4183",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Incredible, Reanimated 24,000-Year-Old Rotifer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4184",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Astronomers Find an Unexpected Bumper Crop of Black Holes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4185",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Inside Millions of Invisible Droplets, Potential Superbug Killers Grow",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4186",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Secret behind Songbirds' Magnetic Migratory Sense",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4187",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID, Quickly, Episode 12: Masking Up Again and Why People Refuse Shots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4188",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Kavli Prize Presents: Understanding Touch [Sponsored]",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4189",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Moths Have an Acoustic Invisibility Cloak to Stay under Bats' Radar",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4190",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID, Quickly, Episode 11: Vaccine Booster Shots, and Reopening Offices Safely",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4191",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Your Brain Does Something Amazing between Bouts of Intense Learning",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4192",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID, Quickly, Episode 10: Long Haulers, Delta Woes and Barbershop Shots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4193",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "This Newly Discovered Species of Tree Hyrax Goes Bark in the Night",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4194",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID, Quickly, Episode 9: Delta Variant, Global Vaccine Shortfalls, Beers for Shots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4195",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Animal Kids Listen to Their Parents Even before Birth",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4196",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "For African Elephants, Pee Could Be a Potent Trail Marker",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4197",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "A 'Universal' Coronavirus Vaccine to Prevent the Next Pandemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4198",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID, Quickly, Episode 8: The Pandemic's True Death Toll and the Big Lab-Leak Debate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4199",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Puppies Understand You Even at a Young Age, Most Adorable Study of the Year Confirms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4200",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "New 3-D-Printed Material Is Tough, Flexible--and Alive",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4201",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Bats on Helium Reveal an Innate Sense of the Speed of Sound",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4202",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "The Dirty Secret behind Some of the World's Earliest Microscopes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4203",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID, Quickly, Episode 7: The Coming Pandemic Grief Wave, and Mask Whiplash",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4204",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Math and Sleuthing Help to Explain Epidemics of the Past",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4205",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Who Laps Whom on the Walking Track--Tyrannosaurus rex or You? Science Has a New Answer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4206",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Artificial Light Keeps Mosquitoes Biting Late into the Night",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4207",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID, Quickly, Episode 6: The Real Reason for India's Surge and Mask Liftoff",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4208",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Male Lyrebirds Lie to Get Sex",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4209",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Lovebirds Adore Our Inefficient Air-Conditioning",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4210",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID, Quickly, Episode 5: Vaccine Safety in Pregnancy, Blood Clots and Long-Haul Realities",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4211",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Beehives Are Held Together by Their Mutual Gut Microbes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4212",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "These Endangered Birds Are Forgetting Their Songs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4213",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "To Fight Climate Change: Grow a Floating Forest, Then Sink It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4214",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "COVID, Quickly, Episode 4: The Virtual Vaccine Line and Shots for Kids",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4215",
"addition_time": 1751339902,
"delete_time": 1751339904,
"title": "Big Physics News: The Muon g-2 Experiment Explained",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4216",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Boston's Pigeons Coo, 'Wicked'; New York's Birds Coo, 'Fuhgeddaboudit'",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4217",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Imperiled Freshwater Turtles Are Eating Plastics--Science Is Just Revealing the Threat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4218",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "COVID, Quickly, Episode 3: Vaccine Inequality--plus Your Body the Variant Fighter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4219",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Using Dragonflies as Contamination Detectors",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4220",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Smartphones Can Hear the Shape of Your Door Keys",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4221",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Chimpanzees Show Altruism while Gathering around the Juice Fountain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4222",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "COVID, Quickly, Episode 2: Lessons from a Pandemic Year",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4223",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "That Mouse in Your House--It's Smarter, Thanks to You",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4224",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Kangaroos with Puppy Dog Eyes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4225",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "COVID, Quickly, Episode 1: Vaccines, Variants and Diabetes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4226",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Machine Learning Pwns Old-School Atari Games",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4227",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "E-Eggs Track Turtle Traffickers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4228",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Bromances Could Lead to More Romances for Male Hyenas",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4229",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "A Heroic Effort to Measure Helium",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4230",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Science News Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4231",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Scientists Take a Cattle Head Count in India",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4232",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Ancient Dogs Had Complex Genetic Histories",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4233",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Bees Use 'Bullshit' Defense to Keep Giant Hornets at Bay",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4234",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Humans May Have Befriended Wolves with Meat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4235",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "How to Avoid Becoming a Meal for a Cheetah",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4236",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "How the Coronavirus Pandemic Shaped Our Language in 2020",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4237",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Science News Briefs from around the Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4238",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Ravens Measure Up to Great Apes on Intelligence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4239",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Baby Bees Deprive Caregivers of Sleep",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4240",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "How the Wolves Change the Forest",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4241",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Brain Sides Are Both Busy in New Language Learning",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4242",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "A Nurse's Message about the COVID-19 Vaccine",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4243",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Eye Treatment Stretches Mouse Sight Beyond Visible Spectrum",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4244",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "This Bat Wears a Face Mask",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4245",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "The Denisovans Expand Their Range into China",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4246",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Undersea Earthquakes Reveal Sound Warming Info",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4247",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Duckbill Dino Odyssey Ended in Africa",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4248",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Early Mammals Had Social Lives, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4249",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Science News Briefs from All Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4250",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Divide and Conquer Could Be Good COVID Strategy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4251",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Zebra Coloration Messes With Fly Eyes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4252",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Science Sound(E)scapes: Head Banging and Howling in the Amazon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4253",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Science Sound(E)scapes: Amazon Frog Choruses at Night",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4254",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Science Sound(E)scapes: Amazon Pink River Dolphins",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4255",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Frog Vocals Lead to Small Preference",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4256",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Science News Briefs from around the Globe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4257",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Election Science Stakes: Technology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4258",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Election Science Stakes: Energy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4259",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Election Science Stakes: Environment",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4260",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Election Science Stakes: Climate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4261",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Election Science Stakes: Medicine and Public Health",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4262",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Election 2020: The Stakes for Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4263",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Why Some Easter Island Statues Are Where They Are",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4264",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Acorn Woodpeckers Fight Long, Bloody Territorial Wars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4265",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Funky Cheese Rinds Release an Influential Stench",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4266",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Dinosaur Asteroid Hit Worst-Case Place",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4267",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "River Ecosystem Restoration Can Mean Just Add Water",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4268",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "3,000-Year-Old Orbs Provide a Glimpse of Ancient Sport",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4269",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Humans Make Wild Animals Less Wary",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4270",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Play Helped Dogs Be Our Best Friends",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4271",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Neandertal DNA May Be COVID Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4272",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Nobelist Talks CRISPR Uses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4273",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Blue Whale Song Timing Reveals Time to Go",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4274",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "New Nobel Laureate Talks Today's Virology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4275",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Greenland Is Melting Faster Than Any Time in Past 12,000 Years",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4276",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Sloths Slowly Cavort by Day Now",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4277",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Dinosaurs Got Cancer, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4278",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Fluttering Feathers Could Spawn New Species",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4279",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Science News from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4280",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "These Small Mammals Snort to a Different Tune",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4281",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Ice Age Temperatures Help Predict Future Warming",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4282",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "High-Elevation Hummingbirds Evolved a Temperature Trick",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4283",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Why Pet Pigs Are More like Wolves Than Dogs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4284",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Bricks Can Be Turned into Batteries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4285",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Leftovers Are a Food-Waste Problem",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4286",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Some Dinosaurs Probably Nested in Arctic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4287",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Star Systems Can Be Born Topsy-Turvy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4288",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Death by Lightning Is Common for Tropical Trees",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4289",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Science Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4290",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Alaska's Salmon Are Shrinking",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4291",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "End of 'Green Sahara' May Have Spurred a Megadrought in Southeast Asia",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4292",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "White Rhinos Eavesdrop to Know Who's Who",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4293",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Prehistoric Marine Reptile Died after a Giant Meal",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4294",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Cows with Eye Images Keep Predators in Arrears",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4295",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Warbler Species Fires Up Song Diversity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4296",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Why Lava Worlds Shine Brightly (It's Not the Lava)",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4297",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Aardvarks Are Ailing amid Heat and Drought",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4298",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "The World's Highest-Dwelling Mammal Lives atop a Volcano",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4299",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Dampening of the Senses Is Linked to Dementia Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4300",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Translucent Frog Optics Create Camo Color",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4301",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Paired Comparisons Could Mean Better Witness Identifications",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4302",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Foxes Have Dined on Our Leftovers for 30,000 Years",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4303",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Mexico Caves Reveal Ancient Ocher Mining",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4304",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "In Bee Shortage, Bubbles Could Help Pollinate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4305",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Science News Briefs from around the Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4306",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Seismologists Find the World Quieted Down during Pandemic Lockdowns",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4307",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Old Art Offers Agriculture Info",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4308",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "How COVID-19 Decreases Weather Forecast Accuracy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4309",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Cricket Avoids Being Bat Food by Doing Nothing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4310",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Speaker System Blocks City Noise",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4311",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Civil War Vaccine May Have Lessons for COVID-19",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4312",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Can People ID Infectious Disease by Cough and Sneeze Sounds?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4313",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Why Some Birds Are Likely To Hit Buildings",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4314",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Sparrow Song Undergoes Key Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4315",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Polynesians and Native South Americans Made 12th-Century Contact",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4316",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Animals Appreciate Recent Traffic Lull",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4317",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Bat Says Hi as It Hunts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4318",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Forests Getting Younger and Shorter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4319",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Young Great White Sharks Eat off the Floor",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4320",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Tweets Reveal Politics of COVID-19 ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4321",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Nature's Goods and Services Get Priced",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4322",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Animal Migrations Track Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4323",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Science Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4324",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Stiffer Roads Could Drive Down Carbon Emissions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4325",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Unicorns of the Sea Reveal Sound Activities",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4326",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Human Speech Evolution Gets Lip-Smacking Evidence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4327",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Printed Coral Could Provide Reef Relief",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4328",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "'Snot Palaces' Reveal Undersea Creature Secrets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4329",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Helping Kids Cope with COVID-19 Worries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4330",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Ancient DNA Rewrites Dead Sea Scroll History",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4331",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Whale Protections Need Not Cause Lobstering Losses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4332",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "How to Keep COVID-19 Conspiracies Contained",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4333",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Bioluminescence Helps Prey Avoid Hungry Seals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4334",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "3 Words Mislead Online Regional Mood Analysis",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4335",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "COVID Has Changed Soundscapes Worldwide",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4336",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Science News Briefs from All Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4337",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Colorful Corals Beat Bleaching",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4338",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Skinny Genes Tell Fat to Burn",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4339",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Malaria Mosquitoes Are Biting before Bed-Net Time",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4340",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "We're Being Tested",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4341",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Barn Owl Babies Can Be Helpful Hatch Mates",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4342",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Donut Sugar Could Help Stored Blood Last",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4343",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Lemur Flirting Uses Common Scents",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4344",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Flamingos Can Be Picky about Company",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4345",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Horses Recognize Pics of Their Keepers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4346",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Tapirs Help Reforestation via Defecation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4347",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Virus-Infected Bees Practice Social Distancing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4348",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "New Data on Killer House Cats",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4349",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Science News Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4350",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Birds on Rhinos' Back Help Them Avoid Poachers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4351",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Jane Goodall: We Can Learn from This Pandemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4352",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Our 3,000th Episode",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4353",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "How Herbivore Herds Might Help Permafrost",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4354",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Lung Cancer Screen Could Be Easy Pee-sy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4355",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Obama Talks Some Science Policy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4356",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Red-Winged Blackbirds Understand Yellow Warbler Alarms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4357",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Waiter, What's This Worm Doing in My Sushi?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4358",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "What's a Narwhal's Tusk For?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4359",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Coronavirus Misinformation Is Its Own Deadly Condition",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4360",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Coronavirus Can Infect Cats",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4361",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Squid's Glowing Skin Patterns May Be Code",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4362",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Bird Fossil Shared Earth with T. rex",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4363",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "City Birds: Big-Brained with Few Offspring or Small-Brained with a Lot",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4364",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Coyotes Eat Everything from Fruits to Cats",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4365",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Tiny Wormlike Creature May Be Our Oldest Known Ancestor",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4366",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Science News Briefs from around the Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4367",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Help Researchers Track COVID-19",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4368",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Sick Vampire Bats Restrict Grooming to Close Family",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4369",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Exponential Infection Increases Are Deadly Serious",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4370",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Swamp Wallaby Reproduction Give Tribbles a Run",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4371",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Ocean Plastic Smells Great to Sea Turtles",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4372",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Ancient Clam Shell Reveals Shorter Day Length",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4373",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Snapping Shrimp Make More Noise in Warmer Oceans",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4374",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Stress from Undersea Noise Interferes with Crab Camouflage",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4375",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Indigenous Amazonians Managed Valuable Plant Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4376",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Computers Confirm Beethoven's Influence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4377",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Science News Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4378",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Jet Altitude Changes Cut Climate-Changing Contrails",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4379",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Thoroughbred Horses Are Increasingly Inbred",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4380",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Pablo Escobar's Hippos Could Endanger Colombian Ecology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4381",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Wasp Nests Help Date Aboriginal Art",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4382",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Industrial Revolution Pollution Found in Himalayan Glacier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4383",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Fight-or-Flight Nerves Make Mice Go Gray",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4384",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Espresso May Be Better when Ground Coarser",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4385",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Feral Dogs Respond to Human Hand Cues",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4386",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Neandertals Tooled Around with Clams",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4387",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Fingering Fake Whiskeys with Isotopes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4388",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Having an Albatross around Your Boat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4389",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Science News Briefs from All Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4390",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Facts about Groundhogs Other Than Their Poor Meteorology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4391",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Did Animal Calls Start in the Dark?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4392",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Sign Languages Display Distinct Ancestries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4393",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Docs Given Updated Opioid Prescribing Habit",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4394",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Some Wolf Pups Show Innate Fetching Talent",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4395",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Barred Owls Invade the Sierra Nevada",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4396",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Curiosity Killed the ... Mouse?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4397",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "This Fish Knows How to Stick Around",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4398",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Antarctic Is Ripe for Invasive Species",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4399",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Bacteria Helped Plants Evolve to Live on Land",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4400",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Meteorite Contains Material Older Than Earth",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4401",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Loss of Large Mammals Stamps Out Invertebrates, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4402",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Brittle Stars Can \"See\" without Eyes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4403",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Atlantic Puffins Spotted Using Tools",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4404",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Traffic Cameras Show Why the Yankees Should Suffer Fewer Injuries in 2020",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4405",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Science News Briefs from around the Globe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4406",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Part of Real Paleo Diet: It's a Tuber",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4407",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "You Traveled Far in 2019",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4408",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Fido's Human Age Gets New Estimates",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4409",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Gift Wrapping Is Effective Future Trash",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4410",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Superstrong Fibers Could Be Hairy Situation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4411",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Flaky Scalps Have a Unique Fungal Microbiome",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4412",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Moths Flee or Face Bats, Depending on Toxicity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4413",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Ancient Seawall Found Submerged",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4414",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Citizen Scientists Deserve Journal Status Upgrade",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4415",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Not All Hydropower Is Climate-Considerate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4416",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Certain Zip Codes Pick Losers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4417",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Linguists Hear an Accent Begin",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4418",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Romans Would Roam for Wood",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4419",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "When the Bellbird Calls, You Know It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4420",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Fishy Trick Lures Life Back to Coral Reefs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4421",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Rain Forest Dwellers and Urbanites Have Consistently Different Microbiomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4422",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Internet Cables Could Also Measure Quakes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4423",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Science News Briefs from All Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4424",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Subtle Ancient Footprints Come to Light",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4425",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Ancient Rock Art Got a Boost From Bacteria",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4426",
"addition_time": 1751339902,
"delete_time": 1751339905,
"title": "Ick Factor Is High Hurdle for Recycled Drinking Water",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4427",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bots Outperform Humans if They Impersonate Us",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4428",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Implanting Memories in Birds Reveals How Learning Happens",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4429",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Dogs Like Motion That Matches Sound",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4430",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Egyptian Vats 5,600 Years Old Were For Beer Brewing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4431",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Famously Fickle Felines Are, in Fact, Clingy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4432",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Aversion to Broccoli May Have Genetic Roots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4433",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Marine Mammal Epidemic Linked to Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4434",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ant Colonies Avoid Traffic Jams",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4435",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ranking Rise May Intimidate Opponents",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4436",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Familiar Tunes Rapidly Jog the Brain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4437",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Science News Briefs from around the Globe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4438",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "We Owe Our Pumpkins to Pooping Megafauna",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4439",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bird Egg Colors Are Influenced by Local Climate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4440",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Crabs Do a Maze",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4441",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Odd Bird Migrates Twice to Breed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4442",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Piranha-Proof Fish Gives Inspiration for Body Armor",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4443",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Galloping Ant Beats Saharan Heat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4444",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Some Mosquito Repellents Act like Invisibility Cloaks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4445",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Your Skull Shapes Your Hearing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4446",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Tardigrade Protein Protects DNA from Chemical Attack",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4447",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "\"Mars-quakes\" Could Reveal How Mars Was Built",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4448",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Artificial Intelligence Learns to Talk Back to Bigots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4449",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nobel in Chemistry for Lightweight Rechargeable Batteries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4450",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nobel in Physics for Exoplanets and Cosmology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4451",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nobel in Physiology or Medicine for How Cells Sense Oxygen Levels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4452",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Teeth Tell Black Death Genetic Tale",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4453",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Tiny Worms Are Equipped to Battle Extreme Environments",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4454",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Heat Changes Insect Call, but It Still Works",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4455",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Corals Can Inherit Symbiotic Adaptations to Warming",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4456",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Brains of Blind People Adapt in Similar Fashion",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4457",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Science News Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4458",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Musical Note Perception Can Depend on Culture",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4459",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nature Docs Avoid Habitat Destruction",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4460",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Heat Loss to Night Sky Powers Off-Grid Lights",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4461",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Early Butchers Used Small Stone Scalpels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4462",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Microplastics in Fresh Water Are Mostly Laundry Lint",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4463",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Kids Are Not Hurt by Screen Time",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4464",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Lab-Grown Human Mini Brains Show Brainy Activity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4465",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Eavesdropping Puts Anxious Squirrels at Ease",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4466",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Earth's Magnetic Field Initiated a Pole Flip Many Millennia before the Switch",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4467",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Humpback Whales Swap Songs at Island Hub",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4468",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Food Expiration Dates May Mislead Consumers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4469",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Farmland Is Also Optimal for Solar Power",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4470",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Chemical Tweak Recycles Polyurethane into Glue",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4471",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Cholesterol Climbs after Crows Chomp Cheeseburgers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4472",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "How Hurricanes Influence Spider Aggressiveness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4473",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Graphene Garment Blocks Blood-Sucking Skeeters",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4474",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Martian Winds Could Spread Microbe Hitchhikers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4475",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Including Indigenous Voices in Genomics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4476",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "West Point Uniforms Signify Explosive Chemistry",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4477",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Secrets of the Universe Trapped in Antarctic Snow",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4478",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Certain Personality Types Are Likely to Make a \"Foodie Call\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4479",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Artificial Intelligence Sniffs Out Unsafe Foods",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4480",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "A Computer Tells Real Smiles from Phonies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4481",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Stare Down Gulls to Avoid Lunch Loss",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4482",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Real Laughs Motivate More Guffaws",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4483",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Extinction Wipes Out Evolution's Hard Work",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4484",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "London Is Crawling with Drug-Resistant Microbes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4485",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Male Black Widows Poach Rivals' Approaches",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4486",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Babies Want Fair Leaders",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4487",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Parrots Are Making the U.S. Home",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4488",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Science News Briefs from All Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4489",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Tourist Photographs Help African Wildlife Census",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4490",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "For Ants, the Sky's the Compass",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4491",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Why Two Moonships Were Better Than One",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4492",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "One Small Scoop, One Giant Impact for Mankind",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4493",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Investigating the Zombie Ant's \"Death Grip\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4494",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Attractive Young Females May Have Justice Edge",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4495",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Tobacco Plants Made to Produce Useful Compounds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4496",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Rhinos and Their Gamekeepers Benefit from AI",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4497",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Backpack Harvests Energy as You Walk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4498",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Why Baseballs Are Flying in 2019",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4499",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Some Hot Dog Histology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4500",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Mind and Body Benefit from Two Hours in Nature Each Week",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4501",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Scientist Encourages Other Women Scientists to Make Themselves Heard",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4502",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Male Bats Up Mating Odds with Mouth Morsels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4503",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Scientists Fool Flies with \"Virtual Tastes\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4504",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Wheat Plants \"Sneeze\" and Spread Disease",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4505",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Elite Runners' Microbes Make Mice Mightier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4506",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Science News Briefs from around the World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4507",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Antiperspirant Boosts Armpit and Toe-Web Microbial Diversity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4508",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Monkey Cousins Use Similar Calls",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4509",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "How Millipedes Avoid Interspecies Sexual Slips",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4510",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "You Contain Multitudes of Microplastics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4511",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "A Biodegradable Label Doesn't Make It So",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4512",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "High School Cheaters Nabbed by Neural Network",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4513",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Preserved Poop Is an Archaeological Treasure",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4514",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Remembering Murray Gell-Mann",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4515",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bonobo Mothers Supervise Their Sons' Monkey Business",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4516",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Music May Orchestrate Better Brain Connectivity in Preterm Infants",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4517",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Icy Room Temperatures May Chill Productivity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4518",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bird Beak Shapes Depend on More Than Diet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4519",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ancient Gum Gives Archaeologists Something to Chew On",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4520",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nobelist: Harness Evolution as a Problem-Solving Algorithm",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4521",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Unread Books at Home Still Spark Literacy Habits",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4522",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Kid Climate Educators Open Adult Eyes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4523",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Penguin Poop Helps Biodiversity Bloom in Antarctica",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4524",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ancient Whiz Opens Archaeology Window",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4525",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "U.S. Coral Reefs Do $1.8 Billion of Work Per Year",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4526",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Could Air-Conditioners Help Cool the Planet?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4527",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Chemists Investigate Casanova's Clap",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4528",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Software Sniffs Out Rat Squeaks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4529",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "New Model Aims to Solve Mystery of the Moon's Formation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4530",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Cats Recognize Their Names—but May Not Respond",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4531",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Science News Briefs from All Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4532",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Hurricane Maria Rain Amount Chances Are Boosted by Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4533",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Harder-Working Snakes Pack Stronger Venom",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4534",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "River Dolphins Have a Wide Vocal Repertoire",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4535",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Honeybees Can Put Two and Two Together",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4536",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "4/20 Traffic Accidents Claim Curbed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4537",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Hyena Society Stability Has Last Laugh",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4538",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Gluten-Free Restaurant Foods Are Often Mislabeled",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4539",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "What Chickens Can Teach Hearing Researchers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4540",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nobelist Says System of Science Offers Life Lessons",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4541",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Squeezed Potassium Atoms Straddle Liquid and Solid",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4542",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Urban Coyote Evolution Favors the Bold",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4543",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Computers Turn an Ear on New York City",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4544",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Whitening Strips Alter Proteins in Teeth",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4545",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Infrared Light Offers a Cooler Way to Defrost",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4546",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Spider Monkeys Optimize Jungle Acoustics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4547",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Tennessee Whiskey Relies on Missing Ingredients",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4548",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "There's a Word for Today",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4549",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bumblebee Queens Prefer Layovers to Nonstop Flights",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4550",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Scenic City Sights Linked to Higher Happiness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4551",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Tech's Brain Effect: It's Complicated",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4552",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Daylight Brings Toxic Beetles Together for Safety",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4553",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Solar Jets Cause Standing Waves in Earth's Magnetic Field",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4554",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Sing Solo for Higher Fidelity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4555",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Edible Insect Breeding Led to Larger but Not Necessarily Better Larvae",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4556",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Busting Earth-Bound Asteroids a Bigger Job Than We Thought",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4557",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Weekday–Weekend Sleep Imbalance Bad for Blood Sugar Regulation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4558",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Warm-Blooded Animals Lost Ability to Heal the Heart",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4559",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Animal Migrations Track with Wikipedia Searches",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4560",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Baseball Commish Talks Big Data",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4561",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Background Music Might Stifle Creativity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4562",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Science News Briefs from around the Globe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4563",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Budding Yeast Produce Cannabis Compounds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4564",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Who Has \"the Right Stuff\" for Mars?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4565",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Grandma's Influence Is Good for Grandkids",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4566",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Should Robots Have a License to Kill?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4567",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Warming Climate Implies More Flies—and Disease",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4568",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Light-Skin Variant Arose in Asia Independent of Europe",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4569",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Teach Science Process over Findings",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4570",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Human Diet Drugs Kill Mosquitoes' Appetite, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4571",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Grazing Deer Alter Forest Acoustics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4572",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Elephant Weight Cycles with New Teeth",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4573",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Finally Over for Mars Rover",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4574",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Our Brains Really Remember Some Pop Music",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4575",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Biologists Track Tweets to Monitor Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4576",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Desalination Could Cause Ecological Sea Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4577",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Different Humpback Whale Groups Meet to Jam",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4578",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Rocking Helps Adults Sleep Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4579",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Targeting Certain Brain Cells Can Switch Off Pain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4580",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Neandertal Spears Were Surprisingly Deadly",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4581",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "\"Rectenna\" Converts Wi-Fi to Electricity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4582",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Science News Briefs from the World Over",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4583",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Cod Could Cope with Constrained Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4584",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Intimate Hermit Crab Keeps Shell On",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4585",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ecologists Eavesdrop with Bioacoustics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4586",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Saturn's Blingy Rings Are a Recent Upgrade",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4587",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Do-Gooders Should Survey Communities First",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4588",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Viewing This Weekend's Lunar Eclipse",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4589",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "\"Mona Lisa Effect\" Not True for Mona Lisa",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4590",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ants Stick to Cliques to Dodge Disease",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4591",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Mistimed Migration Means Bird Death Battles",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4592",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Monogamy May Be Written in Our Genes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4593",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Seeing Superman Increases Altruism",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4594",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Inhaled RNA Might Help Heal Cystic Fibrosis",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4595",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Invisible Killers Hitchhike on Native Plant Seedlings",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4596",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Facebook Users Value the Service More Than Investors Do",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4597",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Science News from around the Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4598",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Turn Xmas Tree into Food and Medicine",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4599",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Simple Sugars Wipe Out Beneficial Gut Bugs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4600",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Smarter Pricing Could Ease Parking Frustration",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4601",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "\"Hunger Hormone\" Ghrelin Aids Overindulgence",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4602",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Colorful Peacocks Impress Females with Good Vibes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4603",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Measuring the Strength of a Person's Gaze",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4604",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "\"Relaxation Music\" Works—but So Does Chopin",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4605",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bone Building Needs Bit of Breakdown First",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4606",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Frog Picks Maternity Ward Like Goldilocks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4607",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "You Gotta Scratch That Itch",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4608",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Join Blue Planet II Live-Tweet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4609",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Big-Boned Chickens May Be Humans' Geologic Legacy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4610",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ancient Marine Reptiles Had Familiar Gear",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4611",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Little Aphids Ride Big Ones to Safety",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4612",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Utah's Deserts Are Bee Hotspots ",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4613",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Who's a Smart Dog?!",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4614",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Data Reveals Most Influential Movies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4615",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Blue Whales Have Changed Their Tune",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4616",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Smart Meters Speed Showers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4617",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Mars Mission Makes Clean Landing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4618",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Do Wine over Those Brussels Sprouts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4619",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Rains Bring a Microbial Massacre to Chilean Desert",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4620",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Consensual Hugs Seem to Reduce Stress",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4621",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "World's Largest Organism Faces Bleak Future",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4622",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "U.S. Immigrants Leave Country—and Microbes—Behind",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4623",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Babies and Chimps Share a Laugh",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4624",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Singing Fish Reveal Underwater Battles in the Amazon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4625",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Social Construct of Race Imposes Biology",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4626",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Pandas Swoon to Particular Croons",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4627",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "First Benefit of Knowing Your Genome",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4628",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "For Halloween, Consider the Chocolate Midge",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4629",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Dolphins Dumb Down Calls to Compete with Ship Noise",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4630",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Asocial Octopuses Become Cuddly on MDMA",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4631",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Wild Songbirds Can Pick Up New Tunes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4632",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Health Care Let Neandertals \"Punch above Their Weight\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4633",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nice People Have Emptier Wallets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4634",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Solar Eclipse Was a Buzzkill for Bees",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4635",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Confident Tone Overcomes Accent Distrust",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4636",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Mom's Genes Make Some Giraffes Hard to Spot",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4637",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Economics Nobel Highlights Climate Action Necessity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4638",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Highway Crossings Protect Migrating Pronghorns—and Motorists",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4639",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Beer Fermentation Hops Along",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4640",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nobel in Chemistry for New and Useful Chemical Entities via Evolutionary Principles",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4641",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nobel in Physics for Controlling Laser Light",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4642",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nobel for Helping the Immune System Fight Cancer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4643",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Blasey Ford Spells Out Trauma Memory Formation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4644",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Scanning Ancient Civilizations from the Skies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4645",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Antifreeze Surface Fights Ice with Ice",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4646",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Scale Can Measure Medicine—and Play a Scale, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4647",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Diverse Tree Portfolio Weathers Droughts Better",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4648",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Pirates Needed Science, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4649",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Sea Otters' Powerful Paw Prey Perception",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4650",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Genetic Tweak Gave Early Humans a Leg Up",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4651",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Earlier Springs May Mean Mistimed Bird Migrations",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4652",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Survey the Wildlife of the \"Great Indoors\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4653",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "When Neutron Stars Collide",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4654",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bonnethead Sharks Are Underwater Lawn Mowers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4655",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Hurricane Is a Natural Selection Experiment",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4656",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Pasta Problem Cracked!",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4657",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Science News You Might Have Missed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4658",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Pineapple Waste Won't Be Wasted",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4659",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Sometimes Mosquitoes Are Just Thirsty",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4660",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Robot Bartender Will Take Your Order",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4661",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "As Spring Arrives Earlier, Arctic Geese Speed Up Their Migration",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4662",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Freeloading Ants Help the Workflow",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4663",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ancient Americans Bred Symbolically Important Scarlet Macaws",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4664",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Rising CO2 Means Monarch Butterfly Bellyaches",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4665",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "For Some Crows, Migration Is Optional",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4666",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Plants Dominate the Planet's Biomass",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4667",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Solar Eclipse of 2017 Boosted Science Interest",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4668",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Crickets Carve Tools to Amplify Their Chirps",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4669",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Computerized Chemical Toxicity Prediction Beats Animal Testing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4670",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Better Data Could Mean Better Dating",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4671",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "To Evolve Baleen, Lose Your Teeth First",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4672",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Corn Variety Grabs Fertilizer from the Air",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4673",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Birds Learn Safety from Other Kinds of Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4674",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Microbes Share Your Morning Metro Commute",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4675",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Oh Say Can You See Subtle Details?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4676",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Some Crows Hit On Dead Companions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4677",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Mouth Sets Healing Standard",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4678",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Border Wall Could Disrupt Hundreds of Species",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4679",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Turn a Wall into a Touch Screen Cheap",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4680",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ancient Tooth Tartar Traps Clues to Iron Age Diet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4681",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Honey Bee Alarm Signal Could Protect Elephants",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4682",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Sea Level Rise Could Inundate the Internet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4683",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Astronomy Tool Helps ID Sharks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4684",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Mammals Moonlight around Human Settlements",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4685",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Jupiter's Moon Total Hits 79",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4686",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Moths Evade Bats with Slight of Wing",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4687",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Science News You Might Have Missed",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4688",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Smart Mouth Guard Senses Muscle Fatigue",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4689",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Favorite Wine Grapes May Need Genetic Help",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4690",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Iridescence Could Help Critters Hide in Plain Sight",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4691",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Primate Conflicts Play Out in the Operating Room",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4692",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Sharks Make a Splash in Brooklyn",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4693",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "City Life Favors Downsized Invertebrates",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4694",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "People Ration Where They Roam",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4695",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Humans Can Size One Another Up with a Roar",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4696",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Piano Lessons Tune Up Language Skills",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4697",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Cardinal Rule: Female Birds Sing, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4698",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bird's Song Staying Power Implies Culture",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4699",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Alaskan Beluga Whales Ace Hearing Exam",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4700",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Fat–Carb Combo Is a Potent One–Two Punch",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4701",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Jupiter Crackles with Polar Lightning",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4702",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Coral Reefs Keep Costly Waves at Bay",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4703",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Hippo Dung Fouls Up Freshwater Fisheries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4704",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "A Litmus Test for Bad Breath",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4705",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Prez (of AMA) Issues Call to Arms-Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4706",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Powder Pulls Drinking Water from Desert Air",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4707",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ancient Clan War Explains Genetic Diversity Drop",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4708",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Saying \"This May Hurt\" May Make It Worse",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4709",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Mongooses Gift Grooming for Guard Duty",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4710",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Some Trees Beat Heat with Sweat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4711",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Computers Go Head-to-Head with Humans on Face Recognition",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4712",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Pinnipeds Don't Appreciate Biped Disturbance",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4713",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Computers Predict Pop Chart Success",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4714",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Doc's YA Novel Treats Life-and-Death Issues",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4715",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Google's AI Assistant Does Your Talk Tasks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4716",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Great Ape Makes Good Doc",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4717",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Stool-Pigeon Poop Reveals Bird-Racing Fouls",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4718",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Radar Scans Detail North Korean Nukes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4719",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Hunting Rules Have Changed Mama Bear Care",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4720",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Jupiter and Venus Squeeze Earth's Orbit",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4721",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Mars Lander Will Peer Inside the Red Planet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4722",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Plants Can Sense Animal Attack Coming",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4723",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Archaeologist Makes a Case for Seafaring Neandertals",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4724",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Africa: Future Worldwide Science Hub",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4725",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Healthful Eating Requires Supermarket Smarts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4726",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Culture Shapes Kids' Views of Nature",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4727",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bad Audio Can Hurt a Scientist's Credibility",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4728",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bill Gates Announces a Universal Flu Vaccine Effort",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4729",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Drumming Beats Speech for Distant Communication",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4730",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bees Have a Goldilocks Lawn Mow Schedule",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4731",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "If Singing's Tough, Try Whistling",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4732",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Traffic Deaths Increase after 4:20 P.M. on 4/20",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4733",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "NYC Mice Are Packed with Pathogens",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4734",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Mine Social Media Posts to Predict Flu",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4735",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Planting Milkweed for Monarchs? Make Sure It's Native",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4736",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "The Internet Needs a Tune-Up",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4737",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Glacier Suddenly Goes Galloping",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4738",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Some Habitable Zone Exoplanets May Get X-Rayed Out",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4739",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Right Whales Seem to Think before They Speak",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4740",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Old New England Underground May Be Spry after All",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4741",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Brain Scan Might Reveal Appetite for Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4742",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Neandertal Face Shape Was All Over the Air",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4743",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Rev Up Photosynthesis to Boost Crop Yields",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4744",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "13,000-Year-Old Footprints under West Coast Beach",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4745",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Math Cracks a Knuckle-Cracking Mystery",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4746",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Rotting Flesh Offers Insight on Fossilization",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4747",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ravens Crow with Individual Flair",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4748",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "U.S. Flu Spread Counts On Southern Cold Snaps",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4749",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Louise Slaughter Was Congress's Food Safety Champion",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4750",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Arctic Heat Waves Linked to Snowpocalypse-Like Storms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4751",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Gut Parasites Have Their Own Gut Microbiomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4752",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Drones Could Help Biologists Tally Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4753",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Saliva Protein Might Inhibit Intestinal Anarchy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4754",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Searching the Heavens for Mountains",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4755",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Human Echolocators Use Tricks Similar to Bats",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4756",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Animal Coloration Can Serve Double Duty",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4757",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Some Lichen Fungi Let Genes Go Bye",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4758",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "To See Gun Injury Drop, Hold an NRA Meeting",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4759",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Big Cities Have Fewer Tweeters Per Capita",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4760",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "How Baby Birds Learn to Duet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4761",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Mosquitoes Learn the Smell of Danger",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4762",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Needed: Info on Biodiversity Change over Time",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4763",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Undersea Recordings Reveal a Whale's Tale",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4764",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Seabird Feathers Reveal Less-Resilient Ocean",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4765",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Beetle Liberation Due to Regurgitation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4766",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Old Trees Are Ecosystem Gold",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4767",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Boat Noise Means Fish Can't Learn Their Lessons",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4768",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Woodpeckers Drum to Their Own Tunes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4769",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Homebodies Economize on Energy Use",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4770",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Killer Whale Culture Revealed by Mimicking Us",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4771",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Holiday Cheer Leads to Birth-Rate Spike",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4772",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ticks on Uptick Where Big Game Declines",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4773",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Wildfires Spike Wine with Smoky Notes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4774",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Lion Conservation Challenges Giraffe Protection",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4775",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nobelist Crafts Light-Switchable Antibiotics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4776",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Catching Flu Also Boosts Heart Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4777",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Worldwide Effort Says Together Science Can",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4778",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Canada Geese Taking a Winter Staycation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4779",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Moon's Tug Doesn't Cause Big Quakes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4780",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Social Media Helps ID Spew Source",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4781",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Salmonella Could Have Caused 16th-Century Epidemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4782",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Which Came First, the Proboscis or the Flower?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4783",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "You Live in a Strange Solar System",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4784",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Glow Sticks Help Ecologists Study Amphibians",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4785",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Air Force Tracks Final Frontier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4786",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "You Traveled Far Last Year",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4787",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Finches Can Learn to Sing Differently Than Their Genetics Dictate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4788",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Baby Bats Can Learn Different Dialects",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4789",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Mongoose Societies Are Skeptical of Strangers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4790",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Pain and Weather Fail to Connect",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4791",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Finding Further Places for Solar Panels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4792",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "This Fish Emits Damaging Decibels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4793",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Repetitive Sounds Are Music to the Brain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4794",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Radiation Might Help Heart Regain Its Rhythm",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4795",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Dark Fiber Networks Can Sense Seismicity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4796",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Supermarket Snacking Boosts Sales",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4797",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Something Clicks for Dolphin Identification",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4798",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nutrition Guidelines Healthy for the Planet, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4799",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Invading Beavers Turn Tundra to Ponds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4800",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Sharks Rule the Reef's Underwater Food Chain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4801",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ancient Women Had Awesome Arms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4802",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Invasive Frogs Don't Bug Hawaiian Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4803",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "How Hospitals Can Dampen the Decibels",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4804",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Smarter Management Means More Inventions Get to Market",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4805",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Computers Learn to Use Sound to Find Ships",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4806",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Yeti Claims Don't Bear Up",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4807",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Republican Voters Not in Denial about Climate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4808",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Tech Honcho Wants Innovation for the Bottom Billion",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4809",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bumper Stickers Make Highways More Social",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4810",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Chimps Able to Apprehend Another Chimp's Mind-Set",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4811",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Even without Hands Honeybees Show Handedness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4812",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Humpback Whale Flippers Do More Than Maneuver",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4813",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "A New Recipe for Counting Cranberries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4814",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "How Fit Is Bitcoin?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4815",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Salmon Sex Changes Entire Landscape",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4816",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ancient 1 Percenters Were Beast-Based",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4817",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Feathers Help This Bird Sound the Alarm",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4818",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Put Space Cat on a Pedestal",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4819",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Polluted Water Whale Invents New Feeding Strategy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4820",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Insect Brain System Knows What You Want",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4821",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Sheep's Face-Reading Skills Stand Out from the Flock",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4822",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nearby Exoplanets Invigorate the Search for E.T.",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4823",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bison Comeback Story Has a Bronx Accent",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4824",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Mammoth Remains Seem Mostly Male",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4825",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Physics Phenomenon Reveals a Pyramid's Mystery",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4826",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "A Moth with a Potent Cocktail of Poison",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4827",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Drought News Might Help Cut Water Waste",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4828",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Smog Casts a Shadow on China's Solar Farms",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4829",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Dogs Bow to Wolves as Cooperators",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4830",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "California Gun Injuries Spike after Nevada Gun Shows",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4831",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Mosquitoes to Other Flying Insects: Do You Even Generate Lift?",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4832",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Keep Your Wi-Fi off KRACK",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4833",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ships at Sea Stoke Lightning Strikes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4834",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Gamers Wanted to Attack Food Toxin",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4835",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Even Jellyfish Need a Nap",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4836",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Squirrels Chunk Their Buried Treasure",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4837",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Cougar Calls Get Big Bear Reactions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4838",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Biometric Identifies You in a Heartbeat",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4839",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "When We Fly to Mars, Microbes Will, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4840",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nobel in Chemistry for Seeing Biomolecules in Action",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4841",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nobel in Physics for Detecting Gravitational Waves",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4842",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nobel in Physiology or Medicine for Our Inner Clocks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4843",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Electric Eels Increase Shock by Leaving Water",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4844",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Australian Bird Dips Its Dinner",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4845",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Tsunami Sent Species on a Transoceanic Trip",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4846",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "1 Sneeze, 1 Vote among African Wild Dogs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4847",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "This Frog Can't Hear Its Own Calls",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4848",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Building a Better Mirror for Telescopes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4849",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Galaxies Far, Far Away Send Us Highest-Energy Cosmic Rays",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4850",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Springtime Now Arrives Earlier for Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4851",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Warming Puts Squeeze on Ancient Trees",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4852",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Rising CO2 Pushes Plants to Drink Sparingly",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4853",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Cannibalism Quells Contagion among Caterpillars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4854",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Feds Want to Know Who's Protesting Trump",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4855",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Windows Vex Bats' Echolocating Abilities",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4856",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Wetlands Could Save Cities--and Money, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4857",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Rabbit Relatives Reel from Climate Change",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4858",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Winking Star 6 Centuries Ago Explained",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4859",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Grazing Cattle Trim the Menu for Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4860",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Climate Change Might Shrink Fish",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4861",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "A Fruitful Experiment in Land Conservation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4862",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Recycle Your Eclipse Glasses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4863",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Seeing 1 Solar Eclipse May Not Be Enough",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4864",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Solar Eclipse in 1097 May Be Rock-Carving Subject",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4865",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Social Media Sites Can Profile Your Contacts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4866",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "\"Textalyzer\" Aims at Deadly Distracted Driving",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4867",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Climate Change Fires Up Polar Bear Treadmill",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4868",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "No Bull: Lizards Flee When They See Red",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4869",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Celebrities Tweet Like Bots",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4870",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Cold Snap Shapes Lizard Survivors",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4871",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Mediterranean Diet Works--for Upper Crust",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4872",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Screams Heard Round the Animal World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4873",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "This Caterpillar Whistles While It Irks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4874",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "To Buy Happiness, Spend Money on Saving Time",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4875",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bacteria Can Be Resistant to Brand-New Antibiotics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4876",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Teaching Computers to Enjoy the View",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4877",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Flying through a Corpse's Clues",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4878",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Old Records Help Resurrect Historic Quake",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4879",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "This Cell Phone Needs No Battery",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4880",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bacteria Might Share the Blame for Eczema",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4881",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Franklin's Lightning Rod Served Political Ends",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4882",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Heat Will Hit America's Poorest Worst",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4883",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Rainbow Photons Pack More Computing Power",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4884",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Moths Inspire Better Smartphone Screens",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4885",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Better Memory Begets Boredom",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4886",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "DNA Points to Multiple Migrations into the Americas",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4887",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Keep Rolling Luggage Upright with Physics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4888",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Wolves Need More Room to Roam",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4889",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Engineers Build Bendy Batteries for Wearables",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4890",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Rising Temps Lower Polar Bear Mercury Intake",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4891",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Some Hotel Bed Bug Sightings May Be Bogus",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4892",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Opioids Still Needed by Some Pain Patients",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4893",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bacterially Boosted Mosquitoes Could Vex Viruses",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4894",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Alaska Accelerates Indoor Agriculture",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4895",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Chromosomes Combat Counterfeit Caviar",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4896",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "French Prez Invites Trumped Researchers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4897",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Trees Beat Lawns for Water-Hungry L.A.",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4898",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Former CDC Head Warns of Threats Biological and Political",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4899",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Fitness Bands Fail on Calorie Counts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4900",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "New Concrete Recipes Could Cut Cracks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4901",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bees Prefer Flowers That Proffer Nicotine",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4902",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Large Impacts May Cause Volcanic Eruptions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4903",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Why the Cross Put Chickens on a New Road",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4904",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Field Study: Worms Leave 'Til No-Till",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4905",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "The Sneaky Danger of Space Dust",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4906",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Insects Donate DNA to Unrelated Bugs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4907",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Gophers versus the Volcano",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4908",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Wilderness Areas Suffer from Human Sound",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4909",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Pollution Peaks When Temperatures Top Out",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4910",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Hot Chilies Cool Down Gut Inflammation in Mice",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4911",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bronx River's Cleanup Brings Herring Home",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4912",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ancient Human DNA Found in Cave Dirt",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4913",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Gut Microbes Help Keep Starved Flies Fecund",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4914",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Selective Breeding Molds Foxes into Pets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4915",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Why One Researcher Marched for Science",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4916",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Healthy Behavior Can Spread Like Illness",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4917",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Climate 420 Million Years Ago Poised for Comeback",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4918",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Traces of Genetic Trauma Can Be Tweaked",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4919",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Species Split When Mountains Rise",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4920",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Shoelace Study Untangles a Knotty Problem",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4921",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "World Parkinson's Day Puts Spotlight on Condition",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4922",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Cave Dwellers Battled Bed Bug Bites, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4923",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Extreme Storms Are Extreme Eroders",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4924",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Spiders Gobble Gargantuan Numbers of Tiny Prey",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4925",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Your Cat Thinks You're Cool",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4926",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Exoplanets Make Life Conversation Livelier",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4927",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bring Bronx Zoo to Your Living Room",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4928",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "UV Rays Strip Small Galaxies of Star Stuff",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4929",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Aggressed-Upon Monkeys Take Revenge on Aggressor's Cronies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4930",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Chaotic Orbits Could Cause Catastrophic Collision",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4931",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Pulling the String on Yo-Yo Weight Gain",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4932",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Poverty Shaves Years off Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4933",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Pollinators Shape Plants to Their Preference",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4934",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Low Biodiversity Brings Earlier Bloom",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4935",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Early-Life Microbes Ward Off Asthma",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4936",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "(Probably Not a) Giant Alien Antenna",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4937",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Jupiter Moon to Be Searched for Life",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4938",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Teeth Hint at a Friendlier Neandertal",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4939",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Forensic Science: Trials with Errors",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4940",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "How to Find Loooong Gravitational Waves",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4941",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Biggest Rivers Are Overhead",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4942",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Last Woollies Had Mammoth Mutations",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4943",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "African Penguins Pulled into an Ecological Trap",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4944",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Neandertals Live On in Our Genomes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4945",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Medical Marijuana Faces Fed's Catch-22",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4946",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Blood Cells Remember Your Mountain Vacation",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4947",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Fermented Foods Find Fervent Advocate",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4948",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Vision Needed to Curb Nearsightedness Epidemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4949",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Guppy Groups Provide Friendly Protection against Foes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4950",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Spaceflight Squishes Spacefarers' Brains",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4951",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "2 Words Trigger CDC to Stay Quiet",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4952",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "The True \"Bottom\" of the Food Chain Is Plenty Polluted",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4953",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Heat Sensor Has Snaky Sensitivity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4954",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Housing Boom Busts Birds' Valentine's Day",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4955",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Cool Coating Chills in Sunlight",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4956",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Partnered-Up Men More Attractive to Women",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4957",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Gulf Dead Zone Makes for Shrimpier Shrimp",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4958",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Frog Spit Behaves Like Bug-Catching Ketchup",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4959",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Super Bowl Snacks Need These Exercise Equivalents",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4960",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "The Arctic's Anti-Snowball Snowball Effect",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4961",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Widening the Suez Canal Ushers In Underwater Invaders",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4962",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Hawaiian Crows Ready for the Call of the Wild",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4963",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "A Humble Fish with a Colorful Edge",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4964",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "LSD's Long, Strange Trip Explained",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4965",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Umbrellas Plus Sunscreen Best Bet to Beat Burns",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4966",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ants Use Celestial Cues to Travel in Reverse",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4967",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "High-Sugar Diet Makes Flies Drop Like...Flies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4968",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Pesticide Additive Could Be One Culprit in Bee Deaths",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4969",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Knot Not Easy to Knot",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4970",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bat Chatter Is More Than a Cry in the Dark",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4971",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bird Feeders Attract Bird Eaters, Too",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4972",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Adult Daughter Orcas May Trigger Moms' Menopause",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4973",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Climate Cycles Could Have Carved Canyons on Mars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4974",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Hair Cells Could Heal Skin Sans Scars",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4975",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Concrete Defects Could Become Strengths",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4976",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Zika Linked to a Variety of Birth Defects",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4977",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "When Dining for Trillions, Eat Wisely",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4978",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Weakest Piglets May Sneak Help from Strongest Siblings",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4979",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Isolated Low Temps May Reassure Climate Skeptics",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4980",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bats Learn to Take White-Nose Punch",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4981",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "\"Necrobiome\" Reveals a Corpse's Time of Death",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4982",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Pregnancy Primes the Brain for Motherhood",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4983",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Small Fraction of Pilots Suffer Suicidal Thoughts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4984",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Migrating Birds Prefer Lakefront Property",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4985",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Breast-Feeding Benefits Babies with Genetic Asthma Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4986",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Self-Driving Cars Probably Won't Boost Commuter Productivity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4987",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "New Insecticide Makes Mosquitoes Pop",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4988",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Commuting Patterns Help Forecast Flu Outbreaks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4989",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Stopping Splashes with Smarter Surfaces",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4990",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Dogs Teach Bomb-Sniffing Machines New Tricks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4991",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "\"Power Poses\" Don't Stand Up",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4992",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Toll-Free Number Stems Human–Wildlife Conflicts",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4993",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "We Now Live in the Unnatural World",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4994",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "High-Fiber Diet Keeps Intestinal Walls Intact",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4995",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Forest Die-Offs Alter Global Climate \"Like El Nino\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4996",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "DNA Samples Find a Lot of Fish in the Sea",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4997",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Police Body Cameras Appear to Moderate Interactions with Civilians",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4998",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "NIH Director Looks at Presidential Transition",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "4999",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ebola Virus Grew More Infectious in the Latest Epidemic",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5000",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Orangutan Picks Cocktail by Seeing Ingredients",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5001",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Small-Brained Birds More Likely to Get Shot",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5002",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Online Sociality Linked to Lower Death Risk",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5003",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bookish Mobsters Made Better Bookies",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5004",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "For River Otters, Social Life Is Shaped by the Latrine",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5005",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Falcons Patrol Fruit Fields for Pesky Invasive Birds",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5006",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Clark Kent's Glasses Aided His Anonymity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5007",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Poor Sleepers Worse at Recognizing Unfamiliar Faces",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5008",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Yawns Help the Brain Keep Its Cool",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5009",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Polar Bears Can't Just Switch to Terrestrial Food",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5010",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Flowers Deceive Flies with Chemical Cocktail",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5011",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Feed Microbes Oxygen to Help Clear Spilled Oil",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5012",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Elephant Footprints Become Tiny Critter Havens",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5013",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Future Wet Suits Otter Be Warmer",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5014",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Gender Influences Recommendations for Science Jobs",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5015",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nobel in Chemistry for Molecular Machines",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5016",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nobel in Physics for Secrets of Exotic Matter",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5017",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Nobel in Physiology or Medicine to Yoshinori Ohsumi for Autophagy Discoveries",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5018",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Great Migration Left Genetic Legacy",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5019",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Arctic Pollinator Faces Uncertain Future",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5020",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Water Bears' Super Survival Skills Give Up Secrets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5021",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Big Earthquakes May Be More Likely During New and Full Moons",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5022",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Clever Ants Have Backup Navigation Systems",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5023",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ancient Biblical Scroll Gets Read While Wrapped",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5024",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Birch Trees Droop at Night with No Rays in Sight",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5025",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Some Malaria Mosquitoes May Prefer Cows to Us",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5026",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Drunk People Feel Soberer around Heavy Drinkers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5027",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Oldest Known Indigo Dye Found in Peru",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5028",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Road Noise Makes Birds' Lives Tougher",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5029",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "World Wilderness Down 10 Percent in 20 Years",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5030",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Photonic Chip Could Strengthen Smartphone Encryption",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5031",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Protein Test Could Complement Crime Scene DNA Analysis",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5032",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Shark Fins Contain Toxic \"One–Two Punch\"",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5033",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Teen Pregnancy Prevention Program Actually Promotes It",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5034",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Color-Changing Skin Aids Climate Control and Communication",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5035",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Waste Amphetamines Alter Underwater Ecosystems",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5036",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "A Green Solution to Improve Indoor Air Quality",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5037",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Humans Are Superpredators in the Landscape of Fear",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5038",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Voters Are Seldom Swayed by Local Campaign Stops",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5039",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Ancient Mexican Metropolis Engaged in Hare-Raising Activity",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5040",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Model Black Hole Re-Creates Stephen Hawking Prediction",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5041",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Pigeon Pb Proxies Could Cut Kids' Blood Tests",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5042",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Remote Door Controls Are Car Security Flaw",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5043",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "This Shark Is the Vertebrate Methuselah",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5044",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Humans and Birds Cooperate to Share Beehive Bounty",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5045",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Pesticides Act as Honeybee Contraceptives",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5046",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Cut Road Deaths with Mountain Lions",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5047",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Silk Road Transported Goods--and Disease",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5048",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Inbred Songbirds Croon out of Tune",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5049",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Great Red Spot Helps Explain Jupiter's Warm Upper Atmosphere",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5050",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Beaver Dams Strengthened by Humans Help Fish Rebound",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5051",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Frigate Bird Flights Last Months",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5052",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "For Lichens, 3's Not a Crowd",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5053",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Chicken Scent Deters Malaria Mosquitoes",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5054",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Vaccinate Prairie Dogs to Save Ferrets",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5055",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Fuel-Efficient Engines Have a Sooty Flaw",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5056",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Mucus Lets Dolphins Emit Their Clicks",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5057",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Bees Rank Pollen by Taste",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5058",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Menu Featured Mammoth but Diners Were Mocked",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5059",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Evolution Ed Defenders Make Rapids Progress in Grand Canyon",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5060",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Wildlife Can Bear with Hunters and Hikers",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5061",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Cats' Cunning Extends beyond the Hunt",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5062",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "Farmed Trout Bred to Fatten Up Fast",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
},
{
"id": "5063",
"addition_time": 1751339903,
"delete_time": 1751339905,
"title": "This Algorithm Can Predict Relationship Trouble",
"file": "",
"catalog": "3",
"total_count": 0,
"total_skip": 0,
"podcast": "1"
}
]
}
}
}
}
},
"description": "Deleted podcast episodes list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List deleted podcast episodes",
"tags": [
"Maintenance"
],
"operationId": "deletedPodcastEpisodes",
"description": "This returns the episodes for a podcast that have been deleted"
}
},
"/podcast-episodes/search": {
"get": {
"description": "Provide operator plus one or more rule triplets. At minimum, rule_1, rule_1_operator, rule_1_input are required. Additional rules may be supplied as rule_2, rule_2_operator, rule_2_input, etc.",
"operationId": "searchPodcastEpisodes",
"parameters": [
{
"$ref": "#/components/parameters/Operator"
},
{
"description": "0, 1 (random order of results; default to 0)",
"in": "query",
"name": "random",
"required": false,
"schema": {
"default": false,
"type": "boolean"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Rule1"
},
{
"$ref": "#/components/parameters/Rule1Operator"
},
{
"$ref": "#/components/parameters/Rule1Input"
},
{
"$ref": "#/components/parameters/Rule2"
},
{
"$ref": "#/components/parameters/Rule2Operator"
},
{
"$ref": "#/components/parameters/Rule2Input"
},
{
"$ref": "#/components/parameters/Rule3"
},
{
"$ref": "#/components/parameters/Rule3Operator"
},
{
"$ref": "#/components/parameters/Rule3Input"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PodcastEpisodesResponse"
},
"examples": {
"podcast_episodes": {
"summary": "podcast_episodes (search results)",
"value": {
"total_count": 10,
"md5": "89cf7a2c3e6dc91f99556cd856b6faa2",
"podcast_episode": [
{
"id": "82857",
"title": "Ebola update, World Cup heat risks, dad brains",
"name": "Ebola update, World Cup heat risks, dad brains",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode of Science Quickly, we start with a quick update on the Ebola outbreak surging in parts of Africa. Host Rachel Feltman is then joined by Scientific American’s senior desk editor for life science Andrea Thompson to discuss what rising temperatures mean for the FIFA World Cup currently underway in North America. And finally, in honor of Father’s Day, SciAm’s senior desk editor for health and medicine Tanya Lewis gives us a glimpse into the often overlooked science of how fatherhood changes the brain.\n\n\n\nRecommended Reading:\n\n\n\nJust how big is the new Ebola outbreak?\n\n\n\nThe World Cup is battling extreme heat. Which cooling methods really work?\n\n\n\nThe Science of the 2026 World Cup\n\n\n\nHow becoming a dad changes men’s brains\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-22T09:50:00+00:00",
"state": "completed",
"filelength": "00:12:25",
"filesize": "17.33 MB",
"filename": "60-Second Science - Ebola update, World Cup heat risks, dad brains.mp3",
"mime": "audio/mpeg",
"time": 745,
"size": 18170164,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82857",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82857&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20Ebola%20update-%20World%20Cup%20heat%20risks-%20dad%20brains.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
},
{
"id": "82858",
"title": "How common viruses could quietly raise your cancer risk",
"name": "How common viruses could quietly raise your cancer risk",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode of Science Quickly, one of SciAm’s Young American Scientists, biologist Jaye Gardiner, explores how common viral infections may raise cancer risk—not just through genetic mutations but by reshaping the body’s “extracellular matrix” of molecules that support cells and tissues. She explains how viruses can alter the extracellular matrix, potentially creating conditions that allow tumors to grow, and why this emerging view could change how we think about everything from colds to long COVID.\n\n\n\nRecommended Reading:\n\nJaye Gardiner’s Young American Scientists profile\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\n\n\n\nThis episode is part of “The Young American Scientists,” an editorially independent project that was produced with financial support from Regeneron. \nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-19T09:50:00+00:00",
"state": "completed",
"filelength": "00:14:49",
"filesize": "20.62 MB",
"filename": "60-Second Science - How common viruses could quietly raise your cancer risk.mp3",
"mime": "audio/mpeg",
"time": 889,
"size": 21621015,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82858",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82858&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20How%20common%20viruses%20could%20quietly%20raise%20your%20cancer%20risk.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
},
{
"id": "82859",
"title": "The neuroscientist decoding how the brain learns",
"name": "The neuroscientist decoding how the brain learns",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode, host Rachel Feltman interviews neuroscientist Kauê M. Costa, who is among Scientific American’s inaugural cohort of Young American Scientists honorees. Costa shares how being surprised by experiments has led him to new ways of thinking about learning in the brain. He explains how dopamine does more than signal reward, how there are two big frameworks of how the brain learns and how his findings could help us better understand—and treat—mental illness.\n\n\n\nRecommended Reading:\n\n\n\nThe Young American Scientists\n\n\n\nKauê M. Costa’s Young American Scientists profile\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Aaron Shattuck. Our theme music was composed by Dominic Smith.\n\n\n\nThis episode is part of “The Young American Scientists,” an editorially independent project that was produced with financial support from Regeneron.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-17T09:50:00+00:00",
"state": "completed",
"filelength": "00:18:38",
"filesize": "25.85 MB",
"filename": "60-Second Science - The neuroscientist decoding how the brain learns.mp3",
"mime": "audio/mpeg",
"time": 1118,
"size": 27104993,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82859",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82859&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20The%20neuroscientist%20decoding%20how%20the%20brain%20learns.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
},
{
"id": "82860",
"title": "From aspiring actress to NASA astrophysicist",
"name": "From aspiring actress to NASA astrophysicist",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode of Science Quickly, host Rachel Feltman interviews NASA astrophysicist Erini Lambrides about her unconventional journey from pursuing the performing arts to studying supermassive black holes. Lambrides reflects on how curiosity, persistence through early struggles in physics and a background in acting shaped her scientific approach and mentoring philosophy. \n\n\n\nRecommended Reading:\n\n\n\nYoung American Scientists\n\n\n\nProfile: Erini Lambrides\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\n\n\n\nThis episode is part of “The Young American Scientists,” an editorially independent project that was produced with financial support from Regeneron.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-15T09:50:00+00:00",
"state": "completed",
"filelength": "00:22:05",
"filesize": "30.6 MB",
"filename": "60-Second Science - From aspiring actress to NASA astrophysicist.mp3",
"mime": "audio/mpeg",
"time": 1325,
"size": 32083240,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82860",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82860&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20From%20aspiring%20actress%20to%20NASA%20astrophysicist.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
}
]
}
}
}
}
},
"description": "Search results"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Search for media entities using rule triplets",
"tags": [
"Podcasts",
"Search"
]
}
},
"/podcast-episodes/stats": {
"get": {
"parameters": [
{
"description": "newest, highest, frequent, recent, forgotten, flagged, random",
"in": "query",
"name": "filter",
"required": true,
"schema": {
"default": "random",
"enum": [
"newest",
"highest",
"frequent",
"recent",
"forgotten",
"flagged",
"random"
],
"type": "string"
}
},
{
"in": "query",
"name": "user_id",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "username",
"required": false,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PodcastEpisodesResponse"
},
"examples": {
"success": {
"summary": "success",
"value": {
"total_count": 10,
"md5": "89cf7a2c3e6dc91f99556cd856b6faa2",
"podcast_episode": [
{
"id": "82857",
"title": "Ebola update, World Cup heat risks, dad brains",
"name": "Ebola update, World Cup heat risks, dad brains",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode of Science Quickly, we start with a quick update on the Ebola outbreak surging in parts of Africa. Host Rachel Feltman is then joined by Scientific American’s senior desk editor for life science Andrea Thompson to discuss what rising temperatures mean for the FIFA World Cup currently underway in North America. And finally, in honor of Father’s Day, SciAm’s senior desk editor for health and medicine Tanya Lewis gives us a glimpse into the often overlooked science of how fatherhood changes the brain.\n\n\n\nRecommended Reading:\n\n\n\nJust how big is the new Ebola outbreak?\n\n\n\nThe World Cup is battling extreme heat. Which cooling methods really work?\n\n\n\nThe Science of the 2026 World Cup\n\n\n\nHow becoming a dad changes men’s brains\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-22T09:50:00+00:00",
"state": "completed",
"filelength": "00:12:25",
"filesize": "17.33 MB",
"filename": "60-Second Science - Ebola update, World Cup heat risks, dad brains.mp3",
"mime": "audio/mpeg",
"time": 745,
"size": 18170164,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82857",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82857&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20Ebola%20update-%20World%20Cup%20heat%20risks-%20dad%20brains.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
},
{
"id": "82858",
"title": "How common viruses could quietly raise your cancer risk",
"name": "How common viruses could quietly raise your cancer risk",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode of Science Quickly, one of SciAm’s Young American Scientists, biologist Jaye Gardiner, explores how common viral infections may raise cancer risk—not just through genetic mutations but by reshaping the body’s “extracellular matrix” of molecules that support cells and tissues. She explains how viruses can alter the extracellular matrix, potentially creating conditions that allow tumors to grow, and why this emerging view could change how we think about everything from colds to long COVID.\n\n\n\nRecommended Reading:\n\nJaye Gardiner’s Young American Scientists profile\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\n\n\n\nThis episode is part of “The Young American Scientists,” an editorially independent project that was produced with financial support from Regeneron. \nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-19T09:50:00+00:00",
"state": "completed",
"filelength": "00:14:49",
"filesize": "20.62 MB",
"filename": "60-Second Science - How common viruses could quietly raise your cancer risk.mp3",
"mime": "audio/mpeg",
"time": 889,
"size": 21621015,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82858",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82858&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20How%20common%20viruses%20could%20quietly%20raise%20your%20cancer%20risk.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
},
{
"id": "82859",
"title": "The neuroscientist decoding how the brain learns",
"name": "The neuroscientist decoding how the brain learns",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode, host Rachel Feltman interviews neuroscientist Kauê M. Costa, who is among Scientific American’s inaugural cohort of Young American Scientists honorees. Costa shares how being surprised by experiments has led him to new ways of thinking about learning in the brain. He explains how dopamine does more than signal reward, how there are two big frameworks of how the brain learns and how his findings could help us better understand—and treat—mental illness.\n\n\n\nRecommended Reading:\n\n\n\nThe Young American Scientists\n\n\n\nKauê M. Costa’s Young American Scientists profile\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Aaron Shattuck. Our theme music was composed by Dominic Smith.\n\n\n\nThis episode is part of “The Young American Scientists,” an editorially independent project that was produced with financial support from Regeneron.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-17T09:50:00+00:00",
"state": "completed",
"filelength": "00:18:38",
"filesize": "25.85 MB",
"filename": "60-Second Science - The neuroscientist decoding how the brain learns.mp3",
"mime": "audio/mpeg",
"time": 1118,
"size": 27104993,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82859",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82859&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20The%20neuroscientist%20decoding%20how%20the%20brain%20learns.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
},
{
"id": "82860",
"title": "From aspiring actress to NASA astrophysicist",
"name": "From aspiring actress to NASA astrophysicist",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode of Science Quickly, host Rachel Feltman interviews NASA astrophysicist Erini Lambrides about her unconventional journey from pursuing the performing arts to studying supermassive black holes. Lambrides reflects on how curiosity, persistence through early struggles in physics and a background in acting shaped her scientific approach and mentoring philosophy. \n\n\n\nRecommended Reading:\n\n\n\nYoung American Scientists\n\n\n\nProfile: Erini Lambrides\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\n\n\n\nThis episode is part of “The Young American Scientists,” an editorially independent project that was produced with financial support from Regeneron.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-15T09:50:00+00:00",
"state": "completed",
"filelength": "00:22:05",
"filesize": "30.6 MB",
"filename": "60-Second Science - From aspiring actress to NASA astrophysicist.mp3",
"mime": "audio/mpeg",
"time": 1325,
"size": 32083240,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82860",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82860&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20From%20aspiring%20actress%20to%20NASA%20astrophysicist.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
}
]
}
}
}
}
},
"description": "Stats result"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get stats (song/album/artist etc) by type and filter",
"tags": [
"Browsing, Indexes and Lists"
],
"operationId": "statsPodcastEpisodes",
"description": "Get some items based on some simple search types and filters. (Random by default) This method **HAD** partial backwards compatibility with older api versions but it has now been removed Pass -1 limit to get all results. (0 will fall back to the `popular_threshold` value)"
}
},
"/podcast-episodes/{episode_id}": {
"delete": {
"parameters": [
{
"$ref": "#/components/parameters/EpisodeId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"podcast_episode": {
"summary": "podcast episode",
"value": {
"id": "82857",
"title": "Ebola update, World Cup heat risks, dad brains",
"name": "Ebola update, World Cup heat risks, dad brains",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode of Science Quickly, we start with a quick update on the Ebola outbreak surging in parts of Africa. Host Rachel Feltman is then joined by Scientific American’s senior desk editor for life science Andrea Thompson to discuss what rising temperatures mean for the FIFA World Cup currently underway in North America. And finally, in honor of Father’s Day, SciAm’s senior desk editor for health and medicine Tanya Lewis gives us a glimpse into the often overlooked science of how fatherhood changes the brain.\n\n\n\nRecommended Reading:\n\n\n\nJust how big is the new Ebola outbreak?\n\n\n\nThe World Cup is battling extreme heat. Which cooling methods really work?\n\n\n\nThe Science of the 2026 World Cup\n\n\n\nHow becoming a dad changes men’s brains\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-22T09:50:00+00:00",
"state": "completed",
"filelength": "00:12:25",
"filesize": "17.33 MB",
"filename": "60-Second Science - Ebola update, World Cup heat risks, dad brains.mp3",
"mime": "audio/mpeg",
"time": 745,
"size": 18170164,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82857",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82857&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20Ebola%20update-%20World%20Cup%20heat%20risks-%20dad%20brains.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
}
}
}
}
},
"description": "Deleted"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Delete a podcast episode",
"tags": [
"Podcasts"
],
"operationId": "podcastEpisodeDelete",
"description": "Delete an existing podcast_episode."
},
"get": {
"parameters": [
{
"$ref": "#/components/parameters/EpisodeId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PodcastEpisodeObject"
},
"examples": {
"podcast_episode": {
"summary": "podcast episode",
"value": {
"id": "82857",
"title": "Ebola update, World Cup heat risks, dad brains",
"name": "Ebola update, World Cup heat risks, dad brains",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode of Science Quickly, we start with a quick update on the Ebola outbreak surging in parts of Africa. Host Rachel Feltman is then joined by Scientific American’s senior desk editor for life science Andrea Thompson to discuss what rising temperatures mean for the FIFA World Cup currently underway in North America. And finally, in honor of Father’s Day, SciAm’s senior desk editor for health and medicine Tanya Lewis gives us a glimpse into the often overlooked science of how fatherhood changes the brain.\n\n\n\nRecommended Reading:\n\n\n\nJust how big is the new Ebola outbreak?\n\n\n\nThe World Cup is battling extreme heat. Which cooling methods really work?\n\n\n\nThe Science of the 2026 World Cup\n\n\n\nHow becoming a dad changes men’s brains\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-22T09:50:00+00:00",
"state": "completed",
"filelength": "00:12:25",
"filesize": "17.33 MB",
"filename": "60-Second Science - Ebola update, World Cup heat risks, dad brains.mp3",
"mime": "audio/mpeg",
"time": 745,
"size": 18170164,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82857",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82857&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20Ebola%20update-%20World%20Cup%20heat%20risks-%20dad%20brains.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"last_played": "2026-07-27T08:19:12+00:00",
"played": ""
}
}
}
}
},
"description": "Podcast episode object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get podcast episode by ID",
"tags": [
"Podcasts"
],
"operationId": "podcastEpisode",
"description": "Get the podcast_episode from it's id."
}
},
"/podcast-episodes/{episode_id}/bookmark": {
"delete": {
"parameters": [
{
"$ref": "#/components/parameters/EpisodeId"
},
{
"$ref": "#/components/parameters/Client"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"bookmark_create": {
"summary": "bookmark create",
"value": {
"id": "81",
"owner": "user",
"object_type": "song",
"object_id": "97",
"position": 0,
"client": "python3-ampache",
"creation_date": 1670202706,
"update_date": 1784539940
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Delete a bookmark",
"tags": [
"Bookmarks"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkDeleteRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/BookmarkDeleteRequest"
}
}
}
},
"operationId": "bookmarkDeletePodcastEpisodes",
"description": "Delete an existing bookmark. (if it exists)"
},
"get": {
"parameters": [
{
"$ref": "#/components/parameters/EpisodeId"
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkObject"
},
"examples": {
"bookmark_create": {
"summary": "bookmark create",
"value": {
"id": "81",
"owner": "user",
"object_type": "song",
"object_id": "97",
"position": 0,
"client": "python3-ampache",
"creation_date": 1670202706,
"update_date": 1784539940
}
}
}
}
},
"description": "Bookmark object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get bookmark by ID",
"tags": [
"Bookmarks"
],
"operationId": "bookmarkPodcastEpisodes",
"description": "Get a single bookmark by bookmark_id"
},
"patch": {
"parameters": [
{
"$ref": "#/components/parameters/EpisodeId"
},
{
"in": "query",
"name": "position",
"required": false,
"schema": {
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Client"
},
{
"in": "query",
"name": "date",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkObject"
},
"examples": {
"bookmark_create": {
"summary": "bookmark create",
"value": {
"id": "81",
"owner": "user",
"object_type": "song",
"object_id": "97",
"position": 0,
"client": "python3-ampache",
"creation_date": 1670202706,
"update_date": 1784539940
}
}
}
}
},
"description": "Bookmark array"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Edit a bookmark",
"tags": [
"Bookmarks"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkEditRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/BookmarkEditRequest"
}
}
}
},
"operationId": "bookmarkEditPodcastEpisodes",
"description": "Edit a placeholder for the current media that you can return to later."
},
"put": {
"parameters": [
{
"$ref": "#/components/parameters/EpisodeId"
},
{
"in": "query",
"name": "position",
"required": false,
"schema": {
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Client"
},
{
"in": "query",
"name": "date",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkObject"
},
"examples": {
"bookmark_create": {
"summary": "bookmark create",
"value": {
"id": "81",
"owner": "user",
"object_type": "song",
"object_id": "97",
"position": 0,
"client": "python3-ampache",
"creation_date": 1670202706,
"update_date": 1784539940
}
}
}
}
},
"description": "Bookmark object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a bookmark",
"tags": [
"Bookmarks"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkCreatePodcastEpisodesBookmarkRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/BookmarkCreatePodcastEpisodesBookmarkRequest"
}
}
}
},
"operationId": "bookmarkCreatePodcastEpisodes",
"description": "Create a placeholder for the current media that you can return to later."
}
},
"/podcast-episodes/{episode_id}/download": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/EpisodeId"
},
{
"description": "Max bitrate for transcoding in bits per second (e.g 192000 = 192Kb)",
"in": "query",
"name": "bitrate",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "format",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "stats",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"description": "Zip archive of the container's media files (only when `zip=1` is sent for a zipable type)",
"headers": {
"Content-Type": {
"description": "Always `application/zip`",
"schema": {
"type": "string"
}
},
"Content-Disposition": {
"description": "`attachment` with the archive name, RFC 5987 encoded",
"schema": {
"type": "string"
}
}
},
"content": {
"application/zip": {
"schema": {
"type": "string",
"format": "binary"
}
}
}
},
"302": {
"description": "Redirect to the media url; the stream itself is served from the `Location` header",
"headers": {
"Location": {
"description": "Absolute url of the media stream",
"schema": {
"type": "string",
"format": "uri"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"416": {
"description": "Range not satisfiable",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"error4710": {
"$ref": "#/components/examples/error4710"
}
}
}
}
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Download a media file (binary)",
"tags": [
"Streaming and Downloads"
],
"operationId": "downloadPodcastEpisodes",
"description": "Downloads a given media file. set format=raw to download the full file"
}
},
"/podcast-episodes/{episode_id}/flag": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/EpisodeId"
},
{
"in": "query",
"name": "flag",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "flag",
"value": {
"success": "flag ADDED to 91"
}
}
}
}
},
"description": "Updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Flag or unflag an item as favourite",
"tags": [
"Ratings and Flags"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FlagRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/FlagRequest"
}
}
}
},
"operationId": "flagPodcastEpisodes",
"description": "This flags a library item as a favorite"
}
},
"/podcast-episodes/{episode_id}/localplay": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/EpisodeId"
},
{
"in": "query",
"name": "command",
"required": false,
"schema": {
"enum": [
"add"
],
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"song",
"video",
"podcast_episode",
"broadcast",
"live_stream",
"democratic"
],
"type": "string"
}
},
{
"in": "query",
"name": "clear",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayResponse"
},
"examples": {
"localplay": {
"summary": "localplay",
"value": {
"localplay": {
"command": {
"stop": true
}
}
}
},
"localplay_status": {
"summary": "localplay (status)",
"value": {
"localplay": {
"command": {
"status": {
"state": "stop",
"volume": "100",
"repeat": false,
"random": false,
"track": 2,
"track_title": "Unknown",
"track_artist": "Unknown",
"track_album": "Unknown"
}
}
}
}
}
}
}
},
"description": "Localplay response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Add media to the localplay server",
"tags": [
"Playback Control"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/LocalplayRequest"
}
}
}
},
"operationId": "localplayPodcastEpisodes",
"description": "This is for controlling localplay"
}
},
"/podcast-episodes/{episode_id}/playback": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/EpisodeId"
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"song",
"video",
"podcast_episode"
],
"type": "string"
}
},
{
"in": "query",
"name": "state",
"required": false,
"schema": {
"enum": [
"play",
"stop"
],
"type": "string"
}
},
{
"in": "query",
"name": "time",
"required": false,
"schema": {
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Client"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/NowPlayingResponse"
},
"examples": {
"success": {
"summary": "success",
"value": {
"now_playing": []
}
}
}
}
},
"description": "Now playing response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Update the server with the client player state",
"tags": [
"Now Playing"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlayerRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/PlayerRequest"
}
}
}
},
"operationId": "playerPodcastEpisodesPlayback",
"description": "Inform the server about the state of your client. (Song you are playing, Play/Pause state, etc.)"
}
},
"/podcast-episodes/{episode_id}/rate": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/EpisodeId"
},
{
"in": "query",
"name": "rating",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "rate",
"value": {
"success": "rating set to 5 for 91"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Rate a library item",
"tags": [
"Ratings and Flags"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/RateRequest"
}
}
}
},
"operationId": "ratePodcastEpisodes",
"description": "This rates a library item"
}
},
"/podcast-episodes/{episode_id}/share": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/EpisodeId"
},
{
"in": "query",
"name": "description",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "days to keep active",
"in": "query",
"name": "expires",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareObject"
},
"examples": {
"share": {
"summary": "share",
"value": {
"id": "1",
"name": "Creeping Lawler 2",
"owner": "user",
"allow_stream": true,
"allow_download": false,
"creation_date": 1670202706,
"lastvisit_date": 1614129643,
"object_type": "album",
"object_id": "9",
"expire_days": 0,
"max_counter": 0,
"counter": 1,
"secret": "GJ7EzBPT",
"public_url": "https://music.com.au/share.php?id=1&secret=GJ7EzBPT",
"description": "Creeping Lawler 2 (Warfare 3.0)"
}
}
}
}
},
"description": "Share created"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a public share URL",
"tags": [
"Shares"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareCreateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/ShareCreateRequest"
}
}
}
},
"operationId": "shareCreatePodcastEpisodes",
"description": "Create a public url that can be used by anyone to stream media. Takes the file id with optional description and expires parameters."
}
},
"/podcast-episodes/{episode_id}/stream": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/EpisodeId"
},
{
"description": "Max bitrate for transcoding in bits per second (e.g 192000 = 192Kb)",
"in": "query",
"name": "bitrate",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "format",
"required": false,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"in": "query",
"name": "length",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"in": "query",
"name": "stats",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"302": {
"description": "Redirect to the media url; the stream itself is served from the `Location` header",
"headers": {
"Location": {
"description": "Absolute url of the media stream",
"schema": {
"type": "string",
"format": "uri"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"416": {
"description": "Range not satisfiable",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"error4710": {
"$ref": "#/components/examples/error4710"
}
}
}
}
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Stream a media file (binary)",
"tags": [
"Streaming and Downloads"
],
"operationId": "streamPodcastEpisodes",
"description": "Streams a given media file. Takes the file id in parameter with optional max bit rate, file format, time offset, size and estimate content length option."
}
},
"/podcasts": {
"get": {
"parameters": [
{
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
"episodes"
],
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PodcastsResponse"
},
"examples": {
"podcasts": {
"summary": "podcasts",
"value": {
"total_count": 2,
"md5": "89fefb193877ee62e29d1da5975dcc47",
"podcast": [
{
"id": "1",
"name": "60-Second Science",
"description": "Tune in every weekday for quick reports and commentaries on the world of science—it'll just take a minute",
"language": "en-us",
"copyright": "False",
"feed_url": "http://rss.sciam.com/sciam/60secsciencepodcast",
"generator": "",
"website": "https://www.scientificamerican.com/podcast/60-second-science/",
"build_date": "1970-01-01T00:00:00+00:00",
"sync_date": "2022-08-17T05:07:11+00:00",
"public_url": "https://music.com.au/podcast.php?action=show&podcast=1",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"catalog": "3",
"podcast_episode": []
},
{
"id": "2",
"name": "Plays Well with Others",
"description": "From Creative Commons, a podcast about the art and science of collaboration. With a focus on the tools, techniques, and mechanics of collaboration, we explore how today's most interesting collaborators are making new things, solving old problems, and getting things done — together. Hosted by Creative Commons CEO Ryan Merkley. ",
"language": "en",
"copyright": "Creative Commons",
"feed_url": "https://anchor.fm/s/90932e8/podcast/rss",
"generator": "Anchor Podcasts",
"website": "playswellwithothers.org",
"build_date": "2021-02-23T04:18:58+00:00",
"sync_date": "2022-08-17T05:07:11+00:00",
"public_url": "https://music.com.au/podcast.php?action=show&podcast=2",
"art": "https://music.com.au/image.php?object_id=2&object_type=podcast&id=45&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"catalog": "3",
"podcast_episode": []
}
]
}
}
}
}
},
"description": "Podcast list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List podcasts",
"tags": [
"Podcasts"
],
"operationId": "podcasts",
"description": "Get information about podcasts"
},
"put": {
"parameters": [
{
"description": "RSS URL for podcast",
"in": "query",
"name": "url",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "Podcast catalog ID",
"in": "query",
"name": "catalog",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PodcastObject"
},
"examples": {
"podcasts": {
"summary": "podcasts",
"value": {
"id": "1",
"name": "60-Second Science",
"description": "Tune in every weekday for quick reports and commentaries on the world of science—it'll just take a minute",
"language": "en-us",
"copyright": "False",
"feed_url": "http://rss.sciam.com/sciam/60secsciencepodcast",
"generator": "",
"website": "https://www.scientificamerican.com/podcast/60-second-science/",
"build_date": "1970-01-01T00:00:00+00:00",
"sync_date": "2022-08-17T05:07:11+00:00",
"public_url": "https://music.com.au/podcast.php?action=show&podcast=1",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"catalog": "3",
"podcast_episode": []
}
}
}
}
},
"description": "Podcast created"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a podcast",
"tags": [
"Podcasts"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PodcastCreateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/PodcastCreateRequest"
}
}
}
},
"operationId": "podcastCreate",
"description": "Create a podcast that can be used by anyone to stream media. Takes the url and catalog parameters."
}
},
"/podcasts/search": {
"get": {
"description": "Provide operator plus one or more rule triplets. At minimum, rule_1, rule_1_operator, rule_1_input are required. Additional rules may be supplied as rule_2, rule_2_operator, rule_2_input, etc.",
"operationId": "searchPodcasts",
"parameters": [
{
"$ref": "#/components/parameters/Operator"
},
{
"description": "0, 1 (random order of results; default to 0)",
"in": "query",
"name": "random",
"required": false,
"schema": {
"default": false,
"type": "boolean"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Rule1"
},
{
"$ref": "#/components/parameters/Rule1Operator"
},
{
"$ref": "#/components/parameters/Rule1Input"
},
{
"$ref": "#/components/parameters/Rule2"
},
{
"$ref": "#/components/parameters/Rule2Operator"
},
{
"$ref": "#/components/parameters/Rule2Input"
},
{
"$ref": "#/components/parameters/Rule3"
},
{
"$ref": "#/components/parameters/Rule3Operator"
},
{
"$ref": "#/components/parameters/Rule3Input"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PodcastsResponse"
},
"examples": {
"podcasts": {
"summary": "podcasts (search results)",
"value": {
"total_count": 2,
"md5": "89fefb193877ee62e29d1da5975dcc47",
"podcast": [
{
"id": "1",
"name": "60-Second Science",
"description": "Tune in every weekday for quick reports and commentaries on the world of science—it'll just take a minute",
"language": "en-us",
"copyright": "False",
"feed_url": "http://rss.sciam.com/sciam/60secsciencepodcast",
"generator": "",
"website": "https://www.scientificamerican.com/podcast/60-second-science/",
"build_date": "1970-01-01T00:00:00+00:00",
"sync_date": "2022-08-17T05:07:11+00:00",
"public_url": "https://music.com.au/podcast.php?action=show&podcast=1",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"catalog": "3",
"podcast_episode": []
},
{
"id": "2",
"name": "Plays Well with Others",
"description": "From Creative Commons, a podcast about the art and science of collaboration. With a focus on the tools, techniques, and mechanics of collaboration, we explore how today's most interesting collaborators are making new things, solving old problems, and getting things done — together. Hosted by Creative Commons CEO Ryan Merkley. ",
"language": "en",
"copyright": "Creative Commons",
"feed_url": "https://anchor.fm/s/90932e8/podcast/rss",
"generator": "Anchor Podcasts",
"website": "playswellwithothers.org",
"build_date": "2021-02-23T04:18:58+00:00",
"sync_date": "2022-08-17T05:07:11+00:00",
"public_url": "https://music.com.au/podcast.php?action=show&podcast=2",
"art": "https://music.com.au/image.php?object_id=2&object_type=podcast&id=45&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"catalog": "3",
"podcast_episode": []
}
]
}
}
}
}
},
"description": "Search results"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Search for media entities using rule triplets",
"tags": [
"Podcasts",
"Search"
]
}
},
"/podcasts/stats": {
"get": {
"parameters": [
{
"description": "newest, highest, frequent, recent, forgotten, flagged, random",
"in": "query",
"name": "filter",
"required": true,
"schema": {
"default": "random",
"enum": [
"newest",
"highest",
"frequent",
"recent",
"forgotten",
"flagged",
"random"
],
"type": "string"
}
},
{
"in": "query",
"name": "user_id",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "username",
"required": false,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PodcastsResponse"
},
"examples": {
"success": {
"summary": "success",
"value": {
"total_count": 2,
"md5": "89fefb193877ee62e29d1da5975dcc47",
"podcast": [
{
"id": "1",
"name": "60-Second Science",
"description": "Tune in every weekday for quick reports and commentaries on the world of science—it'll just take a minute",
"language": "en-us",
"copyright": "False",
"feed_url": "http://rss.sciam.com/sciam/60secsciencepodcast",
"generator": "",
"website": "https://www.scientificamerican.com/podcast/60-second-science/",
"build_date": "1970-01-01T00:00:00+00:00",
"sync_date": "2022-08-17T05:07:11+00:00",
"public_url": "https://music.com.au/podcast.php?action=show&podcast=1",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"catalog": "3",
"podcast_episode": []
},
{
"id": "2",
"name": "Plays Well with Others",
"description": "From Creative Commons, a podcast about the art and science of collaboration. With a focus on the tools, techniques, and mechanics of collaboration, we explore how today's most interesting collaborators are making new things, solving old problems, and getting things done — together. Hosted by Creative Commons CEO Ryan Merkley. ",
"language": "en",
"copyright": "Creative Commons",
"feed_url": "https://anchor.fm/s/90932e8/podcast/rss",
"generator": "Anchor Podcasts",
"website": "playswellwithothers.org",
"build_date": "2021-02-23T04:18:58+00:00",
"sync_date": "2022-08-17T05:07:11+00:00",
"public_url": "https://music.com.au/podcast.php?action=show&podcast=2",
"art": "https://music.com.au/image.php?object_id=2&object_type=podcast&id=45&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"catalog": "3",
"podcast_episode": []
}
]
}
}
}
}
},
"description": "Stats result"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get stats (song/album/artist etc) by type and filter",
"tags": [
"Browsing, Indexes and Lists"
],
"operationId": "statsPodcasts",
"description": "Get some items based on some simple search types and filters. (Random by default) This method **HAD** partial backwards compatibility with older api versions but it has now been removed Pass -1 limit to get all results. (0 will fall back to the `popular_threshold` value)"
}
},
"/podcasts/{podcast_id}": {
"delete": {
"parameters": [
{
"$ref": "#/components/parameters/PodcastId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"podcast": {
"summary": "podcast",
"value": {
"id": "1",
"name": "60-Second Science",
"description": "Tune in every weekday for quick reports and commentaries on the world of science—it'll just take a minute",
"language": "en-us",
"copyright": "False",
"feed_url": "http://rss.sciam.com/sciam/60secsciencepodcast",
"generator": "",
"website": "https://www.scientificamerican.com/podcast/60-second-science/",
"build_date": "1970-01-01T00:00:00+00:00",
"sync_date": "2022-08-17T05:07:11+00:00",
"public_url": "https://music.com.au/podcast.php?action=show&podcast=1",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"catalog": "3",
"podcast_episode": []
}
}
}
}
},
"description": "Deleted"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Delete a podcast",
"tags": [
"Podcasts"
],
"operationId": "podcastDelete",
"description": "Delete an existing podcast."
},
"get": {
"parameters": [
{
"$ref": "#/components/parameters/PodcastId"
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
"episodes"
],
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PodcastObject"
},
"examples": {
"podcast": {
"summary": "podcast",
"value": {
"id": "1",
"name": "60-Second Science",
"description": "Tune in every weekday for quick reports and commentaries on the world of science—it'll just take a minute",
"language": "en-us",
"copyright": "False",
"feed_url": "http://rss.sciam.com/sciam/60secsciencepodcast",
"generator": "",
"website": "https://www.scientificamerican.com/podcast/60-second-science/",
"build_date": "1970-01-01T00:00:00+00:00",
"sync_date": "2022-08-17T05:07:11+00:00",
"public_url": "https://music.com.au/podcast.php?action=show&podcast=1",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"catalog": "3",
"podcast_episode": []
}
}
}
}
},
"description": "Podcast object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get podcast by ID",
"tags": [
"Podcasts"
],
"operationId": "podcast",
"description": "Get the podcast from it's id."
},
"patch": {
"parameters": [
{
"$ref": "#/components/parameters/PodcastId"
},
{
"in": "query",
"name": "feed",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "title",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "website",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "description",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "generator",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "copyright",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"podcast": {
"summary": "podcast",
"value": {
"id": "1",
"name": "60-Second Science",
"description": "Tune in every weekday for quick reports and commentaries on the world of science—it'll just take a minute",
"language": "en-us",
"copyright": "False",
"feed_url": "http://rss.sciam.com/sciam/60secsciencepodcast",
"generator": "",
"website": "https://www.scientificamerican.com/podcast/60-second-science/",
"build_date": "1970-01-01T00:00:00+00:00",
"sync_date": "2022-08-17T05:07:11+00:00",
"public_url": "https://music.com.au/podcast.php?action=show&podcast=1",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"catalog": "3",
"podcast_episode": []
}
}
}
}
},
"description": "Updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Edit an existing podcast",
"tags": [
"Podcasts"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PodcastEditRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/PodcastEditRequest"
}
}
}
},
"operationId": "podcastEdit",
"description": "Update the description and/or expiration date for an existing podcast. Takes the podcast id to update with optional description and expires parameters."
}
},
"/podcasts/{podcast_id}/art": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/PodcastId"
},
{
"description": "widthxheight, e.g. 640x480",
"in": "query",
"name": "size",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "The image itself, written straight to the response body",
"headers": {
"Content-Type": {
"description": "The stored art mime type (e.g. `image/jpeg`, `image/png`)",
"schema": {
"type": "string"
}
},
"Content-Length": {
"description": "Size of the image in bytes",
"schema": {
"type": "integer"
}
},
"Access-Control-Allow-Origin": {
"description": "Always `*`, so art can be loaded cross-origin",
"schema": {
"type": "string"
}
}
},
"content": {
"image/*": {
"schema": {
"type": "string",
"format": "binary"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get art image (binary)",
"tags": [
"Artwork"
],
"operationId": "getArtPodcasts",
"description": "Get an art image."
}
},
"/podcasts/{podcast_id}/browse": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/PodcastId"
},
{
"in": "query",
"name": "catalog",
"required": false,
"description": "Restrict the children to a single catalog. Omit it to browse every catalog you can see.",
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BrowseResponse"
}
}
},
"description": "Browse results"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Browse episodes of a podcast",
"tags": [
"Podcasts",
"Browsing, Indexes and Lists"
],
"description": "Return children of a parent object in a folder traversal/browse style. The catalog is an optional filter from API version 8; omit it to browse the children in every catalog you can see.",
"operationId": "browsePodcasts"
}
},
"/podcasts/{podcast_id}/flag": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/PodcastId"
},
{
"in": "query",
"name": "flag",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "flag",
"value": {
"success": "flag ADDED to 91"
}
}
}
}
},
"description": "Updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Flag or unflag an item as favourite",
"tags": [
"Ratings and Flags"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FlagRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/FlagRequest"
}
}
}
},
"operationId": "flagPodcasts",
"description": "This flags a library item as a favorite"
}
},
"/podcasts/{podcast_id}/podcast-episodes": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/PodcastId"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PodcastEpisodesResponse"
},
"examples": {
"podcast_episodes": {
"summary": "podcast episodes",
"value": {
"total_count": 10,
"md5": "89cf7a2c3e6dc91f99556cd856b6faa2",
"podcast_episode": [
{
"id": "82857",
"title": "Ebola update, World Cup heat risks, dad brains",
"name": "Ebola update, World Cup heat risks, dad brains",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode of Science Quickly, we start with a quick update on the Ebola outbreak surging in parts of Africa. Host Rachel Feltman is then joined by Scientific American’s senior desk editor for life science Andrea Thompson to discuss what rising temperatures mean for the FIFA World Cup currently underway in North America. And finally, in honor of Father’s Day, SciAm’s senior desk editor for health and medicine Tanya Lewis gives us a glimpse into the often overlooked science of how fatherhood changes the brain.\n\n\n\nRecommended Reading:\n\n\n\nJust how big is the new Ebola outbreak?\n\n\n\nThe World Cup is battling extreme heat. Which cooling methods really work?\n\n\n\nThe Science of the 2026 World Cup\n\n\n\nHow becoming a dad changes men’s brains\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-22T09:50:00+00:00",
"state": "completed",
"filelength": "00:12:25",
"filesize": "17.33 MB",
"filename": "60-Second Science - Ebola update, World Cup heat risks, dad brains.mp3",
"mime": "audio/mpeg",
"time": 745,
"size": 18170164,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82857",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82857&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20Ebola%20update-%20World%20Cup%20heat%20risks-%20dad%20brains.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
},
{
"id": "82858",
"title": "How common viruses could quietly raise your cancer risk",
"name": "How common viruses could quietly raise your cancer risk",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode of Science Quickly, one of SciAm’s Young American Scientists, biologist Jaye Gardiner, explores how common viral infections may raise cancer risk—not just through genetic mutations but by reshaping the body’s “extracellular matrix” of molecules that support cells and tissues. She explains how viruses can alter the extracellular matrix, potentially creating conditions that allow tumors to grow, and why this emerging view could change how we think about everything from colds to long COVID.\n\n\n\nRecommended Reading:\n\nJaye Gardiner’s Young American Scientists profile\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\n\n\n\nThis episode is part of “The Young American Scientists,” an editorially independent project that was produced with financial support from Regeneron. \nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-19T09:50:00+00:00",
"state": "completed",
"filelength": "00:14:49",
"filesize": "20.62 MB",
"filename": "60-Second Science - How common viruses could quietly raise your cancer risk.mp3",
"mime": "audio/mpeg",
"time": 889,
"size": 21621015,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82858",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82858&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20How%20common%20viruses%20could%20quietly%20raise%20your%20cancer%20risk.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
},
{
"id": "82859",
"title": "The neuroscientist decoding how the brain learns",
"name": "The neuroscientist decoding how the brain learns",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode, host Rachel Feltman interviews neuroscientist Kauê M. Costa, who is among Scientific American’s inaugural cohort of Young American Scientists honorees. Costa shares how being surprised by experiments has led him to new ways of thinking about learning in the brain. He explains how dopamine does more than signal reward, how there are two big frameworks of how the brain learns and how his findings could help us better understand—and treat—mental illness.\n\n\n\nRecommended Reading:\n\n\n\nThe Young American Scientists\n\n\n\nKauê M. Costa’s Young American Scientists profile\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Aaron Shattuck. Our theme music was composed by Dominic Smith.\n\n\n\nThis episode is part of “The Young American Scientists,” an editorially independent project that was produced with financial support from Regeneron.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-17T09:50:00+00:00",
"state": "completed",
"filelength": "00:18:38",
"filesize": "25.85 MB",
"filename": "60-Second Science - The neuroscientist decoding how the brain learns.mp3",
"mime": "audio/mpeg",
"time": 1118,
"size": 27104993,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82859",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82859&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20The%20neuroscientist%20decoding%20how%20the%20brain%20learns.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
},
{
"id": "82860",
"title": "From aspiring actress to NASA astrophysicist",
"name": "From aspiring actress to NASA astrophysicist",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode of Science Quickly, host Rachel Feltman interviews NASA astrophysicist Erini Lambrides about her unconventional journey from pursuing the performing arts to studying supermassive black holes. Lambrides reflects on how curiosity, persistence through early struggles in physics and a background in acting shaped her scientific approach and mentoring philosophy. \n\n\n\nRecommended Reading:\n\n\n\nYoung American Scientists\n\n\n\nProfile: Erini Lambrides\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\n\n\n\nThis episode is part of “The Young American Scientists,” an editorially independent project that was produced with financial support from Regeneron.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-15T09:50:00+00:00",
"state": "completed",
"filelength": "00:22:05",
"filesize": "30.6 MB",
"filename": "60-Second Science - From aspiring actress to NASA astrophysicist.mp3",
"mime": "audio/mpeg",
"time": 1325,
"size": 32083240,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82860",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82860&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20From%20aspiring%20actress%20to%20NASA%20astrophysicist.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
}
]
}
}
}
}
},
"description": "Podcast episode list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List episodes for a podcast",
"tags": [
"Podcasts"
],
"operationId": "podcastEpisodesPodcastsPodcastEpisodes",
"description": "This returns the episodes for a podcast"
}
},
"/podcasts/{podcast_id}/rate": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/PodcastId"
},
{
"in": "query",
"name": "rating",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "rate",
"value": {
"success": "rating set to 5 for 91"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Rate a library item",
"tags": [
"Ratings and Flags"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/RateRequest"
}
}
}
},
"operationId": "ratePodcasts",
"description": "This rates a library item"
}
},
"/podcasts/{podcast_id}/share": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/PodcastId"
},
{
"in": "query",
"name": "description",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "days to keep active",
"in": "query",
"name": "expires",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareObject"
},
"examples": {
"share": {
"summary": "share",
"value": {
"id": "1",
"name": "Creeping Lawler 2",
"owner": "user",
"allow_stream": true,
"allow_download": false,
"creation_date": 1670202706,
"lastvisit_date": 1614129643,
"object_type": "album",
"object_id": "9",
"expire_days": 0,
"max_counter": 0,
"counter": 1,
"secret": "GJ7EzBPT",
"public_url": "https://music.com.au/share.php?id=1&secret=GJ7EzBPT",
"description": "Creeping Lawler 2 (Warfare 3.0)"
}
}
}
}
},
"description": "Share created"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a public share URL",
"tags": [
"Shares"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareCreateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/ShareCreateRequest"
}
}
}
},
"operationId": "shareCreatePodcasts",
"description": "Create a public url that can be used by anyone to stream media. Takes the file id with optional description and expires parameters."
}
},
"/podcasts/{podcast_id}/sync": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/PodcastId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"value": {}
}
}
}
},
"description": "Sync started"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Sync and download new podcast episodes",
"tags": [
"Podcasts"
],
"operationId": "updatePodcastSync",
"description": "Sync and download new podcast episodes"
}
},
"/preferences": {
"get": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PreferencesResponse"
},
"examples": {
"user_preferences": {
"summary": "user preferences",
"value": {
"preference": [
{
"id": "123",
"name": "show_donate",
"level": 25,
"description": "Show donate button in footer",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": null,
"has_access": true
},
{
"id": "140",
"name": "notify_email",
"level": 25,
"description": "Allow E-mail notifications",
"value": "0",
"type": "boolean",
"category": "options",
"subcategory": null,
"has_access": true
},
{
"id": "110",
"name": "demo_clear_sessions",
"level": 25,
"description": "Democratic - Clear votes for expired user sessions",
"value": "0",
"type": "boolean",
"category": "playlist",
"subcategory": null,
"has_access": true
},
{
"id": "101",
"name": "stream_beautiful_url",
"level": 100,
"description": "Enable URL Rewriting",
"value": "1",
"type": "boolean",
"category": "streaming",
"subcategory": null,
"has_access": true
},
{
"id": "31",
"name": "lang",
"level": 100,
"description": "Language",
"value": "en_US",
"type": "special",
"category": "interface",
"subcategory": null,
"has_access": true,
"values": [
"en_US",
"ar_SA",
"ca_ES",
"cs_CZ",
"da_DK",
"de_CH",
"de_DE",
"el_GR",
"en_AU",
"en_GB",
"es_ES",
"fa_IR",
"fi_FI",
"fr_BE",
"fr_FR",
"gl_ES",
"he_IL",
"hi_IN",
"hu_HU",
"id_ID",
"it_IT",
"ja_JP",
"ko_KR",
"nb_NO",
"nl_NL",
"no_NO",
"pl_PL",
"pt_BR",
"ro_RO",
"ru_RU",
"sv_SE",
"tr_TR",
"uk_UA",
"vi_VN",
"zh-Hant",
"zh_CN",
"zh_SG",
"zh_TW"
]
},
{
"id": "157",
"name": "unique_playlist",
"level": 25,
"description": "Only add unique items to playlists",
"value": "",
"type": "boolean",
"category": "playlist",
"subcategory": null,
"has_access": true
},
{
"id": "183",
"name": "bookmark_latest",
"level": 25,
"description": "Only keep the latest media bookmark",
"value": "",
"type": "boolean",
"category": "options",
"subcategory": null,
"has_access": true
},
{
"id": "32",
"name": "playlist_type",
"level": 100,
"description": "Playlist Type",
"value": "m3u",
"type": "special",
"category": "playlist",
"subcategory": null,
"has_access": true,
"values": [
"simple_m3u",
"pls",
"asx",
"ram",
"xspf",
"m3u"
]
},
{
"id": "222",
"name": "show_playlist_media_parent",
"level": 25,
"description": "Show Artist column on playlist media rows",
"value": "0",
"type": "boolean",
"category": "playlist",
"subcategory": null,
"has_access": true
},
{
"id": "111",
"name": "show_donate",
"level": 25,
"description": "Show donate button in footer",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": null,
"has_access": true
},
{
"id": "211",
"name": "extended_playlist_links",
"level": 25,
"description": "Show extended links for playlist media",
"value": "0",
"type": "boolean",
"category": "playlist",
"subcategory": null,
"has_access": true
},
{
"id": "165",
"name": "api_enable_3",
"level": 25,
"description": "Allow Ampache API3 responses",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "166",
"name": "api_enable_4",
"level": 25,
"description": "Allow Ampache API4 responses",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "167",
"name": "api_enable_5",
"level": 25,
"description": "Allow Ampache API5 responses",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "176",
"name": "api_enable_6",
"level": 25,
"description": "Allow Ampache API6 responses",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "226",
"name": "api_enable_8",
"level": 25,
"description": "Allow Ampache API8 responses",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "223",
"name": "subsonic_legacy",
"level": 25,
"description": "Enable legacy Subsonic API responses for compatibility issues",
"value": "0",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "168",
"name": "api_force_version",
"level": 25,
"description": "Force a specific API response no matter what version you send",
"value": "0",
"type": "special",
"category": "options",
"subcategory": "api",
"has_access": true,
"values": [
0,
3,
4,
5,
6
]
},
{
"id": "224",
"name": "subsonic_force_album_artist",
"level": 25,
"description": "Force Album Artist for Subsonic API responses",
"value": "0",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "204",
"name": "api_always_download",
"level": 25,
"description": "Force API streams to download. (Enable scrobble in your client to record stats)",
"value": "0",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "164",
"name": "subsonic_always_download",
"level": 25,
"description": "Force Subsonic streams to download. (Enable scrobble in your client to record stats)",
"value": "0",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "170",
"name": "api_hidden_playlists",
"level": 25,
"description": "Hide playlists in Subsonic and API clients that start with this string",
"value": "",
"type": "string",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "171",
"name": "api_hide_dupe_searches",
"level": 25,
"description": "Hide smartlists that match playlist names in Subsonic and API clients",
"value": "0",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "225",
"name": "subsonic_single_user_data",
"level": 25,
"description": "Use single user data for Subsonic API responses",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "153",
"name": "libitem_browse_alpha",
"level": 75,
"description": "Alphabet browsing by default for following library items (album,artist,...)",
"value": "",
"type": "string",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "161",
"name": "use_original_year",
"level": 25,
"description": "Browse by Original Year for albums (falls back to Year)",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "163",
"name": "hide_genres",
"level": 25,
"description": "Hide the Genre column in browse table rows",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "162",
"name": "hide_single_artist",
"level": 25,
"description": "Hide the Song Artist column for Albums with one Artist",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "84",
"name": "show_played_times",
"level": 25,
"description": "Show # played",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "154",
"name": "show_skipped_times",
"level": 25,
"description": "Show # skipped",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "179",
"name": "show_original_year",
"level": 25,
"description": "Show Album original year on links (if available)",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "178",
"name": "show_subtitle",
"level": 25,
"description": "Show Album subtitle on links (if available)",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "149",
"name": "browse_filter",
"level": 25,
"description": "Show filter box on browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "160",
"name": "show_license",
"level": 25,
"description": "Show License",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "169",
"name": "show_playlist_username",
"level": 25,
"description": "Show playlist owner username in titles",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "214",
"name": "browse_album_grid_view",
"level": 25,
"description": "Force Grid View on Album browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": "215",
"name": "browse_album_disk_grid_view",
"level": 25,
"description": "Force Grid View on Album Disk browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": "216",
"name": "browse_artist_grid_view",
"level": 25,
"description": "Force Grid View on Artist browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": "218",
"name": "browse_playlist_grid_view",
"level": 25,
"description": "Force Grid View on Playlist browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": "220",
"name": "browse_podcast_grid_view",
"level": 25,
"description": "Force Grid View on Podcast browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": "221",
"name": "browse_podcast_episode_grid_view",
"level": 25,
"description": "Force Grid View on Podcast Episode browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": "217",
"name": "browse_live_stream_grid_view",
"level": 25,
"description": "Force Grid View on Radio Station browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": "213",
"name": "browse_song_grid_view",
"level": 25,
"description": "Force Grid View on Song browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": "219",
"name": "browse_video_grid_view",
"level": 25,
"description": "Force Grid View on Video browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": "151",
"name": "custom_blankalbum",
"level": 75,
"description": "Custom blank album default image",
"value": "",
"type": "string",
"category": "interface",
"subcategory": "custom",
"has_access": true
},
{
"id": "155",
"name": "custom_datetime",
"level": 25,
"description": "Custom datetime",
"value": "",
"type": "string",
"category": "interface",
"subcategory": "custom",
"has_access": true
},
{
"id": "182",
"name": "custom_timezone",
"level": 25,
"description": "Custom timezone (Override PHP date.timezone)",
"value": "",
"type": "string",
"category": "interface",
"subcategory": "custom",
"has_access": true
},
{
"id": "129",
"name": "custom_logo",
"level": 25,
"description": "Custom URL - Logo",
"value": "",
"type": "string",
"category": "interface",
"subcategory": "custom",
"has_access": true
},
{
"id": "196",
"name": "custom_logo_user",
"level": 25,
"description": "Custom URL - Use your avatar for header logo",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "custom",
"has_access": true
},
{
"id": "22",
"name": "site_title",
"level": 100,
"description": "Website Title",
"value": "Ampache :: For the Love of Music",
"type": "string",
"category": "interface",
"subcategory": "custom",
"has_access": true
},
{
"id": "45",
"name": "allow_democratic_playback",
"level": 100,
"description": "Allow Democratic Play",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "feature",
"has_access": true
},
{
"id": "1",
"name": "download",
"level": 100,
"description": "Allow Downloads",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "feature",
"has_access": true
},
{
"id": "102",
"name": "share",
"level": 100,
"description": "Allow Share",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "feature",
"has_access": true
},
{
"id": "44",
"name": "allow_stream_playback",
"level": 100,
"description": "Allow Streaming",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "feature",
"has_access": true
},
{
"id": "121",
"name": "allow_video",
"level": 75,
"description": "Allow Video Features",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "feature",
"has_access": true
},
{
"id": "82",
"name": "now_playing_per_user",
"level": 50,
"description": "Now Playing filtered per user",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": "158",
"name": "of_the_moment",
"level": 25,
"description": "Set the amount of items Album/Video of the Moment will display",
"value": "",
"type": "integer",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": "125",
"name": "home_moment_albums",
"level": 25,
"description": "Show Albums of the Moment",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": "186",
"name": "home_recently_played_all",
"level": 25,
"description": "Show all media types in Recently Played",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": "128",
"name": "home_now_playing",
"level": 25,
"description": "Show Now Playing",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": "127",
"name": "home_recently_played",
"level": 25,
"description": "Show Recently Played",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": "126",
"name": "home_moment_videos",
"level": 25,
"description": "Show Videos of the Moment",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": "197",
"name": "index_dashboard_form",
"level": 25,
"description": "Use Dashboard links for the index page header",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": "83",
"name": "album_sort",
"level": 25,
"description": "Album - Default sort",
"value": "0",
"type": "string",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "108",
"name": "album_group",
"level": 25,
"description": "Album - Group multiple disks",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "122",
"name": "album_release_type",
"level": 25,
"description": "Album - Group per release type",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "130",
"name": "album_release_type_sort",
"level": 25,
"description": "Album - Group per release type sort",
"value": "album,ep,live,single",
"type": "string",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "146",
"name": "libitem_contextmenu",
"level": 0,
"description": "Library item context menu",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "209",
"name": "external_links_bandcamp",
"level": 25,
"description": "Show Bandcamp search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "212",
"name": "external_links_discogs",
"level": 25,
"description": "Show Discogs search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "206",
"name": "external_links_duckduckgo",
"level": 25,
"description": "Show DuckDuckGo search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "205",
"name": "external_links_google",
"level": 25,
"description": "Show Google search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "208",
"name": "external_links_lastfm",
"level": 25,
"description": "Show Last.fm search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "210",
"name": "external_links_musicbrainz",
"level": 25,
"description": "Show MusicBrainz search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "207",
"name": "external_links_wikipedia",
"level": 25,
"description": "Show Wikipedia search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "46",
"name": "allow_localplay_playback",
"level": 100,
"description": "Allow Localplay Play",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "localplay",
"has_access": true
},
{
"id": "40",
"name": "localplay_level",
"level": 100,
"description": "Localplay Access",
"value": "100",
"type": "special",
"category": "options",
"subcategory": "localplay",
"has_access": true,
"values": [
"0",
"5",
"25",
"50",
"75",
"100"
]
},
{
"id": "41",
"name": "localplay_controller",
"level": 100,
"description": "Localplay Type",
"value": "mpd",
"type": "special",
"category": "options",
"subcategory": "localplay",
"has_access": true,
"values": [
"httpq",
"mpd",
"upnp",
"vlc",
"xbmc"
]
},
{
"id": "131",
"name": "browser_notify",
"level": 25,
"description": "Web Player browser notifications",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "notification",
"has_access": true
},
{
"id": "132",
"name": "browser_notify_timeout",
"level": 25,
"description": "Web Player browser notifications timeout (seconds)",
"value": "10",
"type": "integer",
"category": "interface",
"subcategory": "notification",
"has_access": true
},
{
"id": "104",
"name": "slideshow_time",
"level": 25,
"description": "Artist slideshow inactivity time",
"value": "0",
"type": "integer",
"category": "interface",
"subcategory": "player",
"has_access": true
},
{
"id": "100",
"name": "webplayer_pausetabs",
"level": 25,
"description": "Auto-pause between tabs",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "player",
"has_access": true
},
{
"id": "105",
"name": "broadcast_by_default",
"level": 25,
"description": "Broadcast web player by default",
"value": "0",
"type": "boolean",
"category": "streaming",
"subcategory": "player",
"has_access": true
},
{
"id": "99",
"name": "webplayer_confirmclose",
"level": 25,
"description": "Confirmation when closing current playing window",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "player",
"has_access": true
},
{
"id": "124",
"name": "direct_play_limit",
"level": 25,
"description": "Limit direct play to maximum media count",
"value": "500",
"type": "integer",
"category": "interface",
"subcategory": "player",
"has_access": true
},
{
"id": "175",
"name": "webplayer_removeplayed",
"level": 25,
"description": "Remove tracks before the current playlist item in the webplayer when played",
"value": "0",
"type": "special",
"category": "streaming",
"subcategory": "player",
"has_access": true,
"values": [
"0",
"1",
"2",
"3",
"5",
"10",
"999"
]
},
{
"id": "85",
"name": "song_page_title",
"level": 25,
"description": "Show current song in Web Player page title",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "player",
"has_access": true
},
{
"id": "69",
"name": "show_lyrics",
"level": 0,
"description": "Show lyrics",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "player",
"has_access": true
},
{
"id": "187",
"name": "show_wrapped",
"level": 25,
"description": "Enable access to your personal \"Spotify Wrapped\" from your user page",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "privacy",
"has_access": true
},
{
"id": "90",
"name": "allow_personal_info_now",
"level": 25,
"description": "Share Now Playing information",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "privacy",
"has_access": true
},
{
"id": "91",
"name": "allow_personal_info_recent",
"level": 25,
"description": "Share Recently Played information",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "privacy",
"has_access": true
},
{
"id": "93",
"name": "allow_personal_info_agent",
"level": 25,
"description": "Share Recently Played information - Allow access to streaming agent",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "privacy",
"has_access": true
},
{
"id": "92",
"name": "allow_personal_info_time",
"level": 25,
"description": "Share Recently Played information - Allow access to streaming date/time",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "privacy",
"has_access": true
},
{
"id": "51",
"name": "offset_limit",
"level": 5,
"description": "Offset Limit",
"value": "50",
"type": "integer",
"category": "interface",
"subcategory": "query",
"has_access": true
},
{
"id": "4",
"name": "popular_threshold",
"level": 25,
"description": "Popular Threshold",
"value": "10",
"type": "integer",
"category": "interface",
"subcategory": "query",
"has_access": true
},
{
"id": "47",
"name": "stats_threshold",
"level": 75,
"description": "Statistics Day Threshold",
"value": "7",
"type": "integer",
"category": "interface",
"subcategory": "query",
"has_access": true
},
{
"id": "198",
"name": "sidebar_order_browse",
"level": 25,
"description": "Custom CSS Order - Browse",
"value": "10",
"type": "integer",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "199",
"name": "sidebar_order_dashboard",
"level": 25,
"description": "Custom CSS Order - Dashboard",
"value": "15",
"type": "integer",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "203",
"name": "sidebar_order_information",
"level": 25,
"description": "Custom CSS Order - Information",
"value": "60",
"type": "integer",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "201",
"name": "sidebar_order_playlist",
"level": 25,
"description": "Custom CSS Order - Playlist",
"value": "30",
"type": "integer",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "202",
"name": "sidebar_order_search",
"level": 25,
"description": "Custom CSS Order - Search",
"value": "40",
"type": "integer",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "200",
"name": "sidebar_order_video",
"level": 25,
"description": "Custom CSS Order - Video",
"value": "20",
"type": "integer",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "188",
"name": "sidebar_hide_switcher",
"level": 25,
"description": "Hide sidebar switcher arrows",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "189",
"name": "sidebar_hide_browse",
"level": 25,
"description": "Hide the Browse menu in the sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "190",
"name": "sidebar_hide_dashboard",
"level": 25,
"description": "Hide the Dashboard menu in the sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "194",
"name": "sidebar_hide_information",
"level": 25,
"description": "Hide the Information menu in the sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "193",
"name": "sidebar_hide_playlist",
"level": 25,
"description": "Hide the Playlist menu in the sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "192",
"name": "sidebar_hide_search",
"level": 25,
"description": "Hide the Search menu in the sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "191",
"name": "sidebar_hide_video",
"level": 25,
"description": "Hide the Video menu in the sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "150",
"name": "sidebar_light",
"level": 25,
"description": "Light sidebar by default",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "172",
"name": "show_album_artist",
"level": 25,
"description": "Show 'Album Artists' link in the main sidebar",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "173",
"name": "show_artist",
"level": 25,
"description": "Show 'Artists' link in the main sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "227",
"name": "show_folder",
"level": 25,
"description": "Show 'Folders' link in the main sidebar",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "94",
"name": "ui_fixed",
"level": 25,
"description": "Fix header position on compatible themes",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "theme",
"has_access": true
},
{
"id": "109",
"name": "topmenu",
"level": 25,
"description": "Top menu",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "theme",
"has_access": true
},
{
"id": "55",
"name": "transcode",
"level": 25,
"description": "Allow Transcoding",
"value": "default",
"type": "string",
"category": "streaming",
"subcategory": "transcoding",
"has_access": true
},
{
"id": "52",
"name": "rate_limit",
"level": 100,
"description": "Rate Limit",
"value": "8192",
"type": "integer",
"category": "streaming",
"subcategory": "transcoding",
"has_access": true
},
{
"id": "19",
"name": "transcode_bitrate",
"level": 25,
"description": "Transcode Bitrate",
"value": "32",
"type": "string",
"category": "streaming",
"subcategory": "transcoding",
"has_access": true
}
]
}
}
}
}
},
"description": "Preference list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get your user preferences",
"tags": [
"Preferences"
],
"operationId": "userPreferences",
"description": "Get your user preferences"
},
"put": {
"parameters": [
{
"description": "Preference name",
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"boolean",
"integer",
"string",
"special"
],
"type": "string"
}
},
{
"description": "Default value (string or integer)",
"in": "query",
"name": "default",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "interface,internal,options,playlist,plugins,streaming",
"in": "query",
"name": "category",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "description",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "subcategory",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"user_preferences": {
"summary": "user preferences",
"value": {
"preference": [
{
"id": 123,
"name": "show_donate",
"level": 25,
"description": "Show donate button in footer",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": null,
"has_access": true
},
{
"id": 140,
"name": "notify_email",
"level": 25,
"description": "Allow E-mail notifications",
"value": "0",
"type": "boolean",
"category": "options",
"subcategory": null,
"has_access": true
},
{
"id": 110,
"name": "demo_clear_sessions",
"level": 25,
"description": "Democratic - Clear votes for expired user sessions",
"value": "0",
"type": "boolean",
"category": "playlist",
"subcategory": null,
"has_access": true
},
{
"id": 101,
"name": "stream_beautiful_url",
"level": 100,
"description": "Enable URL Rewriting",
"value": "1",
"type": "boolean",
"category": "streaming",
"subcategory": null,
"has_access": true
},
{
"id": 31,
"name": "lang",
"level": 100,
"description": "Language",
"value": "en_US",
"type": "special",
"category": "interface",
"subcategory": null,
"has_access": true,
"values": [
"en_US",
"ar_SA",
"ca_ES",
"cs_CZ",
"da_DK",
"de_CH",
"de_DE",
"el_GR",
"en_AU",
"en_GB",
"es_ES",
"fa_IR",
"fi_FI",
"fr_BE",
"fr_FR",
"gl_ES",
"he_IL",
"hi_IN",
"hu_HU",
"id_ID",
"it_IT",
"ja_JP",
"ko_KR",
"nb_NO",
"nl_NL",
"no_NO",
"pl_PL",
"pt_BR",
"ro_RO",
"ru_RU",
"sv_SE",
"tr_TR",
"uk_UA",
"vi_VN",
"zh-Hant",
"zh_CN",
"zh_SG",
"zh_TW"
]
},
{
"id": 157,
"name": "unique_playlist",
"level": 25,
"description": "Only add unique items to playlists",
"value": "",
"type": "boolean",
"category": "playlist",
"subcategory": null,
"has_access": true
},
{
"id": 183,
"name": "bookmark_latest",
"level": 25,
"description": "Only keep the latest media bookmark",
"value": "",
"type": "boolean",
"category": "options",
"subcategory": null,
"has_access": true
},
{
"id": 32,
"name": "playlist_type",
"level": 100,
"description": "Playlist Type",
"value": "m3u",
"type": "special",
"category": "playlist",
"subcategory": null,
"has_access": true,
"values": [
"simple_m3u",
"pls",
"asx",
"ram",
"xspf",
"m3u"
]
},
{
"id": 222,
"name": "show_playlist_media_parent",
"level": 25,
"description": "Show Artist column on playlist media rows",
"value": "0",
"type": "boolean",
"category": "playlist",
"subcategory": null,
"has_access": true
},
{
"id": 111,
"name": "show_donate",
"level": 25,
"description": "Show donate button in footer",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": null,
"has_access": true
},
{
"id": 211,
"name": "extended_playlist_links",
"level": 25,
"description": "Show extended links for playlist media",
"value": "0",
"type": "boolean",
"category": "playlist",
"subcategory": null,
"has_access": true
},
{
"id": 165,
"name": "api_enable_3",
"level": 25,
"description": "Allow Ampache API3 responses",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": 166,
"name": "api_enable_4",
"level": 25,
"description": "Allow Ampache API4 responses",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": 167,
"name": "api_enable_5",
"level": 25,
"description": "Allow Ampache API5 responses",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": 176,
"name": "api_enable_6",
"level": 25,
"description": "Allow Ampache API6 responses",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": 226,
"name": "api_enable_8",
"level": 25,
"description": "Allow Ampache API8 responses",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": 223,
"name": "subsonic_legacy",
"level": 25,
"description": "Enable legacy Subsonic API responses for compatibility issues",
"value": "0",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": 168,
"name": "api_force_version",
"level": 25,
"description": "Force a specific API response no matter what version you send",
"value": "0",
"type": "special",
"category": "options",
"subcategory": "api",
"has_access": true,
"values": [
0,
3,
4,
5,
6
]
},
{
"id": 224,
"name": "subsonic_force_album_artist",
"level": 25,
"description": "Force Album Artist for Subsonic API responses",
"value": "0",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": 204,
"name": "api_always_download",
"level": 25,
"description": "Force API streams to download. (Enable scrobble in your client to record stats)",
"value": "0",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": 164,
"name": "subsonic_always_download",
"level": 25,
"description": "Force Subsonic streams to download. (Enable scrobble in your client to record stats)",
"value": "0",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": 170,
"name": "api_hidden_playlists",
"level": 25,
"description": "Hide playlists in Subsonic and API clients that start with this string",
"value": "",
"type": "string",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": 171,
"name": "api_hide_dupe_searches",
"level": 25,
"description": "Hide smartlists that match playlist names in Subsonic and API clients",
"value": "0",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": 225,
"name": "subsonic_single_user_data",
"level": 25,
"description": "Use single user data for Subsonic API responses",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": 153,
"name": "libitem_browse_alpha",
"level": 75,
"description": "Alphabet browsing by default for following library items (album,artist,...)",
"value": "",
"type": "string",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": 161,
"name": "use_original_year",
"level": 25,
"description": "Browse by Original Year for albums (falls back to Year)",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": 163,
"name": "hide_genres",
"level": 25,
"description": "Hide the Genre column in browse table rows",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": 162,
"name": "hide_single_artist",
"level": 25,
"description": "Hide the Song Artist column for Albums with one Artist",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": 84,
"name": "show_played_times",
"level": 25,
"description": "Show # played",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": 154,
"name": "show_skipped_times",
"level": 25,
"description": "Show # skipped",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": 179,
"name": "show_original_year",
"level": 25,
"description": "Show Album original year on links (if available)",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": 178,
"name": "show_subtitle",
"level": 25,
"description": "Show Album subtitle on links (if available)",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": 149,
"name": "browse_filter",
"level": 25,
"description": "Show filter box on browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": 160,
"name": "show_license",
"level": 25,
"description": "Show License",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": 169,
"name": "show_playlist_username",
"level": 25,
"description": "Show playlist owner username in titles",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": 214,
"name": "browse_album_grid_view",
"level": 25,
"description": "Force Grid View on Album browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": 215,
"name": "browse_album_disk_grid_view",
"level": 25,
"description": "Force Grid View on Album Disk browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": 216,
"name": "browse_artist_grid_view",
"level": 25,
"description": "Force Grid View on Artist browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": 218,
"name": "browse_playlist_grid_view",
"level": 25,
"description": "Force Grid View on Playlist browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": 220,
"name": "browse_podcast_grid_view",
"level": 25,
"description": "Force Grid View on Podcast browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": 221,
"name": "browse_podcast_episode_grid_view",
"level": 25,
"description": "Force Grid View on Podcast Episode browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": 217,
"name": "browse_live_stream_grid_view",
"level": 25,
"description": "Force Grid View on Radio Station browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": 213,
"name": "browse_song_grid_view",
"level": 25,
"description": "Force Grid View on Song browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": 219,
"name": "browse_video_grid_view",
"level": 25,
"description": "Force Grid View on Video browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": 151,
"name": "custom_blankalbum",
"level": 75,
"description": "Custom blank album default image",
"value": "",
"type": "string",
"category": "interface",
"subcategory": "custom",
"has_access": true
},
{
"id": 155,
"name": "custom_datetime",
"level": 25,
"description": "Custom datetime",
"value": "",
"type": "string",
"category": "interface",
"subcategory": "custom",
"has_access": true
},
{
"id": 182,
"name": "custom_timezone",
"level": 25,
"description": "Custom timezone (Override PHP date.timezone)",
"value": "",
"type": "string",
"category": "interface",
"subcategory": "custom",
"has_access": true
},
{
"id": 129,
"name": "custom_logo",
"level": 25,
"description": "Custom URL - Logo",
"value": "",
"type": "string",
"category": "interface",
"subcategory": "custom",
"has_access": true
},
{
"id": 196,
"name": "custom_logo_user",
"level": 25,
"description": "Custom URL - Use your avatar for header logo",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "custom",
"has_access": true
},
{
"id": 22,
"name": "site_title",
"level": 100,
"description": "Website Title",
"value": "Ampache :: For the Love of Music",
"type": "string",
"category": "interface",
"subcategory": "custom",
"has_access": true
},
{
"id": 45,
"name": "allow_democratic_playback",
"level": 100,
"description": "Allow Democratic Play",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "feature",
"has_access": true
},
{
"id": 1,
"name": "download",
"level": 100,
"description": "Allow Downloads",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "feature",
"has_access": true
},
{
"id": 102,
"name": "share",
"level": 100,
"description": "Allow Share",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "feature",
"has_access": true
},
{
"id": 44,
"name": "allow_stream_playback",
"level": 100,
"description": "Allow Streaming",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "feature",
"has_access": true
},
{
"id": 121,
"name": "allow_video",
"level": 75,
"description": "Allow Video Features",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "feature",
"has_access": true
},
{
"id": 82,
"name": "now_playing_per_user",
"level": 50,
"description": "Now Playing filtered per user",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": 158,
"name": "of_the_moment",
"level": 25,
"description": "Set the amount of items Album/Video of the Moment will display",
"value": "",
"type": "integer",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": 125,
"name": "home_moment_albums",
"level": 25,
"description": "Show Albums of the Moment",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": 186,
"name": "home_recently_played_all",
"level": 25,
"description": "Show all media types in Recently Played",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": 128,
"name": "home_now_playing",
"level": 25,
"description": "Show Now Playing",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": 127,
"name": "home_recently_played",
"level": 25,
"description": "Show Recently Played",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": 126,
"name": "home_moment_videos",
"level": 25,
"description": "Show Videos of the Moment",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": 197,
"name": "index_dashboard_form",
"level": 25,
"description": "Use Dashboard links for the index page header",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": 83,
"name": "album_sort",
"level": 25,
"description": "Album - Default sort",
"value": "0",
"type": "string",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": 108,
"name": "album_group",
"level": 25,
"description": "Album - Group multiple disks",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": 122,
"name": "album_release_type",
"level": 25,
"description": "Album - Group per release type",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": 130,
"name": "album_release_type_sort",
"level": 25,
"description": "Album - Group per release type sort",
"value": "album,ep,live,single",
"type": "string",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": 146,
"name": "libitem_contextmenu",
"level": 0,
"description": "Library item context menu",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": 209,
"name": "external_links_bandcamp",
"level": 25,
"description": "Show Bandcamp search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": 212,
"name": "external_links_discogs",
"level": 25,
"description": "Show Discogs search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": 206,
"name": "external_links_duckduckgo",
"level": 25,
"description": "Show DuckDuckGo search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": 205,
"name": "external_links_google",
"level": 25,
"description": "Show Google search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": 208,
"name": "external_links_lastfm",
"level": 25,
"description": "Show Last.fm search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": 210,
"name": "external_links_musicbrainz",
"level": 25,
"description": "Show MusicBrainz search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": 207,
"name": "external_links_wikipedia",
"level": 25,
"description": "Show Wikipedia search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": 46,
"name": "allow_localplay_playback",
"level": 100,
"description": "Allow Localplay Play",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "localplay",
"has_access": true
},
{
"id": 40,
"name": "localplay_level",
"level": 100,
"description": "Localplay Access",
"value": "100",
"type": "special",
"category": "options",
"subcategory": "localplay",
"has_access": true,
"values": [
"0",
"5",
"25",
"50",
"75",
"100"
]
},
{
"id": 41,
"name": "localplay_controller",
"level": 100,
"description": "Localplay Type",
"value": "mpd",
"type": "special",
"category": "options",
"subcategory": "localplay",
"has_access": true,
"values": [
"httpq",
"mpd",
"upnp",
"vlc",
"xbmc"
]
},
{
"id": 131,
"name": "browser_notify",
"level": 25,
"description": "Web Player browser notifications",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "notification",
"has_access": true
},
{
"id": 132,
"name": "browser_notify_timeout",
"level": 25,
"description": "Web Player browser notifications timeout (seconds)",
"value": "10",
"type": "integer",
"category": "interface",
"subcategory": "notification",
"has_access": true
},
{
"id": 104,
"name": "slideshow_time",
"level": 25,
"description": "Artist slideshow inactivity time",
"value": "0",
"type": "integer",
"category": "interface",
"subcategory": "player",
"has_access": true
},
{
"id": 100,
"name": "webplayer_pausetabs",
"level": 25,
"description": "Auto-pause between tabs",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "player",
"has_access": true
},
{
"id": 105,
"name": "broadcast_by_default",
"level": 25,
"description": "Broadcast web player by default",
"value": "0",
"type": "boolean",
"category": "streaming",
"subcategory": "player",
"has_access": true
},
{
"id": 99,
"name": "webplayer_confirmclose",
"level": 25,
"description": "Confirmation when closing current playing window",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "player",
"has_access": true
},
{
"id": 124,
"name": "direct_play_limit",
"level": 25,
"description": "Limit direct play to maximum media count",
"value": "500",
"type": "integer",
"category": "interface",
"subcategory": "player",
"has_access": true
},
{
"id": 175,
"name": "webplayer_removeplayed",
"level": 25,
"description": "Remove tracks before the current playlist item in the webplayer when played",
"value": "0",
"type": "special",
"category": "streaming",
"subcategory": "player",
"has_access": true,
"values": [
"0",
"1",
"2",
"3",
"5",
"10",
"999"
]
},
{
"id": 85,
"name": "song_page_title",
"level": 25,
"description": "Show current song in Web Player page title",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "player",
"has_access": true
},
{
"id": 69,
"name": "show_lyrics",
"level": 0,
"description": "Show lyrics",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "player",
"has_access": true
},
{
"id": 187,
"name": "show_wrapped",
"level": 25,
"description": "Enable access to your personal \"Spotify Wrapped\" from your user page",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "privacy",
"has_access": true
},
{
"id": 90,
"name": "allow_personal_info_now",
"level": 25,
"description": "Share Now Playing information",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "privacy",
"has_access": true
},
{
"id": 91,
"name": "allow_personal_info_recent",
"level": 25,
"description": "Share Recently Played information",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "privacy",
"has_access": true
},
{
"id": 93,
"name": "allow_personal_info_agent",
"level": 25,
"description": "Share Recently Played information - Allow access to streaming agent",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "privacy",
"has_access": true
},
{
"id": 92,
"name": "allow_personal_info_time",
"level": 25,
"description": "Share Recently Played information - Allow access to streaming date/time",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "privacy",
"has_access": true
},
{
"id": 51,
"name": "offset_limit",
"level": 5,
"description": "Offset Limit",
"value": "50",
"type": "integer",
"category": "interface",
"subcategory": "query",
"has_access": true
},
{
"id": 4,
"name": "popular_threshold",
"level": 25,
"description": "Popular Threshold",
"value": "10",
"type": "integer",
"category": "interface",
"subcategory": "query",
"has_access": true
},
{
"id": 47,
"name": "stats_threshold",
"level": 75,
"description": "Statistics Day Threshold",
"value": "7",
"type": "integer",
"category": "interface",
"subcategory": "query",
"has_access": true
},
{
"id": 198,
"name": "sidebar_order_browse",
"level": 25,
"description": "Custom CSS Order - Browse",
"value": "10",
"type": "integer",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": 199,
"name": "sidebar_order_dashboard",
"level": 25,
"description": "Custom CSS Order - Dashboard",
"value": "15",
"type": "integer",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": 203,
"name": "sidebar_order_information",
"level": 25,
"description": "Custom CSS Order - Information",
"value": "60",
"type": "integer",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": 201,
"name": "sidebar_order_playlist",
"level": 25,
"description": "Custom CSS Order - Playlist",
"value": "30",
"type": "integer",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": 202,
"name": "sidebar_order_search",
"level": 25,
"description": "Custom CSS Order - Search",
"value": "40",
"type": "integer",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": 200,
"name": "sidebar_order_video",
"level": 25,
"description": "Custom CSS Order - Video",
"value": "20",
"type": "integer",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": 188,
"name": "sidebar_hide_switcher",
"level": 25,
"description": "Hide sidebar switcher arrows",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": 189,
"name": "sidebar_hide_browse",
"level": 25,
"description": "Hide the Browse menu in the sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": 190,
"name": "sidebar_hide_dashboard",
"level": 25,
"description": "Hide the Dashboard menu in the sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": 194,
"name": "sidebar_hide_information",
"level": 25,
"description": "Hide the Information menu in the sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": 193,
"name": "sidebar_hide_playlist",
"level": 25,
"description": "Hide the Playlist menu in the sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": 192,
"name": "sidebar_hide_search",
"level": 25,
"description": "Hide the Search menu in the sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": 191,
"name": "sidebar_hide_video",
"level": 25,
"description": "Hide the Video menu in the sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": 150,
"name": "sidebar_light",
"level": 25,
"description": "Light sidebar by default",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": 172,
"name": "show_album_artist",
"level": 25,
"description": "Show 'Album Artists' link in the main sidebar",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": 173,
"name": "show_artist",
"level": 25,
"description": "Show 'Artists' link in the main sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": 227,
"name": "show_folder",
"level": 25,
"description": "Show 'Folders' link in the main sidebar",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": 94,
"name": "ui_fixed",
"level": 25,
"description": "Fix header position on compatible themes",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "theme",
"has_access": true
},
{
"id": 109,
"name": "topmenu",
"level": 25,
"description": "Top menu",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "theme",
"has_access": true
},
{
"id": 55,
"name": "transcode",
"level": 25,
"description": "Allow Transcoding",
"value": "default",
"type": "string",
"category": "streaming",
"subcategory": "transcoding",
"has_access": true
},
{
"id": 52,
"name": "rate_limit",
"level": 100,
"description": "Rate Limit",
"value": "8192",
"type": "integer",
"category": "streaming",
"subcategory": "transcoding",
"has_access": true
},
{
"id": 19,
"name": "transcode_bitrate",
"level": 25,
"description": "Transcode Bitrate",
"value": "32",
"type": "string",
"category": "streaming",
"subcategory": "transcoding",
"has_access": true
}
]
}
}
}
}
},
"description": "Created"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a server preference (Admin)",
"tags": [
"Preferences"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PreferenceCreateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/PreferenceCreateRequest"
}
}
}
},
"operationId": "preferenceCreate",
"description": "Add a new preference to your server"
}
},
"/preferences/{preference_name}": {
"get": {
"parameters": [
{
"in": "path",
"name": "preference_name",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PreferenceObject"
},
"examples": {
"user_preference": {
"summary": "user preference",
"value": {
"id": "123",
"name": "show_donate",
"level": 25,
"description": "Show donate button in footer",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": null,
"has_access": true
}
}
}
}
},
"description": "Preference array"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get a user preference by name",
"tags": [
"Preferences"
],
"operationId": "userPreference",
"description": "Get your user preference by name"
},
"delete": {
"parameters": [
{
"in": "path",
"name": "preference_name",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"user_preference": {
"summary": "user preference",
"value": {
"id": "123",
"name": "show_donate",
"level": 25,
"description": "Show donate button in footer",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": null,
"has_access": true
}
}
}
}
},
"description": "Deleted"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Delete a non-system preference by name (Admin)",
"tags": [
"Preferences"
],
"operationId": "preferenceDelete",
"description": "Delete a non-system preference by name"
},
"patch": {
"parameters": [
{
"in": "path",
"name": "preference_name",
"required": true,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "value",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "Apply to all users (Admin)",
"in": "query",
"name": "all",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"description": "Set as system default (Admin)",
"in": "query",
"name": "default",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"user_preference": {
"summary": "user preference",
"value": {
"id": "123",
"name": "show_donate",
"level": 25,
"description": "Show donate button in footer",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": null,
"has_access": true
}
}
}
}
},
"description": "Updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Edit a preference value",
"tags": [
"Preferences"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PreferenceEditRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/PreferenceEditRequest"
}
}
}
},
"operationId": "preferenceEdit",
"description": "Edit a preference value and apply to all users if allowed"
}
},
"/random": {
"get": {
"parameters": [
{
"description": "Object type to pick a random item from (default: song). `artist` accepts either artist credit; `song_artist` and `album_artist` narrow it to one",
"in": "query",
"name": "type",
"required": false,
"schema": {
"default": "song",
"enum": [
"album",
"album_artist",
"album_disk",
"artist",
"catalog",
"favorite",
"genre",
"label",
"playlist",
"podcast_episode",
"rating",
"search",
"song",
"song_artist",
"video"
],
"type": "string"
}
},
{
"description": "Parent object id to pick from. It is read against the table named by `type`, and those id spaces overlap, so an album id and an album_disk id of the same number are different objects. `favorite` reads it as 1 (or omitted) for flagged and 0 for not flagged; `rating` as 1-5 for that many stars or more, 0 for unrated, omitted for any rated song",
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "Max bitrate for transcoding in bits per second (e.g 192000 = 192Kb). Song only",
"in": "query",
"name": "bitrate",
"required": false,
"schema": {
"type": "integer"
}
},
{
"description": "Target stream format e.g. 'mp3', 'ogg'; use 'raw' to skip transcoding. Song only",
"in": "query",
"name": "format",
"required": false,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"description": "If 0, disable stat recording when playing the object (default: 1)",
"in": "query",
"name": "stats",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"302": {
"description": "Redirect to the stream url of the randomly picked object",
"headers": {
"Location": {
"description": "Stream url of the random media object",
"schema": {
"type": "string"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Pick a random song, podcast episode or video and redirect (302) to its stream url",
"tags": [
"Streaming and Downloads"
],
"operationId": "random",
"description": "Picks a random song, podcast episode or video from the whole library and redirects (302) to its stream url. **Ampache 8.0.0+**"
}
},
"/register": {
"post": {
"description": "Does not use authentication. Requires username, password and email.",
"parameters": [
{
"in": "query",
"name": "username",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "hash('sha256', password) Deprecated: for privacy, send this in a form or JSON request body instead of the query string (query values land in server/proxy logs and browser history). Query-string support is retained for backward compatibility.",
"in": "query",
"name": "password",
"required": false,
"schema": {
"type": "string"
},
"deprecated": true
},
{
"in": "query",
"name": "email",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "fullname",
"required": false,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RegisterRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/RegisterRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "register",
"value": {
"success": "Please wait for an administrator to activate your account"
}
}
}
},
"application/xml": {
"schema": {
"type": "string"
}
}
},
"description": "Success or error"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"security": [
{}
],
"summary": "Register as a new user (if allowed)",
"tags": [
"Authentication"
],
"operationId": "register"
}
},
"/scrobble": {
"post": {
"parameters": [
{
"in": "query",
"name": "song",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "artist",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "album",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "songmbid",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "artistmbid",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "albummbid",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "date",
"required": false,
"schema": {
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Client"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "scrobble",
"value": {
"success": "successfully scrobbled: 57"
}
}
}
}
},
"description": "Recorded"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Find a song by metadata and record a play if found",
"tags": [
"Now Playing"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ScrobbleRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/ScrobbleRequest"
}
}
}
},
"operationId": "scrobble",
"description": "Search for a song using text info and then record a play if found. This allows other sources to record play history to ampache"
}
},
"/search/{search_type}/groups": {
"get": {
"parameters": [
{
"in": "path",
"name": "search_type",
"required": true,
"schema": {
"enum": [
"all",
"music",
"song_artist",
"album_artist",
"podcast",
"video"
],
"type": "string"
}
},
{
"$ref": "#/components/parameters/Operator"
},
{
"in": "query",
"name": "random",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Rule1"
},
{
"$ref": "#/components/parameters/Rule1Operator"
},
{
"$ref": "#/components/parameters/Rule1Input"
},
{
"description": "Metadata searches only",
"in": "query",
"name": "rule_1_subtype",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SearchGroupResponse"
},
"examples": {
"search_group_all": {
"summary": "search group (all)",
"value": {
"search": {
"album_artist": [
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found.",
"albums": [],
"albumcount": 1,
"songs": [],
"songcount": 11,
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"art": "https://music.com.au/image.php?object_id=14&object_type=artist&name=art.jpg",
"has_art": false,
"flag": false,
"rating": 2,
"averagerating": null,
"mbid": null,
"summary": "Nofi/found. is the work of Jeffrey Melton released prior to 2005. From the website:\nNofi is neither hi-fi nor lo-fi, but a state of being-without-boundaries (i.e. ’stateless’). ",
"time": 4423,
"yearformed": 0,
"placeformed": null
}
],
"album": [
{
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea",
"artist": {
"id": "19",
"name": "Various Artists",
"prefix": null,
"basename": "Various Artists"
},
"artists": [
{
"id": "19",
"name": "Various Artists",
"prefix": null,
"basename": "Various Artists"
}
],
"songartists": [
{
"id": "20",
"name": "R/B",
"prefix": null,
"basename": "R/B"
},
{
"id": "21",
"name": "Tip-C (featuring Mike Beers)",
"prefix": null,
"basename": "Tip-C (featuring Mike Beers)"
},
{
"id": "23",
"name": "Manic Notion",
"prefix": null,
"basename": "Manic Notion"
},
{
"id": "26",
"name": "Stress Builds Character",
"prefix": null,
"basename": "Stress Builds Character"
},
{
"id": "27",
"name": "Chi.Otic",
"prefix": null,
"basename": "Chi.Otic"
},
{
"id": "32",
"name": "Shorty Mac",
"prefix": null,
"basename": "Shorty Mac"
},
{
"id": "33",
"name": "MxBxCx",
"prefix": null,
"basename": "MxBxCx"
},
{
"id": "34",
"name": "Comedown Kid",
"prefix": null,
"basename": "Comedown Kid"
},
{
"id": "35",
"name": "Tip-C",
"prefix": null,
"basename": "Tip-C"
}
],
"time": 1879,
"year": 2012,
"tracks": [],
"songcount": 9,
"diskcount": 1,
"type": "compilation",
"genre": [
{
"id": "7",
"name": "Punk"
}
],
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": null,
"mbid_group": null,
"catalog": "1"
},
{
"id": "10",
"name": "CARNÚN - MALKUTH (Demo 1996)",
"prefix": null,
"basename": "CARNÚN - MALKUTH (Demo 1996)",
"artist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"artists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"songartists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"time": 3873,
"year": 1996,
"tracks": [],
"songcount": 9,
"diskcount": 1,
"type": null,
"genre": [],
"art": "https://music.com.au/image.php?object_id=10&object_type=album&id=63&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": null,
"mbid_group": null,
"catalog": "1"
},
{
"id": "21",
"name": "Forget and Remember",
"prefix": null,
"basename": "Forget and Remember",
"artist": {
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
},
"artists": [
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
}
],
"songartists": [
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
}
],
"time": 4248,
"year": 2005,
"tracks": [],
"songcount": 20,
"diskcount": 1,
"type": "album",
"genre": [
{
"id": "8",
"name": "Hip-Hop"
}
],
"art": "https://music.com.au/image.php?object_id=21&object_type=album&id=435&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": "6e1d48f7-717c-416e-af35-5d2454a13af2",
"mbid_group": "1501fe8a-f060-3b6f-8cb0-7babfc65192a",
"catalog": "4"
},
{
"id": "8",
"name": "Nofi Devices",
"prefix": null,
"basename": "Nofi Devices",
"artist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"artists": [
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
}
],
"songartists": [
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
}
],
"time": 4423,
"year": 0,
"tracks": [],
"songcount": 11,
"diskcount": 1,
"type": null,
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"art": "https://music.com.au/image.php?object_id=8&object_type=album&id=450&name=art.jpg",
"has_art": true,
"flag": false,
"rating": 2,
"averagerating": null,
"mbid": null,
"mbid_group": null,
"catalog": "1"
}
],
"artist": [
{
"id": "34",
"name": "Comedown Kid",
"prefix": null,
"basename": "Comedown Kid",
"albums": [],
"albumcount": 0,
"songs": [],
"songcount": 1,
"genre": [],
"art": "https://music.com.au/image.php?object_id=34&object_type=artist&id=288&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": null,
"summary": null,
"time": 116,
"yearformed": 0,
"placeformed": null
},
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found.",
"albums": [],
"albumcount": 1,
"songs": [],
"songcount": 11,
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"art": "https://music.com.au/image.php?object_id=14&object_type=artist&name=art.jpg",
"has_art": false,
"flag": false,
"rating": 2,
"averagerating": null,
"mbid": null,
"summary": "Nofi/found. is the work of Jeffrey Melton released prior to 2005. From the website:\nNofi is neither hi-fi nor lo-fi, but a state of being-without-boundaries (i.e. ’stateless’). ",
"time": 4423,
"yearformed": 0,
"placeformed": null
},
{
"id": "26",
"name": "Stress Builds Character",
"prefix": null,
"basename": "Stress Builds Character",
"albums": [],
"albumcount": 0,
"songs": [],
"songcount": 1,
"genre": [],
"art": "https://music.com.au/image.php?object_id=26&object_type=artist&id=341&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": null,
"summary": "There are 2 artists with this name:\n1) A crust band\n2) A hardcore band from Toronto\n\n1) Started as \"Hands That Mold\" later changed to \"Stress Builds Character\". We play grindy, sludgy, crusty, melodic, apocalyptic punk with a twist of power violence. We had a few practices, got a new 2nd vocalist (after Teagan left) and recorded our original demo. Joe was one of the lead vocalists for the first 4 shows and original demo until right after the 4th show when he left the band. ",
"time": 233,
"yearformed": 0,
"placeformed": null
}
],
"genre": [
{
"id": "6",
"name": "Dance",
"albums": 1,
"artists": 1,
"songs": 11,
"videos": 0,
"playlists": 0,
"live_streams": 0,
"is_hidden": false,
"merge": []
},
{
"id": "4",
"name": "Dark Ambient",
"albums": 1,
"artists": 1,
"songs": 4,
"videos": 0,
"playlists": 0,
"live_streams": 0,
"is_hidden": false,
"merge": []
}
],
"label": [
{
"id": "3",
"name": "DNA Production",
"artists": 1,
"summary": null,
"external_link": "https://music.com.au/labels.php?action=show&label=3",
"address": null,
"category": "tag_generated",
"email": null,
"website": null,
"user": "4"
},
{
"id": "4",
"name": "Tokyo Dawn Records",
"artists": 1,
"summary": null,
"external_link": "https://music.com.au/labels.php?action=show&label=4",
"address": null,
"category": "tag_generated",
"email": null,
"website": null,
"user": ""
}
],
"playlist": [
{
"id": "65",
"name": "Nofi",
"owner": "user",
"user": {
"id": "4",
"username": "user"
},
"items": 11,
"type": "public",
"art": "https://music.com.au/image.php?object_id=65&object_type=playlist&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 1751265759,
"time": 4423
},
{
"id": "3",
"name": "random - admin - private (admin)",
"owner": "admin",
"user": {
"id": "2",
"username": "admin"
},
"items": 43,
"type": "private",
"art": "https://music.com.au/image.php?object_id=3&object_type=playlist&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 1614054938,
"time": 19721
},
{
"id": "2",
"name": "random - admin - public (admin)",
"owner": "admin",
"user": {
"id": "2",
"username": "admin"
},
"items": 43,
"type": "public",
"art": "https://music.com.au/image.php?object_id=2&object_type=playlist&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": true,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 1614054896,
"time": 19632
},
{
"id": "4",
"name": "random - user - private",
"owner": "user",
"user": {
"id": "4",
"username": "user"
},
"items": 43,
"type": "private",
"art": "https://music.com.au/image.php?object_id=4&object_type=playlist&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 1614054938,
"time": 19721
}
],
"podcast_episode": [
{
"id": "82857",
"title": "Ebola update, World Cup heat risks, dad brains",
"name": "Ebola update, World Cup heat risks, dad brains",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode of Science Quickly, we start with a quick update on the Ebola outbreak surging in parts of Africa. Host Rachel Feltman is then joined by Scientific American’s senior desk editor for life science Andrea Thompson to discuss what rising temperatures mean for the FIFA World Cup currently underway in North America. And finally, in honor of Father’s Day, SciAm’s senior desk editor for health and medicine Tanya Lewis gives us a glimpse into the often overlooked science of how fatherhood changes the brain.\n\n\n\nRecommended Reading:\n\n\n\nJust how big is the new Ebola outbreak?\n\n\n\nThe World Cup is battling extreme heat. Which cooling methods really work?\n\n\n\nThe Science of the 2026 World Cup\n\n\n\nHow becoming a dad changes men’s brains\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-22T09:50:00+00:00",
"state": "completed",
"filelength": "00:12:25",
"filesize": "17.33 MB",
"filename": "60-Second Science - Ebola update, World Cup heat risks, dad brains.mp3",
"mime": "audio/mpeg",
"time": 745,
"size": 18170164,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82857",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82857&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20Ebola%20update-%20World%20Cup%20heat%20risks-%20dad%20brains.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
},
{
"id": "82858",
"title": "How common viruses could quietly raise your cancer risk",
"name": "How common viruses could quietly raise your cancer risk",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode of Science Quickly, one of SciAm’s Young American Scientists, biologist Jaye Gardiner, explores how common viral infections may raise cancer risk—not just through genetic mutations but by reshaping the body’s “extracellular matrix” of molecules that support cells and tissues. She explains how viruses can alter the extracellular matrix, potentially creating conditions that allow tumors to grow, and why this emerging view could change how we think about everything from colds to long COVID.\n\n\n\nRecommended Reading:\n\nJaye Gardiner’s Young American Scientists profile\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\n\n\n\nThis episode is part of “The Young American Scientists,” an editorially independent project that was produced with financial support from Regeneron. \nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-19T09:50:00+00:00",
"state": "completed",
"filelength": "00:14:49",
"filesize": "20.62 MB",
"filename": "60-Second Science - How common viruses could quietly raise your cancer risk.mp3",
"mime": "audio/mpeg",
"time": 889,
"size": 21621015,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82858",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82858&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20How%20common%20viruses%20could%20quietly%20raise%20your%20cancer%20risk.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
},
{
"id": "82859",
"title": "The neuroscientist decoding how the brain learns",
"name": "The neuroscientist decoding how the brain learns",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode, host Rachel Feltman interviews neuroscientist Kauê M. Costa, who is among Scientific American’s inaugural cohort of Young American Scientists honorees. Costa shares how being surprised by experiments has led him to new ways of thinking about learning in the brain. He explains how dopamine does more than signal reward, how there are two big frameworks of how the brain learns and how his findings could help us better understand—and treat—mental illness.\n\n\n\nRecommended Reading:\n\n\n\nThe Young American Scientists\n\n\n\nKauê M. Costa’s Young American Scientists profile\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Aaron Shattuck. Our theme music was composed by Dominic Smith.\n\n\n\nThis episode is part of “The Young American Scientists,” an editorially independent project that was produced with financial support from Regeneron.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-17T09:50:00+00:00",
"state": "completed",
"filelength": "00:18:38",
"filesize": "25.85 MB",
"filename": "60-Second Science - The neuroscientist decoding how the brain learns.mp3",
"mime": "audio/mpeg",
"time": 1118,
"size": 27104993,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82859",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82859&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20The%20neuroscientist%20decoding%20how%20the%20brain%20learns.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
},
{
"id": "82861",
"title": "Disclosure Day and the science of alien language",
"name": "Disclosure Day and the science of alien language",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In the new movie Disclosure Day, aliens communicate through a series of strange clicks and pops. But what could an alien language actually be like? In this episode of Science Quickly, host Rachel Feltman puts that question to linguist Jeffrey Punske. We explore why fictional aliens in Hollywood and beyond tend to sound the way they do, what real human languages can teach us about communication and why math could be humanity’s best shot at first contact.\n\n\n\nRecommended Reading:\n\n\n\nSteven Spielberg shares his favorite sci-fi story ever\n\n\n\nWhat Disclosure Day gets wrong about the search for aliens\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-12T09:50:00+00:00",
"state": "completed",
"filelength": "00:15:03",
"filesize": "20.92 MB",
"filename": "60-Second Science - Disclosure Day and the science of alien language.mp3",
"mime": "audio/mpeg",
"time": 903,
"size": 21940757,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82861",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82861&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20Disclosure%20Day%20and%20the%20science%20of%20alien%20language.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
}
],
"podcast": [
{
"id": "1",
"name": "60-Second Science",
"description": "Tune in every weekday for quick reports and commentaries on the world of science—it'll just take a minute",
"language": "en-us",
"copyright": "False",
"feed_url": "http://rss.sciam.com/sciam/60secsciencepodcast",
"generator": "",
"website": "https://www.scientificamerican.com/podcast/60-second-science/",
"build_date": "1970-01-01T00:00:00+00:00",
"sync_date": "2022-08-17T05:07:11+00:00",
"public_url": "https://music.com.au/podcast.php?action=show&podcast=1",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"catalog": "3",
"podcast_episode": []
}
],
"song_artist": [
{
"id": "34",
"name": "Comedown Kid",
"prefix": null,
"basename": "Comedown Kid",
"albums": [],
"albumcount": 0,
"songs": [],
"songcount": 1,
"genre": [],
"art": "https://music.com.au/image.php?object_id=34&object_type=artist&id=288&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": null,
"summary": null,
"time": 116,
"yearformed": 0,
"placeformed": null
},
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found.",
"albums": [],
"albumcount": 1,
"songs": [],
"songcount": 11,
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"art": "https://music.com.au/image.php?object_id=14&object_type=artist&name=art.jpg",
"has_art": false,
"flag": false,
"rating": 2,
"averagerating": null,
"mbid": null,
"summary": "Nofi/found. is the work of Jeffrey Melton released prior to 2005. From the website:\nNofi is neither hi-fi nor lo-fi, but a state of being-without-boundaries (i.e. ’stateless’). ",
"time": 4423,
"yearformed": 0,
"placeformed": null
},
{
"id": "26",
"name": "Stress Builds Character",
"prefix": null,
"basename": "Stress Builds Character",
"albums": [],
"albumcount": 0,
"songs": [],
"songcount": 1,
"genre": [],
"art": "https://music.com.au/image.php?object_id=26&object_type=artist&id=341&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": null,
"summary": "There are 2 artists with this name:\n1) A crust band\n2) A hardcore band from Toronto\n\n1) Started as \"Hands That Mold\" later changed to \"Stress Builds Character\". We play grindy, sludgy, crusty, melodic, apocalyptic punk with a twist of power violence. We had a few practices, got a new 2nd vocalist (after Teagan left) and recorded our original demo. Joe was one of the lead vocalists for the first 4 shows and original demo until right after the 4th show when he left the band. ",
"time": 233,
"yearformed": 0,
"placeformed": null
}
],
"song": [
{
"id": "100",
"title": "The Prophecies Of The Horned One",
"name": "The Prophecies Of The Horned One",
"artist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"artists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"album": {
"id": "10",
"name": "CARNÚN - MALKUTH (Demo 1996)",
"prefix": null,
"basename": "CARNÚN - MALKUTH (Demo 1996)"
},
"albumartist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"disk": 1,
"disksubtitle": null,
"track": 2,
"filename": "/mnt/files-music/ampache-test/music/Carnún/Malkuth (Demo1996)/02ThePropheciesOfTheHornedOne.ogg",
"genre": [],
"playlisttrack": 1,
"time": 378,
"year": 1996,
"format": "ogg",
"stream_format": "mp3",
"bitrate": 89965,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "application/ogg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=100&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=CARN-N%20-%20The%20Prophecies%20Of%20The%20Horned%20One.mp3",
"size": 4265791,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=10&object_type=album&id=63&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "Visit http://irish-metal.bandcamp.com;http://archive.org/details/Carnn_-_Malkuth_Demo1996",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -10.51,
"replaygain_track_peak": 1,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "98",
"title": "In The Seven Woods",
"name": "In The Seven Woods",
"artist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"artists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"album": {
"id": "10",
"name": "CARNÚN - MALKUTH (Demo 1996)",
"prefix": null,
"basename": "CARNÚN - MALKUTH (Demo 1996)"
},
"albumartist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"disk": 1,
"disksubtitle": null,
"track": 3,
"filename": "/mnt/files-music/ampache-test/music/Carnún/Malkuth (Demo1996)/03InTheSevenWoods.ogg",
"genre": [],
"playlisttrack": 2,
"time": 420,
"year": 1996,
"format": "ogg",
"stream_format": "mp3",
"bitrate": 84423,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "application/ogg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=98&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=CARN-N%20-%20In%20The%20Seven%20Woods.mp3",
"size": 4444403,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=10&object_type=album&id=63&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "Visit http://irish-metal.bandcamp.com;http://archive.org/details/Carnn_-_Malkuth_Demo1996",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -9.7,
"replaygain_track_peak": 1,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "99",
"title": "The Prophecies Of The Horned One (Instrumental Re-Recording)",
"name": "The Prophecies Of The Horned One (Instrumental Re-Recording)",
"artist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"artists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"album": {
"id": "10",
"name": "CARNÚN - MALKUTH (Demo 1996)",
"prefix": null,
"basename": "CARNÚN - MALKUTH (Demo 1996)"
},
"albumartist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"disk": 1,
"disksubtitle": null,
"track": 6,
"filename": "/mnt/files-music/ampache-test/music/Carnún/Malkuth (Demo1996)/06ThePropheciesOfTheHornedOne_InstrumentalReRecording.ogg",
"genre": [],
"playlisttrack": 3,
"time": 427,
"year": 1996,
"format": "ogg",
"stream_format": "mp3",
"bitrate": 143788,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "application/ogg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=99&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=CARN-N%20-%20The%20Prophecies%20Of%20The%20Horned%20One%20-Instrumental%20Re-Recording-.mp3",
"size": 7696008,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=10&object_type=album&id=63&name=art.jpg",
"has_art": true,
"flag": false,
"rating": 5,
"averagerating": null,
"playcount": 2,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "Visit http://irish-metal.bandcamp.com;http://archive.org/details/Carnn_-_Malkuth_Demo1996",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -12.66,
"replaygain_track_peak": 1,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "103",
"title": "In The Seven Woods (Instrumental Re-Recording)",
"name": "In The Seven Woods (Instrumental Re-Recording)",
"artist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"artists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"album": {
"id": "10",
"name": "CARNÚN - MALKUTH (Demo 1996)",
"prefix": null,
"basename": "CARNÚN - MALKUTH (Demo 1996)"
},
"albumartist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"disk": 1,
"disksubtitle": null,
"track": 7,
"filename": "/mnt/files-music/ampache-test/music/Carnún/Malkuth (Demo1996)/07InTheSevenWoods_InstrumentalReRecording.ogg",
"genre": [],
"playlisttrack": 4,
"time": 452,
"year": 1996,
"format": "ogg",
"stream_format": "mp3",
"bitrate": 138338,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "application/ogg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=103&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=CARN-N%20-%20In%20The%20Seven%20Woods%20-Instrumental%20Re-Recording-.mp3",
"size": 7826238,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=10&object_type=album&id=63&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "Visit http://irish-metal.bandcamp.com;http://archive.org/details/Carnn_-_Malkuth_Demo1996",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -12.21,
"replaygain_track_peak": 1,
"r128_album_gain": null,
"r128_track_gain": null
}
],
"user": [
{
"id": "2",
"username": "admin"
},
{
"id": "3",
"username": "demo"
},
{
"id": "4",
"username": "user"
}
]
}
}
},
"search_group_music": {
"summary": "search group (music)",
"value": {
"search": {
"album": [
{
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea",
"artist": {
"id": "19",
"name": "Various Artists",
"prefix": null,
"basename": "Various Artists"
},
"artists": [
{
"id": "19",
"name": "Various Artists",
"prefix": null,
"basename": "Various Artists"
}
],
"songartists": [
{
"id": "20",
"name": "R/B",
"prefix": null,
"basename": "R/B"
},
{
"id": "21",
"name": "Tip-C (featuring Mike Beers)",
"prefix": null,
"basename": "Tip-C (featuring Mike Beers)"
},
{
"id": "23",
"name": "Manic Notion",
"prefix": null,
"basename": "Manic Notion"
},
{
"id": "26",
"name": "Stress Builds Character",
"prefix": null,
"basename": "Stress Builds Character"
},
{
"id": "27",
"name": "Chi.Otic",
"prefix": null,
"basename": "Chi.Otic"
},
{
"id": "32",
"name": "Shorty Mac",
"prefix": null,
"basename": "Shorty Mac"
},
{
"id": "33",
"name": "MxBxCx",
"prefix": null,
"basename": "MxBxCx"
},
{
"id": "34",
"name": "Comedown Kid",
"prefix": null,
"basename": "Comedown Kid"
},
{
"id": "35",
"name": "Tip-C",
"prefix": null,
"basename": "Tip-C"
}
],
"time": 1879,
"year": 2012,
"tracks": [],
"songcount": 9,
"diskcount": 1,
"type": "compilation",
"genre": [
{
"id": "7",
"name": "Punk"
}
],
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": null,
"mbid_group": null,
"catalog": "1"
},
{
"id": "10",
"name": "CARNÚN - MALKUTH (Demo 1996)",
"prefix": null,
"basename": "CARNÚN - MALKUTH (Demo 1996)",
"artist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"artists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"songartists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"time": 3873,
"year": 1996,
"tracks": [],
"songcount": 9,
"diskcount": 1,
"type": null,
"genre": [],
"art": "https://music.com.au/image.php?object_id=10&object_type=album&id=63&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": null,
"mbid_group": null,
"catalog": "1"
},
{
"id": "21",
"name": "Forget and Remember",
"prefix": null,
"basename": "Forget and Remember",
"artist": {
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
},
"artists": [
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
}
],
"songartists": [
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
}
],
"time": 4248,
"year": 2005,
"tracks": [],
"songcount": 20,
"diskcount": 1,
"type": "album",
"genre": [
{
"id": "8",
"name": "Hip-Hop"
}
],
"art": "https://music.com.au/image.php?object_id=21&object_type=album&id=435&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": "6e1d48f7-717c-416e-af35-5d2454a13af2",
"mbid_group": "1501fe8a-f060-3b6f-8cb0-7babfc65192a",
"catalog": "4"
},
{
"id": "8",
"name": "Nofi Devices",
"prefix": null,
"basename": "Nofi Devices",
"artist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"artists": [
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
}
],
"songartists": [
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
}
],
"time": 4423,
"year": 0,
"tracks": [],
"songcount": 11,
"diskcount": 1,
"type": null,
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"art": "https://music.com.au/image.php?object_id=8&object_type=album&id=450&name=art.jpg",
"has_art": true,
"flag": false,
"rating": 2,
"averagerating": null,
"mbid": null,
"mbid_group": null,
"catalog": "1"
}
],
"artist": [
{
"id": "34",
"name": "Comedown Kid",
"prefix": null,
"basename": "Comedown Kid",
"albums": [],
"albumcount": 0,
"songs": [],
"songcount": 1,
"genre": [],
"art": "https://music.com.au/image.php?object_id=34&object_type=artist&id=288&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": null,
"summary": null,
"time": 116,
"yearformed": 0,
"placeformed": null
},
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found.",
"albums": [],
"albumcount": 1,
"songs": [],
"songcount": 11,
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"art": "https://music.com.au/image.php?object_id=14&object_type=artist&name=art.jpg",
"has_art": false,
"flag": false,
"rating": 2,
"averagerating": null,
"mbid": null,
"summary": "Nofi/found. is the work of Jeffrey Melton released prior to 2005. From the website:\nNofi is neither hi-fi nor lo-fi, but a state of being-without-boundaries (i.e. ’stateless’). ",
"time": 4423,
"yearformed": 0,
"placeformed": null
},
{
"id": "26",
"name": "Stress Builds Character",
"prefix": null,
"basename": "Stress Builds Character",
"albums": [],
"albumcount": 0,
"songs": [],
"songcount": 1,
"genre": [],
"art": "https://music.com.au/image.php?object_id=26&object_type=artist&id=341&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"mbid": null,
"summary": "There are 2 artists with this name:\n1) A crust band\n2) A hardcore band from Toronto\n\n1) Started as \"Hands That Mold\" later changed to \"Stress Builds Character\". We play grindy, sludgy, crusty, melodic, apocalyptic punk with a twist of power violence. We had a few practices, got a new 2nd vocalist (after Teagan left) and recorded our original demo. Joe was one of the lead vocalists for the first 4 shows and original demo until right after the 4th show when he left the band. ",
"time": 233,
"yearformed": 0,
"placeformed": null
}
],
"song": [
{
"id": "100",
"title": "The Prophecies Of The Horned One",
"name": "The Prophecies Of The Horned One",
"artist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"artists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"album": {
"id": "10",
"name": "CARNÚN - MALKUTH (Demo 1996)",
"prefix": null,
"basename": "CARNÚN - MALKUTH (Demo 1996)"
},
"albumartist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"disk": 1,
"disksubtitle": null,
"track": 2,
"filename": "/mnt/files-music/ampache-test/music/Carnún/Malkuth (Demo1996)/02ThePropheciesOfTheHornedOne.ogg",
"genre": [],
"playlisttrack": 1,
"time": 378,
"year": 1996,
"format": "ogg",
"stream_format": "mp3",
"bitrate": 89965,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "application/ogg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=100&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=CARN-N%20-%20The%20Prophecies%20Of%20The%20Horned%20One.mp3",
"size": 4265791,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=10&object_type=album&id=63&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "Visit http://irish-metal.bandcamp.com;http://archive.org/details/Carnn_-_Malkuth_Demo1996",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -10.51,
"replaygain_track_peak": 1,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "98",
"title": "In The Seven Woods",
"name": "In The Seven Woods",
"artist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"artists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"album": {
"id": "10",
"name": "CARNÚN - MALKUTH (Demo 1996)",
"prefix": null,
"basename": "CARNÚN - MALKUTH (Demo 1996)"
},
"albumartist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"disk": 1,
"disksubtitle": null,
"track": 3,
"filename": "/mnt/files-music/ampache-test/music/Carnún/Malkuth (Demo1996)/03InTheSevenWoods.ogg",
"genre": [],
"playlisttrack": 2,
"time": 420,
"year": 1996,
"format": "ogg",
"stream_format": "mp3",
"bitrate": 84423,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "application/ogg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=98&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=CARN-N%20-%20In%20The%20Seven%20Woods.mp3",
"size": 4444403,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=10&object_type=album&id=63&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "Visit http://irish-metal.bandcamp.com;http://archive.org/details/Carnn_-_Malkuth_Demo1996",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -9.7,
"replaygain_track_peak": 1,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "99",
"title": "The Prophecies Of The Horned One (Instrumental Re-Recording)",
"name": "The Prophecies Of The Horned One (Instrumental Re-Recording)",
"artist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"artists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"album": {
"id": "10",
"name": "CARNÚN - MALKUTH (Demo 1996)",
"prefix": null,
"basename": "CARNÚN - MALKUTH (Demo 1996)"
},
"albumartist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"disk": 1,
"disksubtitle": null,
"track": 6,
"filename": "/mnt/files-music/ampache-test/music/Carnún/Malkuth (Demo1996)/06ThePropheciesOfTheHornedOne_InstrumentalReRecording.ogg",
"genre": [],
"playlisttrack": 3,
"time": 427,
"year": 1996,
"format": "ogg",
"stream_format": "mp3",
"bitrate": 143788,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "application/ogg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=99&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=CARN-N%20-%20The%20Prophecies%20Of%20The%20Horned%20One%20-Instrumental%20Re-Recording-.mp3",
"size": 7696008,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=10&object_type=album&id=63&name=art.jpg",
"has_art": true,
"flag": false,
"rating": 5,
"averagerating": null,
"playcount": 2,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "Visit http://irish-metal.bandcamp.com;http://archive.org/details/Carnn_-_Malkuth_Demo1996",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -12.66,
"replaygain_track_peak": 1,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "103",
"title": "In The Seven Woods (Instrumental Re-Recording)",
"name": "In The Seven Woods (Instrumental Re-Recording)",
"artist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"artists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"album": {
"id": "10",
"name": "CARNÚN - MALKUTH (Demo 1996)",
"prefix": null,
"basename": "CARNÚN - MALKUTH (Demo 1996)"
},
"albumartist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"disk": 1,
"disksubtitle": null,
"track": 7,
"filename": "/mnt/files-music/ampache-test/music/Carnún/Malkuth (Demo1996)/07InTheSevenWoods_InstrumentalReRecording.ogg",
"genre": [],
"playlisttrack": 4,
"time": 452,
"year": 1996,
"format": "ogg",
"stream_format": "mp3",
"bitrate": 138338,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "application/ogg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=103&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=CARN-N%20-%20In%20The%20Seven%20Woods%20-Instrumental%20Re-Recording-.mp3",
"size": 7826238,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=10&object_type=album&id=63&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "Visit http://irish-metal.bandcamp.com;http://archive.org/details/Carnn_-_Malkuth_Demo1996",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -12.21,
"replaygain_track_peak": 1,
"r128_album_gain": null,
"r128_track_gain": null
}
]
}
}
},
"search_group_podcast": {
"summary": "search group (podcast)",
"value": {
"search": {
"podcast": [
{
"id": "1",
"name": "60-Second Science",
"description": "Tune in every weekday for quick reports and commentaries on the world of science—it'll just take a minute",
"language": "en-us",
"copyright": "False",
"feed_url": "http://rss.sciam.com/sciam/60secsciencepodcast",
"generator": "",
"website": "https://www.scientificamerican.com/podcast/60-second-science/",
"build_date": "1970-01-01T00:00:00+00:00",
"sync_date": "2022-08-17T05:07:11+00:00",
"public_url": "https://music.com.au/podcast.php?action=show&podcast=1",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"catalog": "3",
"podcast_episode": []
}
],
"podcast_episode": [
{
"id": "82857",
"title": "Ebola update, World Cup heat risks, dad brains",
"name": "Ebola update, World Cup heat risks, dad brains",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode of Science Quickly, we start with a quick update on the Ebola outbreak surging in parts of Africa. Host Rachel Feltman is then joined by Scientific American’s senior desk editor for life science Andrea Thompson to discuss what rising temperatures mean for the FIFA World Cup currently underway in North America. And finally, in honor of Father’s Day, SciAm’s senior desk editor for health and medicine Tanya Lewis gives us a glimpse into the often overlooked science of how fatherhood changes the brain.\n\n\n\nRecommended Reading:\n\n\n\nJust how big is the new Ebola outbreak?\n\n\n\nThe World Cup is battling extreme heat. Which cooling methods really work?\n\n\n\nThe Science of the 2026 World Cup\n\n\n\nHow becoming a dad changes men’s brains\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-22T09:50:00+00:00",
"state": "completed",
"filelength": "00:12:25",
"filesize": "17.33 MB",
"filename": "60-Second Science - Ebola update, World Cup heat risks, dad brains.mp3",
"mime": "audio/mpeg",
"time": 745,
"size": 18170164,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82857",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82857&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20Ebola%20update-%20World%20Cup%20heat%20risks-%20dad%20brains.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
},
{
"id": "82858",
"title": "How common viruses could quietly raise your cancer risk",
"name": "How common viruses could quietly raise your cancer risk",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode of Science Quickly, one of SciAm’s Young American Scientists, biologist Jaye Gardiner, explores how common viral infections may raise cancer risk—not just through genetic mutations but by reshaping the body’s “extracellular matrix” of molecules that support cells and tissues. She explains how viruses can alter the extracellular matrix, potentially creating conditions that allow tumors to grow, and why this emerging view could change how we think about everything from colds to long COVID.\n\n\n\nRecommended Reading:\n\nJaye Gardiner’s Young American Scientists profile\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\n\n\n\nThis episode is part of “The Young American Scientists,” an editorially independent project that was produced with financial support from Regeneron. \nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-19T09:50:00+00:00",
"state": "completed",
"filelength": "00:14:49",
"filesize": "20.62 MB",
"filename": "60-Second Science - How common viruses could quietly raise your cancer risk.mp3",
"mime": "audio/mpeg",
"time": 889,
"size": 21621015,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82858",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82858&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20How%20common%20viruses%20could%20quietly%20raise%20your%20cancer%20risk.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
},
{
"id": "82859",
"title": "The neuroscientist decoding how the brain learns",
"name": "The neuroscientist decoding how the brain learns",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In this episode, host Rachel Feltman interviews neuroscientist Kauê M. Costa, who is among Scientific American’s inaugural cohort of Young American Scientists honorees. Costa shares how being surprised by experiments has led him to new ways of thinking about learning in the brain. He explains how dopamine does more than signal reward, how there are two big frameworks of how the brain learns and how his findings could help us better understand—and treat—mental illness.\n\n\n\nRecommended Reading:\n\n\n\nThe Young American Scientists\n\n\n\nKauê M. Costa’s Young American Scientists profile\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Aaron Shattuck. Our theme music was composed by Dominic Smith.\n\n\n\nThis episode is part of “The Young American Scientists,” an editorially independent project that was produced with financial support from Regeneron.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-17T09:50:00+00:00",
"state": "completed",
"filelength": "00:18:38",
"filesize": "25.85 MB",
"filename": "60-Second Science - The neuroscientist decoding how the brain learns.mp3",
"mime": "audio/mpeg",
"time": 1118,
"size": 27104993,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82859",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82859&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20The%20neuroscientist%20decoding%20how%20the%20brain%20learns.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
},
{
"id": "82861",
"title": "Disclosure Day and the science of alien language",
"name": "Disclosure Day and the science of alien language",
"podcast": {
"id": "1",
"name": "60-Second Science"
},
"description": "In the new movie Disclosure Day, aliens communicate through a series of strange clicks and pops. But what could an alien language actually be like? In this episode of Science Quickly, host Rachel Feltman puts that question to linguist Jeffrey Punske. We explore why fictional aliens in Hollywood and beyond tend to sound the way they do, what real human languages can teach us about communication and why math could be humanity’s best shot at first contact.\n\n\n\nRecommended Reading:\n\n\n\nSteven Spielberg shares his favorite sci-fi story ever\n\n\n\nWhat Disclosure Day gets wrong about the search for aliens\n\n\n\nJoin our Summer Reading Challenge \n\n\n\nE-mail us at sciencequickly@sciam.com if you have any questions, comments or ideas for stories we should cover!\n\n\n\nDiscover something new everyday: subscribe to Scientific American and sign up for Today in Science, our daily newsletter.\n\n\n\nScience Quickly is produced by Rachel Feltman, Fonda Mwangi, Sushmita Pathak and Jeff DelViscio. This episode was edited by Alex Sugiura, with fact-checking by Marielle Issa and Aaron Shattuck. Our theme music was composed by Dominic Smith.\nLearn more about your ad choices. Visit megaphone.fm/adchoices",
"category": "",
"author": "",
"author_full": "",
"website": "",
"pubdate": "2026-06-12T09:50:00+00:00",
"state": "completed",
"filelength": "00:15:03",
"filesize": "20.92 MB",
"filename": "60-Second Science - Disclosure Day and the science of alien language.mp3",
"mime": "audio/mpeg",
"time": 903,
"size": 21940757,
"bitrate": 192000,
"stream_bitrate": 192000,
"rate": 44100,
"mode": "cbr",
"channels": 2,
"public_url": "https://music.com.au/podcast_episode.php?action=show&podcast_episode=82861",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=podcast_episode&oid=82861&uid=4&format=raw&player=api&name=60-Second%20Science%20-%20Disclosure%20Day%20and%20the%20science%20of%20alien%20language.mp3",
"catalog": "3",
"art": "https://music.com.au/image.php?object_id=1&object_type=podcast&id=42&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"played": ""
}
]
}
}
}
}
}
},
"description": "Search results grouped by type"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Group search across multiple object types",
"tags": [
"Search"
],
"operationId": "searchGroup",
"description": "Perform a group search given passed rules. This function will return multiple object types if the rule names match the object type. You can pass multiple rules as well as joins to create in depth search results."
}
},
"/search/{search_type}/rules": {
"get": {
"parameters": [
{
"description": "song, album, song_artist, album_artist, artist, label, playlist, podcast, podcast_episode, genre, user, video",
"in": "path",
"name": "search_type",
"required": true,
"schema": {
"enum": [
"song",
"album",
"song_artist",
"album_artist",
"artist",
"label",
"playlist",
"podcast",
"podcast_episode",
"genre",
"user",
"video"
],
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SearchRulesResponse"
},
"examples": {
"search_rules_album": {
"summary": "search rules (album)",
"value": {
"rule": [
{
"name": "title",
"label": "Title",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Album Data"
},
{
"name": "album_artist",
"label": "Album Artist",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Album Data"
},
{
"name": "song_artist",
"label": "Song Artist",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Album Data"
},
{
"name": "song",
"label": "Song Title",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Album Data"
},
{
"name": "year",
"label": "Year",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Album Data"
},
{
"name": "original_year",
"label": "Original Year",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Album Data"
},
{
"name": "time",
"label": "Length (in minutes)",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Album Data"
},
{
"name": "release_type",
"label": "Release Type",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Album Data"
},
{
"name": "release_status",
"label": "Release Status",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Album Data"
},
{
"name": "version",
"label": "Release Comment",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Album Data"
},
{
"name": "barcode",
"label": "Barcode",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Album Data"
},
{
"name": "catalog_number",
"label": "Catalog Number",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Album Data"
},
{
"name": "disk_count",
"label": "Disk Count",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Album Data"
},
{
"name": "song_count",
"label": "Song Count",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Album Data"
},
{
"name": "id",
"label": "Database ID",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Album Data"
},
{
"name": "myrating",
"label": "My Rating",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "rating",
"label": "Rating (Average)",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "songrating",
"label": "My Rating (Song)",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "artistrating",
"label": "My Rating (Artist)",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "my_flagged_song",
"label": "My Favorite Songs",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Ratings"
},
{
"name": "my_flagged_album",
"label": "My Favorite Albums",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Ratings"
},
{
"name": "my_flagged_artist",
"label": "My Favorite Artists",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Ratings"
},
{
"name": "weight_song",
"label": "Song popularity score",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Ratings"
},
{
"name": "weight_album",
"label": "Album popularity score",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Ratings"
},
{
"name": "weight_artist",
"label": "Artist popularity score",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Ratings"
},
{
"name": "favorite",
"label": "Favorites",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Ratings"
},
{
"name": "other_user",
"label": "Another User",
"type": "user_numeric",
"widget": [
"select",
{
"2": "admin",
"3": "demo",
"4": "user"
}
],
"title": "Ratings"
},
{
"name": "played_times",
"label": "# Played",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "skipped_times",
"label": "# Skipped",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "played_or_skipped_times",
"label": "# Played or Skipped",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "last_play",
"label": "My Last Play",
"type": "days",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "last_skip",
"label": "My Last Skip",
"type": "days",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "last_play_or_skip",
"label": "My Last Play or Skip",
"type": "days",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "played",
"label": "Played",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Play History"
},
{
"name": "myplayed",
"label": "Played by Me",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Play History"
},
{
"name": "myplayedartist",
"label": "Played by Me (Artist)",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Play History"
},
{
"name": "myplayed_times",
"label": "# Played by Me",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "myskipped_times",
"label": "# Skipped by Me",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "myplayed_or_skipped_times",
"label": "# Played or Skipped by Me",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "recent_played",
"label": "Recently Played",
"type": "recent_played",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "genre",
"label": "Genre",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Genre"
},
{
"name": "song_genre",
"label": "Song Genre",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Genre"
},
{
"name": "no_genre",
"label": "No Genre",
"type": "is_true",
"widget": [
"input",
"hidden"
],
"title": "Genre"
},
{
"name": "genre_count_song",
"label": "Song Count",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Genre"
},
{
"name": "genre_count_album",
"label": "Album Count",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Genre"
},
{
"name": "genre_count_artist",
"label": "Artist Count",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Genre"
},
{
"name": "playlist",
"label": "Playlist",
"type": "boolean_subsearch",
"widget": [
"select",
{
"65": "Nofi",
"3": "random - admin - private (admin)",
"2": "random - admin - public (admin)",
"4": "random - user - private"
}
],
"title": "Playlists"
},
{
"name": "smartplaylist",
"label": "Smart Playlist",
"type": "boolean_subsearch",
"widget": [
"select",
{
"21": "admin - 02/23/2021 14:36:44 (admin)",
"14": "Album 1* (System)",
"13": "Album 2* (System)",
"12": "Album 3* (System)",
"11": "Album 4* (System)",
"10": "Album 5* (System)",
"9": "Artist 1* (System)",
"8": "Artist 2* (System)",
"7": "Artist 3* (System)",
"6": "Artist 4* (System)",
"5": "Artist 5* (System)",
"19": "Song 1* (System)",
"18": "Song 2* (System)",
"17": "Song 3* (System)",
"16": "Song 4* (System)",
"15": "Song 5* (System)",
"20": "Unplayed by me (demo)",
"22": "user - 07/18/2024 11:54:12"
}
],
"title": "Playlists"
},
{
"name": "playlist_name",
"label": "Playlist Name",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Playlists"
},
{
"name": "file",
"label": "Filename",
"type": "text",
"widget": [
"input",
"text"
],
"title": "File Data"
},
{
"name": "added",
"label": "Date Added",
"type": "date",
"widget": [
"input",
"datetime-local"
],
"title": "File Data"
},
{
"name": "updated",
"label": "Date Updated",
"type": "date",
"widget": [
"input",
"datetime-local"
],
"title": "File Data"
},
{
"name": "has_image",
"label": "Local Image",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "File Data"
},
{
"name": "image_width",
"label": "Image Width",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "File Data"
},
{
"name": "image_height",
"label": "Image Height",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "File Data"
},
{
"name": "recent_added",
"label": "Recently Added",
"type": "recent_added",
"widget": [
"input",
"number"
],
"title": "File Data"
},
{
"name": "days_added",
"label": "Added",
"type": "days",
"widget": [
"input",
"number"
],
"title": "File Data"
},
{
"name": "possible_duplicate",
"label": "Possible Duplicate",
"type": "is_true",
"widget": [
"input",
"hidden"
],
"title": "File Data"
},
{
"name": "duplicate_tracks",
"label": "Duplicate Album Tracks",
"type": "is_true",
"widget": [
"input",
"hidden"
],
"title": "File Data"
},
{
"name": "duplicate_mbid_group",
"label": "Duplicate MusicBrainz Release Group",
"type": "is_true",
"widget": [
"input",
"hidden"
],
"title": "File Data"
},
{
"name": "catalog",
"label": "Catalog",
"type": "boolean_numeric",
"widget": [
"select",
{
"1": "music",
"4": "upload"
}
],
"title": "File Data"
},
{
"name": "mbid",
"label": "MusicBrainz ID",
"type": "text",
"widget": [
"input",
"text"
],
"title": "MusicBrainz"
},
{
"name": "mbid_artist",
"label": "MusicBrainz ID (Artist)",
"type": "text",
"widget": [
"input",
"text"
],
"title": "MusicBrainz"
},
{
"name": "mbid_song",
"label": "MusicBrainz ID (Song)",
"type": "text",
"widget": [
"input",
"text"
],
"title": "MusicBrainz"
}
]
}
},
"search_rules_artist": {
"summary": "search rules (artist)",
"value": {
"rule": [
{
"name": "title",
"label": "Name",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Artist Data"
},
{
"name": "album",
"label": "Album Title",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Artist Data"
},
{
"name": "song",
"label": "Song Title",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Artist Data"
},
{
"name": "summary",
"label": "Summary",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Artist Data"
},
{
"name": "yearformed",
"label": "Year Formed",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Artist Data"
},
{
"name": "placeformed",
"label": "Place Formed",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Artist Data"
},
{
"name": "time",
"label": "Length (in minutes)",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Artist Data"
},
{
"name": "album_count",
"label": "Album Count",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Artist Data"
},
{
"name": "song_count",
"label": "Song Count",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Artist Data"
},
{
"name": "id",
"label": "Database ID",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Artist Data"
},
{
"name": "myrating",
"label": "My Rating",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "rating",
"label": "Rating (Average)",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "songrating",
"label": "My Rating (Song)",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "albumrating",
"label": "My Rating (Album)",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "my_flagged_song",
"label": "My Favorite Songs",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Ratings"
},
{
"name": "my_flagged_album",
"label": "My Favorite Albums",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Ratings"
},
{
"name": "my_flagged_artist",
"label": "My Favorite Artists",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Ratings"
},
{
"name": "weight_song",
"label": "Song popularity score",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Ratings"
},
{
"name": "weight_album",
"label": "Album popularity score",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Ratings"
},
{
"name": "weight_artist",
"label": "Artist popularity score",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Ratings"
},
{
"name": "favorite",
"label": "Favorites",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Ratings"
},
{
"name": "other_user",
"label": "Another User",
"type": "user_numeric",
"widget": [
"select",
{
"2": "admin",
"3": "demo",
"4": "user"
}
],
"title": "Ratings"
},
{
"name": "played_times",
"label": "# Played",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "skipped_times",
"label": "# Skipped",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "played_or_skipped_times",
"label": "# Played or Skipped",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "last_play",
"label": "My Last Play",
"type": "days",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "last_skip",
"label": "My Last Skip",
"type": "days",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "last_play_or_skip",
"label": "My Last Play or Skip",
"type": "days",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "played",
"label": "Played",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Play History"
},
{
"name": "myplayed",
"label": "Played by Me",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Play History"
},
{
"name": "myplayed_times",
"label": "# Played by Me",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "myskipped_times",
"label": "# Skipped by Me",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "myplayed_or_skipped_times",
"label": "# Played or Skipped by Me",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "recent_played",
"label": "Recently Played",
"type": "recent_played",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "genre",
"label": "Genre",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Genre"
},
{
"name": "song_genre",
"label": "Song Genre",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Genre"
},
{
"name": "no_genre",
"label": "No Genre",
"type": "is_true",
"widget": [
"input",
"hidden"
],
"title": "Genre"
},
{
"name": "genre_count_song",
"label": "Song Count",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Genre"
},
{
"name": "genre_count_album",
"label": "Album Count",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Genre"
},
{
"name": "genre_count_artist",
"label": "Artist Count",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Genre"
},
{
"name": "playlist",
"label": "Playlist",
"type": "boolean_subsearch",
"widget": [
"select",
{
"65": "Nofi",
"3": "random - admin - private (admin)",
"2": "random - admin - public (admin)",
"4": "random - user - private"
}
],
"title": "Playlists"
},
{
"name": "playlist_name",
"label": "Playlist Name",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Playlists"
},
{
"name": "file",
"label": "Filename",
"type": "text",
"widget": [
"input",
"text"
],
"title": "File Data"
},
{
"name": "has_image",
"label": "Local Image",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "File Data"
},
{
"name": "image_width",
"label": "Image Width",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "File Data"
},
{
"name": "image_height",
"label": "Image Height",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "File Data"
},
{
"name": "days_added",
"label": "Added",
"type": "days",
"widget": [
"input",
"number"
],
"title": "File Data"
},
{
"name": "possible_duplicate",
"label": "Possible Duplicate",
"type": "is_true",
"widget": [
"input",
"hidden"
],
"title": "File Data"
},
{
"name": "possible_duplicate_album",
"label": "Possible Duplicate Albums",
"type": "is_true",
"widget": [
"input",
"hidden"
],
"title": "File Data"
},
{
"name": "catalog",
"label": "Catalog",
"type": "boolean_numeric",
"widget": [
"select",
{
"1": "music",
"4": "upload"
}
],
"title": "File Data"
},
{
"name": "mbid",
"label": "MusicBrainz ID",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Musicbrainz"
},
{
"name": "mbid_album",
"label": "MusicBrainz ID (Album)",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Musicbrainz"
},
{
"name": "mbid_song",
"label": "MusicBrainz ID (Song)",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Musicbrainz"
}
]
}
},
"search_rules_label": {
"summary": "search rules (label)",
"value": {
"rule": [
{
"name": "title",
"label": "Name",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Label"
},
{
"name": "category",
"label": "Category",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Label"
},
{
"name": "id",
"label": "Database ID",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Label"
}
]
}
},
"search_rules_playlist": {
"summary": "search rules (playlist)",
"value": {
"rule": [
{
"name": "title",
"label": "Name",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Playlist"
},
{
"name": "type",
"label": "Type",
"type": "boolean_numeric",
"widget": [
"select",
[
"public",
"private"
]
],
"title": "Playlist"
},
{
"name": "owner",
"label": "Owner",
"type": "user_numeric",
"widget": [
"select",
{
"2": "admin",
"3": "demo",
"4": "user"
}
],
"title": "Playlist"
},
{
"name": "id",
"label": "Database ID",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Playlist"
}
]
}
},
"search_rules_podcast": {
"summary": "search rules (podcast)",
"value": {
"rule": [
{
"name": "title",
"label": "Name",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Podcast"
},
{
"name": "episode_count",
"label": "Episode Count",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Podcast"
},
{
"name": "id",
"label": "Database ID",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Podcast"
},
{
"name": "podcast_episode",
"label": "Podcast Episode",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Podcast Episodes"
},
{
"name": "state",
"label": "Status",
"type": "boolean_numeric",
"widget": [
"select",
[
"skipped",
"pending",
"completed"
]
],
"title": "Podcast Episodes"
},
{
"name": "time",
"label": "Length (in minutes)",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Podcast Episodes"
},
{
"name": "myrating",
"label": "My Rating",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "rating",
"label": "Rating (Average)",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "podcastrating",
"label": "My Rating (Podcast)",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "podcast_episoderating",
"label": "My Rating (Podcast Episode)",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "my_flagged_podcast",
"label": "My Favorite Podcasts",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Ratings"
},
{
"name": "my_flagged_podcast_episode",
"label": "My Favorite Podcast Episodes",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Ratings"
},
{
"name": "weight_podcast",
"label": "Podcast popularity score",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Ratings"
},
{
"name": "weight_podcast_episode",
"label": "Podcast Episode popularity score",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Ratings"
},
{
"name": "favorite",
"label": "Favorites",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Ratings"
},
{
"name": "other_user",
"label": "Another User",
"type": "user_numeric",
"widget": [
"select",
{
"2": "admin",
"3": "demo",
"4": "user"
}
],
"title": "Ratings"
},
{
"name": "played_times",
"label": "# Played",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "skipped_times",
"label": "# Skipped",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "played_or_skipped_times",
"label": "# Played or Skipped",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "last_play",
"label": "My Last Play",
"type": "days",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "last_skip",
"label": "My Last Skip",
"type": "days",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "last_play_or_skip",
"label": "My Last Play or Skip",
"type": "days",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "played",
"label": "Played",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Play History"
},
{
"name": "myplayed",
"label": "Played by Me",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Play History"
},
{
"name": "myplayed_times",
"label": "# Played by Me",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "myskipped_times",
"label": "# Skipped by Me",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "myplayed_or_skipped_times",
"label": "# Played or Skipped by Me",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "recent_played",
"label": "Recently Played",
"type": "recent_played",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "file",
"label": "Filename",
"type": "text",
"widget": [
"input",
"text"
],
"title": "File Data"
},
{
"name": "pubdate",
"label": "Publication Date",
"type": "date",
"widget": [
"input",
"datetime-local"
],
"title": "File Data"
},
{
"name": "added",
"label": "Date Added",
"type": "date",
"widget": [
"input",
"datetime-local"
],
"title": "File Data"
},
{
"name": "updated",
"label": "Date Updated",
"type": "date",
"widget": [
"input",
"datetime-local"
],
"title": "File Data"
},
{
"name": "days_added",
"label": "Added",
"type": "days",
"widget": [
"input",
"number"
],
"title": "File Data"
},
{
"name": "days_updated",
"label": "Updated",
"type": "days",
"widget": [
"input",
"number"
],
"title": "File Data"
}
]
}
},
"search_rules_podcast_episode": {
"summary": "search rules (podcast episode)",
"value": {
"rule": [
{
"name": "title",
"label": "Name",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Podcast Episode"
},
{
"name": "podcast",
"label": "Podcast",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Podcast Episode"
},
{
"name": "state",
"label": "Status",
"type": "boolean_numeric",
"widget": [
"select",
[
"skipped",
"pending",
"completed"
]
],
"title": "Podcast Episode"
},
{
"name": "time",
"label": "Length (in minutes)",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Podcast Episode"
},
{
"name": "id",
"label": "Database ID",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Podcast Episode"
},
{
"name": "myrating",
"label": "My Rating",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "rating",
"label": "Rating (Average)",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "podcastrating",
"label": "My Rating (Podcast)",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "podcast_episoderating",
"label": "My Rating (Podcast Episode)",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "my_flagged_podcast",
"label": "My Favorite Podcasts",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Ratings"
},
{
"name": "my_flagged_podcast_episode",
"label": "My Favorite Podcast Episodes",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Ratings"
},
{
"name": "weight_podcast",
"label": "Podcast popularity score",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Ratings"
},
{
"name": "weight_podcast_episode",
"label": "Podcast Episode popularity score",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Ratings"
},
{
"name": "favorite",
"label": "Favorites",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Ratings"
},
{
"name": "other_user",
"label": "Another User",
"type": "user_numeric",
"widget": [
"select",
{
"2": "admin",
"3": "demo",
"4": "user"
}
],
"title": "Ratings"
},
{
"name": "played_times",
"label": "# Played",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "skipped_times",
"label": "# Skipped",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "played_or_skipped_times",
"label": "# Played or Skipped",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "last_play",
"label": "My Last Play",
"type": "days",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "last_skip",
"label": "My Last Skip",
"type": "days",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "last_play_or_skip",
"label": "My Last Play or Skip",
"type": "days",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "played",
"label": "Played",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Play History"
},
{
"name": "myplayed",
"label": "Played by Me",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Play History"
},
{
"name": "myplayed_times",
"label": "# Played by Me",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "myskipped_times",
"label": "# Skipped by Me",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "myplayed_or_skipped_times",
"label": "# Played or Skipped by Me",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "recent_played",
"label": "Recently Played",
"type": "recent_played",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "file",
"label": "Filename",
"type": "text",
"widget": [
"input",
"text"
],
"title": "File Data"
},
{
"name": "pubdate",
"label": "Publication Date",
"type": "date",
"widget": [
"input",
"datetime-local"
],
"title": "File Data"
},
{
"name": "added",
"label": "Date Added",
"type": "date",
"widget": [
"input",
"datetime-local"
],
"title": "File Data"
},
{
"name": "updated",
"label": "Date Updated",
"type": "date",
"widget": [
"input",
"datetime-local"
],
"title": "File Data"
},
{
"name": "days_added",
"label": "Added",
"type": "days",
"widget": [
"input",
"number"
],
"title": "File Data"
},
{
"name": "days_updated",
"label": "Updated",
"type": "days",
"widget": [
"input",
"number"
],
"title": "File Data"
}
]
}
},
"search_rules_song": {
"summary": "search rules (song)",
"value": {
"rule": [
{
"name": "anywhere",
"label": "Any searchable text",
"type": "text",
"widget": [
"input",
"text"
],
"title": ""
},
{
"name": "none",
"label": "None",
"type": "is_true",
"widget": [
"input",
"hidden"
],
"title": ""
},
{
"name": "title",
"label": "Title",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Song Data"
},
{
"name": "album",
"label": "Album Title",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Song Data"
},
{
"name": "song_artist",
"label": "Song Artist",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Song Data"
},
{
"name": "album_artist",
"label": "Album Artist",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Song Data"
},
{
"name": "composer",
"label": "Composer",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Song Data"
},
{
"name": "track",
"label": "Track",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Song Data"
},
{
"name": "year",
"label": "Year",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Song Data"
},
{
"name": "time",
"label": "Length (in minutes)",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Song Data"
},
{
"name": "label",
"label": "Label",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Song Data"
},
{
"name": "comment",
"label": "Comment",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Song Data"
},
{
"name": "lyrics",
"label": "Lyrics",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Song Data"
},
{
"name": "id",
"label": "Database ID",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Song Data"
},
{
"name": "myrating",
"label": "My Rating",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "rating",
"label": "Rating (Average)",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "albumrating",
"label": "My Rating (Album)",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "artistrating",
"label": "My Rating (Artist)",
"type": "numeric",
"widget": [
"select",
[
"0 Stars",
"1 Star",
"2 Stars",
"3 Stars",
"4 Stars",
"5 Stars"
]
],
"title": "Ratings"
},
{
"name": "my_flagged_song",
"label": "My Favorite Songs",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Ratings"
},
{
"name": "my_flagged_album",
"label": "My Favorite Albums",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Ratings"
},
{
"name": "my_flagged_artist",
"label": "My Favorite Artists",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Ratings"
},
{
"name": "favorite",
"label": "Favorites",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Ratings"
},
{
"name": "favorite_album",
"label": "Favorites (Album)",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Ratings"
},
{
"name": "favorite_artist",
"label": "Favorites (Artist)",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Ratings"
},
{
"name": "weight_song",
"label": "Song popularity score",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Ratings"
},
{
"name": "weight_album",
"label": "Album popularity score",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Ratings"
},
{
"name": "weight_artist",
"label": "Artist popularity score",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Ratings"
},
{
"name": "other_user",
"label": "Another User",
"type": "user_numeric",
"widget": [
"select",
{
"2": "admin",
"3": "demo",
"4": "user"
}
],
"title": "Ratings"
},
{
"name": "other_user_album",
"label": "Another User (Album)",
"type": "user_numeric",
"widget": [
"select",
{
"2": "admin",
"3": "demo",
"4": "user"
}
],
"title": "Ratings"
},
{
"name": "other_user_artist",
"label": "Another User (Artist)",
"type": "user_numeric",
"widget": [
"select",
{
"2": "admin",
"3": "demo",
"4": "user"
}
],
"title": "Ratings"
},
{
"name": "played_times",
"label": "# Played",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "skipped_times",
"label": "# Skipped",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "played_or_skipped_times",
"label": "# Played or Skipped",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "play_skip_ratio",
"label": "Played/Skipped ratio",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "last_play",
"label": "My Last Play",
"type": "days",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "last_skip",
"label": "My Last Skip",
"type": "days",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "last_play_or_skip",
"label": "My Last Play or Skip",
"type": "days",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "played",
"label": "Played",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Play History"
},
{
"name": "myplayed",
"label": "Played by Me",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Play History"
},
{
"name": "myplayedalbum",
"label": "Played by Me (Album)",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Play History"
},
{
"name": "myplayedartist",
"label": "Played by Me (Artist)",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "Play History"
},
{
"name": "myplayed_times",
"label": "# Played by Me",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "myskipped_times",
"label": "# Skipped by Me",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "myplayed_or_skipped_times",
"label": "# Played or Skipped by Me",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "recent_played",
"label": "Recently Played",
"type": "recent_played",
"widget": [
"input",
"number"
],
"title": "Play History"
},
{
"name": "genre",
"label": "Genre",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Genre"
},
{
"name": "album_genre",
"label": "Album Genre",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Genre"
},
{
"name": "artist_genre",
"label": "Artist Genre",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Genre"
},
{
"name": "no_genre",
"label": "No Genre",
"type": "is_true",
"widget": [
"input",
"hidden"
],
"title": "Genre"
},
{
"name": "genre_count_song",
"label": "Song Count",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Genre"
},
{
"name": "genre_count_album",
"label": "Album Count",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Genre"
},
{
"name": "genre_count_artist",
"label": "Artist Count",
"type": "numeric",
"widget": [
"input",
"number"
],
"title": "Genre"
},
{
"name": "playlist",
"label": "Playlist",
"type": "boolean_subsearch",
"widget": [
"select",
{
"65": "Nofi",
"3": "random - admin - private (admin)",
"2": "random - admin - public (admin)",
"4": "random - user - private"
}
],
"title": "Playlists"
},
{
"name": "smartplaylist",
"label": "Smart Playlist",
"type": "boolean_subsearch",
"widget": [
"select",
{
"21": "admin - 02/23/2021 14:36:44 (admin)",
"14": "Album 1* (System)",
"13": "Album 2* (System)",
"12": "Album 3* (System)",
"11": "Album 4* (System)",
"10": "Album 5* (System)",
"9": "Artist 1* (System)",
"8": "Artist 2* (System)",
"7": "Artist 3* (System)",
"6": "Artist 4* (System)",
"5": "Artist 5* (System)",
"19": "Song 1* (System)",
"18": "Song 2* (System)",
"17": "Song 3* (System)",
"16": "Song 4* (System)",
"15": "Song 5* (System)",
"20": "Unplayed by me (demo)",
"22": "user - 07/18/2024 11:54:12"
}
],
"title": "Playlists"
},
{
"name": "playlist_name",
"label": "Playlist Name",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Playlists"
},
{
"name": "file",
"label": "Filename",
"type": "text",
"widget": [
"input",
"text"
],
"title": "File Data"
},
{
"name": "bitrate",
"label": "Bitrate",
"type": "numeric",
"widget": [
"select",
{
"32": "32",
"40": "40",
"48": "48",
"56": "56",
"64": "64",
"80": "80",
"96": "96",
"112": "112",
"128": "128",
"160": "160",
"192": "192",
"224": "224",
"256": "256",
"320": "320",
"640": "640",
"1280": "1280"
}
],
"title": "File Data"
},
{
"name": "added",
"label": "Date Added",
"type": "date",
"widget": [
"input",
"datetime-local"
],
"title": "File Data"
},
{
"name": "updated",
"label": "Date Updated",
"type": "date",
"widget": [
"input",
"datetime-local"
],
"title": "File Data"
},
{
"name": "license",
"label": "Music License",
"type": "boolean_numeric",
"widget": [
"select",
{
"1": "0 - default",
"2": "CC BY 3.0",
"3": "CC BY NC 3.0",
"4": "CC BY NC ND 3.0",
"5": "CC BY NC SA 3.0",
"6": "CC BY ND 3.0",
"7": "CC BY SA 3.0",
"8": "Licence Art Libre",
"9": "Yellow OpenMusic",
"10": "Green OpenMusic",
"11": "Gnu GPL Art",
"12": "WTFPL",
"13": "FMPL",
"14": "C Reaction"
}
],
"title": "File Data"
},
{
"name": "no_license",
"label": "No Music License",
"type": "is_true",
"widget": [
"input",
"hidden"
],
"title": "File Data"
},
{
"name": "recent_added",
"label": "Recently Added",
"type": "recent_added",
"widget": [
"input",
"number"
],
"title": "File Data"
},
{
"name": "recent_updated",
"label": "Recently Updated",
"type": "recent_updated",
"widget": [
"input",
"number"
],
"title": "File Data"
},
{
"name": "days_added",
"label": "Added",
"type": "days",
"widget": [
"input",
"number"
],
"title": "File Data"
},
{
"name": "days_updated",
"label": "Updated",
"type": "days",
"widget": [
"input",
"number"
],
"title": "File Data"
},
{
"name": "possible_duplicate",
"label": "Possible Duplicate",
"type": "is_true",
"widget": [
"input",
"hidden"
],
"title": "File Data"
},
{
"name": "duplicate_tracks",
"label": "Duplicate Album Tracks",
"type": "is_true",
"widget": [
"input",
"hidden"
],
"title": "File Data"
},
{
"name": "possible_duplicate_album",
"label": "Possible Duplicate Albums",
"type": "is_true",
"widget": [
"input",
"hidden"
],
"title": "File Data"
},
{
"name": "orphaned_album",
"label": "Orphaned Album",
"type": "is_true",
"widget": [
"input",
"hidden"
],
"title": "File Data"
},
{
"name": "catalog",
"label": "Catalog",
"type": "boolean_numeric",
"widget": [
"select",
{
"1": "music",
"4": "upload"
}
],
"title": "File Data"
},
{
"name": "waveform",
"label": "Waveform",
"type": "boolean",
"widget": [
"input",
"hidden"
],
"title": "File Data"
},
{
"name": "mbid",
"label": "MusicBrainz ID",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Musicbrainz"
},
{
"name": "mbid_album",
"label": "MusicBrainz ID (Album)",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Musicbrainz"
},
{
"name": "mbid_artist",
"label": "MusicBrainz ID (Artist)",
"type": "text",
"widget": [
"input",
"text"
],
"title": "Musicbrainz"
}
]
}
},
"search_rules_video": {
"summary": "search rules (video)",
"value": {
"rule": [
{
"name": "file",
"label": "Filename",
"type": "text",
"widget": [
"input",
"text"
],
"title": ""
}
]
}
}
}
}
},
"description": "Rules list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List valid search rules for a search type",
"tags": [
"Search",
"Utilities"
],
"operationId": "searchRules",
"description": "Print a list of valid search rules for your search type"
}
},
"/shares": {
"get": {
"parameters": [
{
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "exact",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SharesResponse"
},
"examples": {
"shares": {
"summary": "shares",
"value": {
"total_count": 3,
"md5": "e379d826bb1b6ffbc4564d33021e908c",
"share": [
{
"id": "1",
"name": "Creeping Lawler 2",
"owner": "user",
"allow_stream": true,
"allow_download": false,
"creation_date": 1670202706,
"lastvisit_date": 1614129643,
"object_type": "album",
"object_id": "9",
"expire_days": 0,
"max_counter": 0,
"counter": 1,
"secret": "GJ7EzBPT",
"public_url": "https://music.com.au/share.php?id=1&secret=GJ7EzBPT",
"description": "Creeping Lawler 2 (Warfare 3.0)"
},
{
"id": "2",
"name": "Inominavel (live.v.01)",
"owner": "demo",
"allow_stream": true,
"allow_download": false,
"creation_date": 1670202706,
"lastvisit_date": 0,
"object_type": "album",
"object_id": "18",
"expire_days": 0,
"max_counter": 0,
"counter": 0,
"secret": "GJ7EzBPT",
"public_url": "https://music.com.au/share.php?id=2&secret=GJ7EzBPT",
"description": "Buried in Nausea (Various Artists)"
},
{
"id": "7",
"name": "Colorsmoke EP",
"owner": "user",
"allow_stream": true,
"allow_download": true,
"creation_date": 1670202706,
"lastvisit_date": 0,
"object_type": "album",
"object_id": "2",
"expire_days": 0,
"max_counter": 0,
"counter": 0,
"secret": "GJ7EzBPT",
"public_url": "https://music.com.au/share.php?id=7&secret=GJ7EzBPT",
"description": "Colorsmoke EP (Synthetic)"
}
]
}
}
}
}
},
"description": "Share list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List shares",
"tags": [
"Shares"
],
"operationId": "shares",
"description": "This searches the shares and returns... shares"
},
"put": {
"parameters": [
{
"in": "query",
"name": "filter",
"description": "Object id",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"album",
"artist",
"playlist",
"podcast",
"podcast_episode",
"song",
"video"
],
"type": "string"
}
},
{
"in": "query",
"name": "description",
"description": "Filled in for you if empty",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "expires",
"description": "Days to keep active",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareObject"
},
"examples": {
"share": {
"summary": "share created",
"value": {
"id": "1",
"name": "Creeping Lawler 2",
"owner": "user",
"allow_stream": true,
"allow_download": false,
"creation_date": 1670202706,
"lastvisit_date": 1614129643,
"object_type": "album",
"object_id": "9",
"expire_days": 0,
"max_counter": 0,
"counter": 1,
"secret": "GJ7EzBPT",
"public_url": "https://music.com.au/share.php?id=1&secret=GJ7EzBPT",
"description": "Creeping Lawler 2 (Warfare 3.0)"
}
}
}
}
},
"description": "Share created"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a share",
"tags": [
"Shares"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareCreateSharesRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/ShareCreateSharesRequest"
}
}
}
},
"operationId": "shareCreate",
"description": "Create a public url that can be used by anyone to stream media. Takes the file id with optional description and expires parameters."
}
},
"/shares/{share_id}": {
"delete": {
"parameters": [
{
"$ref": "#/components/parameters/ShareId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"share": {
"summary": "share",
"value": {
"id": "1",
"name": "Creeping Lawler 2",
"owner": "user",
"allow_stream": true,
"allow_download": false,
"creation_date": 1670202706,
"lastvisit_date": 1614129643,
"object_type": "album",
"object_id": "9",
"expire_days": 0,
"max_counter": 0,
"counter": 1,
"secret": "GJ7EzBPT",
"public_url": "https://music.com.au/share.php?id=1&secret=GJ7EzBPT",
"description": "Creeping Lawler 2 (Warfare 3.0)"
}
}
}
}
},
"description": "Deleted"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Delete a share",
"tags": [
"Shares"
],
"operationId": "shareDelete",
"description": "Delete an existing share."
},
"get": {
"parameters": [
{
"$ref": "#/components/parameters/ShareId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareObject"
},
"examples": {
"share": {
"summary": "share",
"value": {
"id": "1",
"name": "Creeping Lawler 2",
"owner": "user",
"allow_stream": true,
"allow_download": false,
"creation_date": 1670202706,
"lastvisit_date": 1614129643,
"object_type": "album",
"object_id": "9",
"expire_days": 0,
"max_counter": 0,
"counter": 1,
"secret": "GJ7EzBPT",
"public_url": "https://music.com.au/share.php?id=1&secret=GJ7EzBPT",
"description": "Creeping Lawler 2 (Warfare 3.0)"
}
}
}
}
},
"description": "Share object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get share by ID",
"tags": [
"Shares"
],
"operationId": "share",
"description": "Return shares by UID"
},
"patch": {
"parameters": [
{
"$ref": "#/components/parameters/ShareId"
},
{
"in": "query",
"name": "stream",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"in": "query",
"name": "download",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"in": "query",
"name": "expires",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "description",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"share": {
"summary": "share",
"value": {
"id": "1",
"name": "Creeping Lawler 2",
"owner": "user",
"allow_stream": true,
"allow_download": false,
"creation_date": 1670202706,
"lastvisit_date": 1614129643,
"object_type": "album",
"object_id": "9",
"expire_days": 0,
"max_counter": 0,
"counter": 1,
"secret": "GJ7EzBPT",
"public_url": "https://music.com.au/share.php?id=1&secret=GJ7EzBPT",
"description": "Creeping Lawler 2 (Warfare 3.0)"
}
}
}
}
},
"description": "Share updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Edit a share",
"tags": [
"Shares"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareEditRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/ShareEditRequest"
}
}
}
},
"operationId": "shareEdit",
"description": "Update the description and/or expiration date for an existing share. Takes the share id to update with optional description and expires parameters."
}
},
"/smartlists": {
"get": {
"parameters": [
{
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "exact",
"required": false,
"schema": {
"type": "boolean"
}
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistsResponse"
},
"examples": {
"smartlists": {
"summary": "smartlists",
"value": {
"total_count": 18,
"md5": "1be86703f3041143eac23a8a6a30b176",
"playlist": [
{
"id": "smart_21",
"name": "admin - 02/23/2021 14:36:44 (admin)",
"owner": "admin",
"user": {
"id": "2",
"username": "admin"
},
"items": 1,
"type": "public",
"art": "https://music.com.au/image.php?object_id=21&object_type=search&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 0,
"time": 317
},
{
"id": "smart_14",
"name": "Album 1* (System)",
"owner": "System",
"user": {
"id": "-1",
"username": "System"
},
"items": 2,
"type": "public",
"art": "https://music.com.au/image.php?object_id=14&object_type=search&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 0,
"time": 600
},
{
"id": "smart_13",
"name": "Album 2* (System)",
"owner": "System",
"user": {
"id": "-1",
"username": "System"
},
"items": 11,
"type": "public",
"art": "https://music.com.au/image.php?object_id=13&object_type=search&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 0,
"time": 4423
},
{
"id": "smart_12",
"name": "Album 3* (System)",
"owner": "System",
"user": {
"id": "-1",
"username": "System"
},
"items": 2,
"type": "public",
"art": "https://music.com.au/image.php?object_id=12&object_type=search&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 0,
"time": 592
}
]
}
}
}
}
},
"description": "Playlists list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List smartplaylists",
"tags": [
"Playlists"
],
"operationId": "smartlists",
"description": "This returns smartlists based on the specified filter"
}
},
"/smartlists/{smartlist_id}": {
"delete": {
"parameters": [
{
"$ref": "#/components/parameters/SmartlistId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"smartlist": {
"summary": "smartlist",
"value": {
"id": "smart_15",
"name": "Song 5* (System)",
"owner": "System",
"user": {
"id": "-1",
"username": "System"
},
"items": 0,
"type": "public",
"art": "https://music.com.au/image.php?object_id=15&object_type=search&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 0,
"time": 0
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Delete a smartlist",
"tags": [
"Playlists"
],
"operationId": "smartlistDelete",
"description": "This deletes a smartlist"
},
"get": {
"parameters": [
{
"$ref": "#/components/parameters/SmartlistId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistObject"
},
"examples": {
"smartlist": {
"summary": "smartlist",
"value": {
"id": "smart_15",
"name": "Song 5* (System)",
"owner": "System",
"user": {
"id": "-1",
"username": "System"
},
"items": 0,
"type": "public",
"art": "https://music.com.au/image.php?object_id=15&object_type=search&name=art.jpg",
"has_access": true,
"has_collaborate": true,
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"md5": null,
"last_update": 0,
"time": 0
}
}
}
}
},
"description": "Playlist response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get a single smartplaylist",
"tags": [
"Playlists"
],
"operationId": "smartlist",
"description": "This returns a single smartlist"
}
},
"/smartlists/{smartlist_id}/art": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/SmartlistId"
},
{
"description": "widthxheight, e.g. 640x480",
"in": "query",
"name": "size",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "The image itself, written straight to the response body",
"headers": {
"Content-Type": {
"description": "The stored art mime type (e.g. `image/jpeg`, `image/png`)",
"schema": {
"type": "string"
}
},
"Content-Length": {
"description": "Size of the image in bytes",
"schema": {
"type": "integer"
}
},
"Access-Control-Allow-Origin": {
"description": "Always `*`, so art can be loaded cross-origin",
"schema": {
"type": "string"
}
}
},
"content": {
"image/*": {
"schema": {
"type": "string",
"format": "binary"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get art image (binary)",
"tags": [
"Artwork"
],
"operationId": "getArtSmartlists",
"description": "Get an art image."
}
},
"/smartlists/{smartlist_id}/download": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/SmartlistId"
},
{
"description": "Max bitrate for transcoding in bits per second (e.g 192000 = 192Kb)",
"in": "query",
"name": "bitrate",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "format",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "stats",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"description": "Zip archive of the container's media files (only when `zip=1` is sent for a zipable type)",
"headers": {
"Content-Type": {
"description": "Always `application/zip`",
"schema": {
"type": "string"
}
},
"Content-Disposition": {
"description": "`attachment` with the archive name, RFC 5987 encoded",
"schema": {
"type": "string"
}
}
},
"content": {
"application/zip": {
"schema": {
"type": "string",
"format": "binary"
}
}
}
},
"302": {
"description": "Redirect to the media url; the stream itself is served from the `Location` header",
"headers": {
"Location": {
"description": "Absolute url of the media stream",
"schema": {
"type": "string",
"format": "uri"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"416": {
"description": "Range not satisfiable",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"error4710": {
"$ref": "#/components/examples/error4710"
}
}
}
}
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Download a media file (binary)",
"tags": [
"Streaming and Downloads"
],
"operationId": "downloadSmartlists",
"description": "Downloads a given media file. set format=raw to download the full file"
}
},
"/smartlists/{smartlist_id}/flag": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/SmartlistId"
},
{
"in": "query",
"name": "flag",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "flag",
"value": {
"success": "flag ADDED to 91"
}
}
}
}
},
"description": "Updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Flag or unflag an item as favourite",
"tags": [
"Ratings and Flags"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FlagRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/FlagRequest"
}
}
}
},
"operationId": "flagSmartlists",
"description": "This flags a library item as a favorite"
}
},
"/smartlists/{smartlist_id}/rate": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/SmartlistId"
},
{
"in": "query",
"name": "rating",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "rate",
"value": {
"success": "rating set to 5 for 91"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Rate a library item",
"tags": [
"Ratings and Flags"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/RateRequest"
}
}
}
},
"operationId": "rateSmartlists",
"description": "This rates a library item"
}
},
"/smartlists/{smartlist_id}/share": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/SmartlistId"
},
{
"in": "query",
"name": "description",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "days to keep active",
"in": "query",
"name": "expires",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareObject"
},
"examples": {
"share": {
"summary": "share",
"value": {
"id": "1",
"name": "Creeping Lawler 2",
"owner": "user",
"allow_stream": true,
"allow_download": false,
"creation_date": 1670202706,
"lastvisit_date": 1614129643,
"object_type": "album",
"object_id": "9",
"expire_days": 0,
"max_counter": 0,
"counter": 1,
"secret": "GJ7EzBPT",
"public_url": "https://music.com.au/share.php?id=1&secret=GJ7EzBPT",
"description": "Creeping Lawler 2 (Warfare 3.0)"
}
}
}
}
},
"description": "Share created"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a public share URL",
"tags": [
"Shares"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareCreateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/ShareCreateRequest"
}
}
}
},
"operationId": "shareCreateSmartlists",
"description": "Create a public url that can be used by anyone to stream media. Takes the file id with optional description and expires parameters."
}
},
"/smartlists/{smartlist_id}/songs": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/SmartlistId"
},
{
"in": "query",
"name": "random",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SongsResponse"
},
"examples": {
"smartlist_songs": {
"summary": "smartlist songs",
"value": {
"total_count": 30,
"md5": "5df44810d1a3a732796334082fc1d926",
"song": [
{
"id": "104",
"title": "The Infernal Serpent",
"name": "The Infernal Serpent",
"artist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"artists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"album": {
"id": "10",
"name": "CARNÚN - MALKUTH (Demo 1996)",
"prefix": null,
"basename": "CARNÚN - MALKUTH (Demo 1996)"
},
"albumartist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"disk": 1,
"disksubtitle": null,
"track": 4,
"filename": "/mnt/files-music/ampache-test/music/Carnún/Malkuth (Demo1996)/04TheInfernalSerpent.ogg",
"genre": [],
"playlisttrack": 1,
"time": 404,
"year": 1996,
"format": "ogg",
"stream_format": "mp3",
"bitrate": 100053,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "application/ogg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=104&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=CARN-N%20-%20The%20Infernal%20Serpent.mp3",
"size": 5066698,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=10&object_type=album&id=63&name=art.jpg",
"has_art": true,
"flag": false,
"rating": 5,
"averagerating": 4.5,
"playcount": 1,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "Visit http://irish-metal.bandcamp.com;http://archive.org/details/Carnn_-_Malkuth_Demo1996",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -11.26,
"replaygain_track_peak": 1,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "99",
"title": "The Prophecies Of The Horned One (Instrumental Re-Recording)",
"name": "The Prophecies Of The Horned One (Instrumental Re-Recording)",
"artist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"artists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"album": {
"id": "10",
"name": "CARNÚN - MALKUTH (Demo 1996)",
"prefix": null,
"basename": "CARNÚN - MALKUTH (Demo 1996)"
},
"albumartist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"disk": 1,
"disksubtitle": null,
"track": 6,
"filename": "/mnt/files-music/ampache-test/music/Carnún/Malkuth (Demo1996)/06ThePropheciesOfTheHornedOne_InstrumentalReRecording.ogg",
"genre": [],
"playlisttrack": 2,
"time": 427,
"year": 1996,
"format": "ogg",
"stream_format": "mp3",
"bitrate": 143788,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "application/ogg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=99&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=CARN-N%20-%20The%20Prophecies%20Of%20The%20Horned%20One%20-Instrumental%20Re-Recording-.mp3",
"size": 7696008,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=10&object_type=album&id=63&name=art.jpg",
"has_art": true,
"flag": false,
"rating": 5,
"averagerating": null,
"playcount": 2,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "Visit http://irish-metal.bandcamp.com;http://archive.org/details/Carnn_-_Malkuth_Demo1996",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -12.66,
"replaygain_track_peak": 1,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "101",
"title": "Rehearsal Tape (1996)",
"name": "Rehearsal Tape (1996)",
"artist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"artists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"album": {
"id": "10",
"name": "CARNÚN - MALKUTH (Demo 1996)",
"prefix": null,
"basename": "CARNÚN - MALKUTH (Demo 1996)"
},
"albumartist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"disk": 1,
"disksubtitle": null,
"track": 9,
"filename": "/mnt/files-music/ampache-test/music/Carnún/Malkuth (Demo1996)/09RehearsalTape1996.ogg",
"genre": [],
"playlisttrack": 3,
"time": 980,
"year": 1996,
"format": "ogg",
"stream_format": "mp3",
"bitrate": 66912,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "application/ogg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=101&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=CARN-N%20-%20Rehearsal%20Tape%20-1996-.mp3",
"size": 8219821,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=10&object_type=album&id=63&name=art.jpg",
"has_art": true,
"flag": false,
"rating": 5,
"averagerating": null,
"playcount": 1,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "Visit http://irish-metal.bandcamp.com;http://archive.org/details/Carnn_-_Malkuth_Demo1996",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -9.56,
"replaygain_track_peak": 1,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "82",
"title": "Vanvett",
"name": "Vanvett",
"artist": {
"id": "13",
"name": "IOK-1",
"prefix": null,
"basename": "IOK-1"
},
"artists": [
{
"id": "13",
"name": "IOK-1",
"prefix": null,
"basename": "IOK-1"
}
],
"album": {
"id": "7",
"name": "Sensorisk Deprivation",
"prefix": null,
"basename": "Sensorisk Deprivation"
},
"albumartist": {
"id": "13",
"name": "IOK-1",
"prefix": null,
"basename": "IOK-1"
},
"disk": 1,
"disksubtitle": null,
"track": 2,
"filename": "/mnt/files-music/ampache-test/music/IOK-1/Sensorisk Deprivation/02_-_IOK-1_-_Vanvett.flac",
"genre": [
{
"id": "4",
"name": "Dark Ambient"
}
],
"playlisttrack": 4,
"time": 825,
"year": 2011,
"format": "flac",
"stream_format": "mp3",
"bitrate": 371855,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "audio/flac",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=82&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=IOK-1%20-%20Vanvett.mp3",
"size": 38389422,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=7&object_type=album&id=431&name=art.jpg",
"has_art": true,
"flag": true,
"rating": 5,
"averagerating": null,
"playcount": 1,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "DNA Production release\r\nCatalogue # DNA 119",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -2.57,
"replaygain_track_peak": 0.977,
"r128_album_gain": null,
"r128_track_gain": null
}
]
}
}
}
}
},
"description": "Song list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get songs for a smartlist",
"tags": [
"Playlists",
"Songs"
],
"operationId": "smartlistSongs",
"description": "This returns the songs for a smartlist"
}
},
"/smartlists/{smartlist_id}/stream": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/SmartlistId"
},
{
"description": "Max bitrate for transcoding in bits per second (e.g 192000 = 192Kb)",
"in": "query",
"name": "bitrate",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "format",
"required": false,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"in": "query",
"name": "length",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"in": "query",
"name": "stats",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"302": {
"description": "Redirect to the media url; the stream itself is served from the `Location` header",
"headers": {
"Location": {
"description": "Absolute url of the media stream",
"schema": {
"type": "string",
"format": "uri"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"416": {
"description": "Range not satisfiable",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"error4710": {
"$ref": "#/components/examples/error4710"
}
}
}
}
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Stream a media file (binary)",
"tags": [
"Streaming and Downloads"
],
"operationId": "streamSmartlists",
"description": "Streams a given media file. Takes the file id in parameter with optional max bit rate, file format, time offset, size and estimate content length option."
}
},
"/songs": {
"get": {
"parameters": [
{
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "exact",
"required": false,
"schema": {
"type": "boolean"
}
},
{
"$ref": "#/components/parameters/AddFilter"
},
{
"$ref": "#/components/parameters/UpdateFilter"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SongsResponse"
},
"examples": {
"songs": {
"summary": "songs",
"value": {
"total_count": 75,
"md5": "c776c28ee7bb4e7f46fd3bbfbf34c5ff",
"song": [
{
"id": "115",
"title": "Are we going Crazy",
"name": "Are we going Crazy",
"artist": {
"id": "27",
"name": "Chi.Otic",
"prefix": null,
"basename": "Chi.Otic"
},
"artists": [
{
"id": "27",
"name": "Chi.Otic",
"prefix": null,
"basename": "Chi.Otic"
}
],
"album": {
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea"
},
"albumartist": {
"id": "19",
"name": "Various Artists",
"prefix": null,
"basename": "Various Artists"
},
"disk": 1,
"disksubtitle": null,
"track": 7,
"filename": "/mnt/files-music/ampache-test/music/Various Artists/Buried In Nausea/07Chi.otic-AreWeGoingCrazy.wma",
"genre": [],
"playlisttrack": 1,
"time": 433,
"year": 2012,
"format": "wma",
"stream_format": "mp3",
"bitrate": 32582,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "cbr",
"mime": "audio/x-ms-wma",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=115&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Chi.Otic%20-%20Are%20we%20going%20Crazy.mp3",
"size": 1776580,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 1,
"comment": null,
"license": null,
"publisher": null,
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": null,
"replaygain_track_peak": null,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "107",
"title": "Arrest Me",
"name": "Arrest Me",
"artist": {
"id": "20",
"name": "R/B",
"prefix": null,
"basename": "R/B"
},
"artists": [
{
"id": "20",
"name": "R/B",
"prefix": null,
"basename": "R/B"
}
],
"album": {
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea"
},
"albumartist": {
"id": "19",
"name": "Various Artists",
"prefix": null,
"basename": "Various Artists"
},
"disk": 1,
"disksubtitle": null,
"track": 9,
"filename": "/mnt/files-music/ampache-test/music/Various Artists/Buried In Nausea/09R_b-ArrestMe.m4a",
"genre": [
{
"id": "7",
"name": "Punk"
}
],
"playlisttrack": 2,
"time": 96,
"year": 2012,
"format": "m4a",
"stream_format": "mp3",
"bitrate": 252864,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "audio/mp4",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=107&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=R-B%20-%20Arrest%20Me.mp3",
"size": 3091727,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": null,
"license": null,
"publisher": null,
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -1.35,
"replaygain_track_peak": 0.881,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "118",
"title": "As Pure as Possible",
"name": "As Pure as Possible",
"artist": {
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
},
"artists": [
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
}
],
"album": {
"id": "21",
"name": "Forget and Remember",
"prefix": null,
"basename": "Forget and Remember"
},
"albumartist": {
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
},
"disk": 1,
"disksubtitle": null,
"track": 9,
"filename": "/mnt/files-music/ampache-test/upload/user/Comfort Fit/Forget And Remember/9 - As Pure as Possible.mp3",
"genre": [
{
"id": "8",
"name": "Hip-Hop"
}
],
"playlisttrack": 3,
"time": 128,
"year": 2005,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 234690,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=118&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Comfort%20Fit%20-%20As%20Pure%20as%20Possible.mp3",
"size": 3789410,
"mbid": "7a3d740d-5546-4900-88af-b97b42c3344e",
"art": "https://music.com.au/image.php?object_id=21&object_type=album&id=435&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "4",
"composer": null,
"channels": 2,
"comment": "URL: http://freemusicarchive.org/music/Comfort_Fit/Forget_And_Remember/tdrlp02-09-comfort_fit-as_pure_as_possible\r\nComments: http://freemusicarchive.org/\r\nCurator: WFMU\r\nCopyright: Attribution-Noncommercial-No Derivative Works 3.0 Germany: http://creativecommons.org/licenses/by-nc-nd/3.0/de/",
"license": null,
"publisher": "Tokyo Dawn Records",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": null,
"replaygain_track_peak": null,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "85",
"title": "Beq Ultra Fat",
"name": "Beq Ultra Fat",
"artist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"artists": [
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
}
],
"album": {
"id": "8",
"name": "Nofi Devices",
"prefix": null,
"basename": "Nofi Devices"
},
"albumartist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"disk": 1,
"disksubtitle": null,
"track": 4,
"filename": "/mnt/files-music/ampache-test/music/Nofi_found/Nofi Devices LP/04_Beq_Ultra_Fat.mp3",
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"playlisttrack": 4,
"time": 413,
"year": 0,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 192000,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "cbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=85&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Nofi-found.%20-%20Beq%20Ultra%20Fat.mp3",
"size": 9935896,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=8&object_type=album&id=450&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": "Jeffrey Melton",
"channels": 2,
"comment": "8A114B0B+332232+11+150+3703+28283+76364+107382+132131+156082+177051+217892+239975+285087",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": 0.94,
"replaygain_track_peak": 0.989,
"r128_album_gain": null,
"r128_track_gain": null
}
]
}
}
}
}
},
"description": "Songs list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List songs",
"tags": [
"Songs"
],
"operationId": "songs",
"description": "Returns songs based on the specified filter"
}
},
"/songs/deleted": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DeletedSongsResponse"
},
"examples": {
"deleted_songs": {
"summary": "deleted songs",
"value": {
"total_count": 1,
"md5": "2d2d417c64a9eec20aec998181bb1bca",
"deleted_song": []
}
}
}
}
},
"description": "Deleted songs list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List deleted songs",
"tags": [
"Maintenance"
],
"operationId": "deletedSongs",
"description": "Returns songs that have been deleted from the server"
}
},
"/songs/lookup/url-to-song": {
"get": {
"parameters": [
{
"in": "query",
"name": "filter",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SongsResponse"
},
"examples": {
"url_to_song": {
"summary": "url to song",
"value": {
"total_count": 75,
"md5": "c776c28ee7bb4e7f46fd3bbfbf34c5ff",
"song": [
{
"id": "115",
"title": "Are we going Crazy",
"name": "Are we going Crazy",
"artist": {
"id": "27",
"name": "Chi.Otic",
"prefix": null,
"basename": "Chi.Otic"
},
"artists": [
{
"id": "27",
"name": "Chi.Otic",
"prefix": null,
"basename": "Chi.Otic"
}
],
"album": {
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea"
},
"albumartist": {
"id": "19",
"name": "Various Artists",
"prefix": null,
"basename": "Various Artists"
},
"disk": 1,
"disksubtitle": null,
"track": 7,
"filename": "/mnt/files-music/ampache-test/music/Various Artists/Buried In Nausea/07Chi.otic-AreWeGoingCrazy.wma",
"genre": [],
"playlisttrack": 1,
"time": 433,
"year": 2012,
"format": "wma",
"stream_format": "mp3",
"bitrate": 32582,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "cbr",
"mime": "audio/x-ms-wma",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=115&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Chi.Otic%20-%20Are%20we%20going%20Crazy.mp3",
"size": 1776580,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 1,
"comment": null,
"license": null,
"publisher": null,
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": null,
"replaygain_track_peak": null,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "107",
"title": "Arrest Me",
"name": "Arrest Me",
"artist": {
"id": "20",
"name": "R/B",
"prefix": null,
"basename": "R/B"
},
"artists": [
{
"id": "20",
"name": "R/B",
"prefix": null,
"basename": "R/B"
}
],
"album": {
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea"
},
"albumartist": {
"id": "19",
"name": "Various Artists",
"prefix": null,
"basename": "Various Artists"
},
"disk": 1,
"disksubtitle": null,
"track": 9,
"filename": "/mnt/files-music/ampache-test/music/Various Artists/Buried In Nausea/09R_b-ArrestMe.m4a",
"genre": [
{
"id": "7",
"name": "Punk"
}
],
"playlisttrack": 2,
"time": 96,
"year": 2012,
"format": "m4a",
"stream_format": "mp3",
"bitrate": 252864,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "audio/mp4",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=107&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=R-B%20-%20Arrest%20Me.mp3",
"size": 3091727,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": null,
"license": null,
"publisher": null,
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -1.35,
"replaygain_track_peak": 0.881,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "118",
"title": "As Pure as Possible",
"name": "As Pure as Possible",
"artist": {
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
},
"artists": [
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
}
],
"album": {
"id": "21",
"name": "Forget and Remember",
"prefix": null,
"basename": "Forget and Remember"
},
"albumartist": {
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
},
"disk": 1,
"disksubtitle": null,
"track": 9,
"filename": "/mnt/files-music/ampache-test/upload/user/Comfort Fit/Forget And Remember/9 - As Pure as Possible.mp3",
"genre": [
{
"id": "8",
"name": "Hip-Hop"
}
],
"playlisttrack": 3,
"time": 128,
"year": 2005,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 234690,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=118&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Comfort%20Fit%20-%20As%20Pure%20as%20Possible.mp3",
"size": 3789410,
"mbid": "7a3d740d-5546-4900-88af-b97b42c3344e",
"art": "https://music.com.au/image.php?object_id=21&object_type=album&id=435&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "4",
"composer": null,
"channels": 2,
"comment": "URL: http://freemusicarchive.org/music/Comfort_Fit/Forget_And_Remember/tdrlp02-09-comfort_fit-as_pure_as_possible\r\nComments: http://freemusicarchive.org/\r\nCurator: WFMU\r\nCopyright: Attribution-Noncommercial-No Derivative Works 3.0 Germany: http://creativecommons.org/licenses/by-nc-nd/3.0/de/",
"license": null,
"publisher": "Tokyo Dawn Records",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": null,
"replaygain_track_peak": null,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "85",
"title": "Beq Ultra Fat",
"name": "Beq Ultra Fat",
"artist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"artists": [
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
}
],
"album": {
"id": "8",
"name": "Nofi Devices",
"prefix": null,
"basename": "Nofi Devices"
},
"albumartist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"disk": 1,
"disksubtitle": null,
"track": 4,
"filename": "/mnt/files-music/ampache-test/music/Nofi_found/Nofi Devices LP/04_Beq_Ultra_Fat.mp3",
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"playlisttrack": 4,
"time": 413,
"year": 0,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 192000,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "cbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=85&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Nofi-found.%20-%20Beq%20Ultra%20Fat.mp3",
"size": 9935896,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=8&object_type=album&id=450&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": "Jeffrey Melton",
"channels": 2,
"comment": "8A114B0B+332232+11+150+3703+28283+76364+107382+132131+156082+177051+217892+239975+285087",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": 0.94,
"replaygain_track_peak": 0.989,
"r128_album_gain": null,
"r128_track_gain": null
}
]
}
}
}
}
},
"description": "Song object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Convert an Ampache URL back to a song object",
"tags": [
"Utilities"
],
"operationId": "urlToSongLookup",
"description": "This takes a url and returns the song object in question"
}
},
"/songs/playlist-generate": {
"get": {
"parameters": [
{
"in": "query",
"name": "mode",
"required": false,
"schema": {
"enum": [
"recent",
"forgotten",
"unplayed",
"random"
],
"type": "string"
}
},
{
"description": "LIKE match to song title",
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "album",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "artist",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "flag",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"in": "query",
"name": "format",
"required": false,
"schema": {
"enum": [
"song",
"index",
"id"
],
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlaylistGenerateResponse"
},
"examples": {
"playlist_generate_song": {
"summary": "playlist generate (song)",
"value": {
"total_count": 4,
"md5": "fbd1ff3b3abfd26054629cc0781681c0",
"song": [
{
"id": "102",
"title": "Moremque Sinistrum Sacrorum",
"name": "Moremque Sinistrum Sacrorum",
"artist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"artists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"album": {
"id": "10",
"name": "CARNÚN - MALKUTH (Demo 1996)",
"prefix": null,
"basename": "CARNÚN - MALKUTH (Demo 1996)"
},
"albumartist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"disk": 1,
"disksubtitle": null,
"track": 5,
"filename": "/mnt/files-music/ampache-test/music/Carnún/Malkuth (Demo1996)/05MoremqueSinistrumSacrorum.ogg",
"genre": [],
"playlisttrack": 1,
"time": 164,
"year": 1996,
"format": "ogg",
"stream_format": "mp3",
"bitrate": 106647,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "application/ogg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=102&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=CARN-N%20-%20Moremque%20Sinistrum%20Sacrorum.mp3",
"size": 2202971,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=10&object_type=album&id=63&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "Visit http://irish-metal.bandcamp.com;http://archive.org/details/Carnn_-_Malkuth_Demo1996",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -7.48,
"replaygain_track_peak": 1,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "103",
"title": "In The Seven Woods (Instrumental Re-Recording)",
"name": "In The Seven Woods (Instrumental Re-Recording)",
"artist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"artists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"album": {
"id": "10",
"name": "CARNÚN - MALKUTH (Demo 1996)",
"prefix": null,
"basename": "CARNÚN - MALKUTH (Demo 1996)"
},
"albumartist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"disk": 1,
"disksubtitle": null,
"track": 7,
"filename": "/mnt/files-music/ampache-test/music/Carnún/Malkuth (Demo1996)/07InTheSevenWoods_InstrumentalReRecording.ogg",
"genre": [],
"playlisttrack": 2,
"time": 452,
"year": 1996,
"format": "ogg",
"stream_format": "mp3",
"bitrate": 138338,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "application/ogg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=103&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=CARN-N%20-%20In%20The%20Seven%20Woods%20-Instrumental%20Re-Recording-.mp3",
"size": 7826238,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=10&object_type=album&id=63&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "Visit http://irish-metal.bandcamp.com;http://archive.org/details/Carnn_-_Malkuth_Demo1996",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -12.21,
"replaygain_track_peak": 1,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "90",
"title": "Invo",
"name": "Invo",
"artist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"artists": [
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
}
],
"album": {
"id": "8",
"name": "Nofi Devices",
"prefix": null,
"basename": "Nofi Devices"
},
"albumartist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"disk": 1,
"disksubtitle": null,
"track": 1,
"filename": "/mnt/files-music/ampache-test/music/Nofi_found/Nofi Devices LP/01_Invo.mp3",
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"playlisttrack": 3,
"time": 47,
"year": 0,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 192000,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "cbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=90&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Nofi-found.%20-%20Invo.mp3",
"size": 1140815,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=8&object_type=album&id=450&name=art.jpg",
"has_art": true,
"flag": true,
"rating": 5,
"averagerating": null,
"playcount": 1,
"catalog": "1",
"composer": "Jeffrey Melton",
"channels": 2,
"comment": "8A114B0B+332232+11+150+3703+28283+76364+107382+132131+156082+177051+217892+239975+285087",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -3.05,
"replaygain_track_peak": 0.933,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "91",
"title": "Home Capsules",
"name": "Home Capsules",
"artist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"artists": [
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
}
],
"album": {
"id": "8",
"name": "Nofi Devices",
"prefix": null,
"basename": "Nofi Devices"
},
"albumartist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"disk": 1,
"disksubtitle": null,
"track": 9,
"filename": "/mnt/files-music/ampache-test/music/Nofi_found/Nofi Devices LP/09_Home_Capsules.mp3",
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"playlisttrack": 4,
"time": 294,
"year": 0,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 192000,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "cbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=91&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Nofi-found.%20-%20Home%20Capsules.mp3",
"size": 7076428,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=8&object_type=album&id=450&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": "Jeffrey Melton",
"channels": 2,
"comment": "8A114B0B+332232+11+150+3703+28283+76364+107382+132131+156082+177051+217892+239975+285087",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -2.97,
"replaygain_track_peak": 1,
"r128_album_gain": null,
"r128_track_gain": null
}
]
}
},
"playlist_generate_index": {
"summary": "playlist generate (index)",
"value": {
"total_count": 4,
"md5": "6bab7ef28265c03b16c0191b8da63569",
"song": [
{
"id": "130",
"title": "Something to Do",
"name": "Something to Do",
"artist": {
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
},
"artists": [
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
}
],
"album": {
"id": "21",
"name": "Forget and Remember",
"prefix": null,
"basename": "Forget and Remember"
},
"albumartist": {
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
},
"disk": 1,
"disksubtitle": null,
"track": 17,
"filename": "/mnt/files-music/ampache-test/upload/user/Comfort Fit/Forget And Remember/17 - Something To Do.mp3",
"genre": [
{
"id": "8",
"name": "Hip-Hop"
}
],
"playlisttrack": 1,
"time": 261,
"year": 2005,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 246373,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=130&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Comfort%20Fit%20-%20Something%20to%20Do.mp3",
"size": 8072761,
"mbid": "143eca6b-26d6-4b5d-a6b2-7e7cc9e05769",
"art": "https://music.com.au/image.php?object_id=21&object_type=album&id=435&name=art.jpg",
"has_art": true,
"flag": false,
"rating": 5,
"averagerating": null,
"playcount": 1,
"catalog": "4",
"composer": null,
"channels": 2,
"comment": "URL: http://freemusicarchive.org/music/Comfort_Fit/Forget_And_Remember/tdrlp02-17-comfort_fit-something_to_do_feat_blaktroniks\r\nComments: http://freemusicarchive.org/\r\nCurator: WFMU\r\nCopyright: Attribution-Noncommercial-No Derivative Works 3.0 Germany: http://creativecommons.org/licenses/by-nc-nd/3.0/de/",
"license": null,
"publisher": "Tokyo Dawn Records",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": null,
"replaygain_track_peak": null,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "64",
"title": "Black&BlueSmoke",
"name": "Black&BlueSmoke",
"artist": {
"id": "2",
"name": "Synthetic",
"prefix": null,
"basename": "Synthetic"
},
"artists": [
{
"id": "2",
"name": "Synthetic",
"prefix": null,
"basename": "Synthetic"
}
],
"album": {
"id": "2",
"name": "Colorsmoke EP",
"prefix": null,
"basename": "Colorsmoke EP"
},
"albumartist": {
"id": "2",
"name": "Synthetic",
"prefix": null,
"basename": "Synthetic"
},
"disk": 1,
"disksubtitle": null,
"track": 1,
"filename": "/mnt/files-music/ampache-test/music/Synthetic/Synthetic_-_Colorsmoke_EP-20k217-2007/01-Synthetic_-_BlackBlueSmokeDM20k22kh.wma",
"genre": [
{
"id": "1",
"name": "Electronic"
}
],
"playlisttrack": 2,
"time": 500,
"year": 2007,
"format": "wma",
"stream_format": "mp3",
"bitrate": 20627,
"stream_bitrate": 32000,
"rate": 22050,
"mode": "cbr",
"mime": "audio/x-ms-wma",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=64&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Synthetic%20-%20Black-BlueSmoke.mp3",
"size": 1298295,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=2&object_type=album&id=427&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "Made with Sony ACID 5",
"license": null,
"publisher": "20kbps rec.",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": null,
"replaygain_track_peak": null,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "104",
"title": "The Infernal Serpent",
"name": "The Infernal Serpent",
"artist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"artists": [
{
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
}
],
"album": {
"id": "10",
"name": "CARNÚN - MALKUTH (Demo 1996)",
"prefix": null,
"basename": "CARNÚN - MALKUTH (Demo 1996)"
},
"albumartist": {
"id": "16",
"name": "CARNÚN",
"prefix": null,
"basename": "CARNÚN"
},
"disk": 1,
"disksubtitle": null,
"track": 4,
"filename": "/mnt/files-music/ampache-test/music/Carnún/Malkuth (Demo1996)/04TheInfernalSerpent.ogg",
"genre": [],
"playlisttrack": 3,
"time": 404,
"year": 1996,
"format": "ogg",
"stream_format": "mp3",
"bitrate": 100053,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "application/ogg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=104&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=CARN-N%20-%20The%20Infernal%20Serpent.mp3",
"size": 5066698,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=10&object_type=album&id=63&name=art.jpg",
"has_art": true,
"flag": false,
"rating": 5,
"averagerating": 4.5,
"playcount": 1,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "Visit http://irish-metal.bandcamp.com;http://archive.org/details/Carnn_-_Malkuth_Demo1996",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -11.26,
"replaygain_track_peak": 1,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "96",
"title": "Creeping Lawler 2",
"name": "Creeping Lawler 2",
"artist": {
"id": "15",
"name": "Warfare 3.0",
"prefix": null,
"basename": "Warfare 3.0"
},
"artists": [
{
"id": "15",
"name": "Warfare 3.0",
"prefix": null,
"basename": "Warfare 3.0"
}
],
"album": {
"id": "9",
"name": "Creeping Lawler 2",
"prefix": null,
"basename": "Creeping Lawler 2"
},
"albumartist": {
"id": "15",
"name": "Warfare 3.0",
"prefix": null,
"basename": "Warfare 3.0"
},
"disk": 1,
"disksubtitle": null,
"track": 1,
"filename": "/mnt/files-music/ampache-test/music/Warfare 3.0/Creeping Lawler 2/01 - Creeping Lawler 2.wav",
"genre": [],
"playlisttrack": 4,
"time": 296,
"year": 0,
"format": "wav",
"stream_format": "mp3",
"bitrate": 1411200,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "cbr",
"mime": "audio/wav",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=96&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Warfare%203.0%20-%20Creeping%20Lawler%202.mp3",
"size": 52345628,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=9&object_type=album&id=455&name=art.jpg",
"has_art": true,
"flag": true,
"rating": 5,
"averagerating": null,
"playcount": 5,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": null,
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -4.31,
"replaygain_track_peak": 0.989,
"r128_album_gain": null,
"r128_track_gain": null
}
]
}
},
"playlist_generate_id": {
"summary": "playlist generate (id)",
"value": [
"122",
"85",
"118",
"133",
"129",
"119",
"83",
"114",
"99",
"95",
"134",
"117",
"56",
"78",
"59",
"106",
"128",
"84",
"65",
"96",
"110",
"63",
"125",
"115",
"130",
"132",
"116",
"75",
"121",
"108",
"77",
"64",
"90",
"81",
"109",
"105",
"76",
"101",
"82",
"92",
"89",
"131",
"57",
"94",
"62",
"107",
"80",
"124",
"126",
"97",
"113",
"73",
"93",
"127",
"112",
"54",
"55",
"104",
"79",
"86",
"120",
"102",
"60",
"135",
"88",
"98",
"103",
"87",
"91",
"61",
"123",
"74",
"58",
"111",
"100"
]
}
}
}
},
"description": "Generated list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Generate a playlist result set (song, index, or id)",
"tags": [
"Playlists"
],
"operationId": "playlistGenerateSongs",
"description": "Get a list of song JSON, indexes or id's based on some simple search criteria 'recent' will search for tracks played after 'Popular Threshold' days 'forgotten' will search for tracks played before 'Popular Threshold' days 'unplayed' added in 400002 for searching unplayed tracks"
}
},
"/songs/search": {
"get": {
"description": "Provide operator plus one or more rule triplets. At minimum, rule_1, rule_1_operator, rule_1_input are required. Additional rules may be supplied as rule_2, rule_2_operator, rule_2_input, etc.",
"operationId": "searchSongs",
"parameters": [
{
"$ref": "#/components/parameters/Operator"
},
{
"description": "0, 1 (random order of results; default to 0)",
"in": "query",
"name": "random",
"required": false,
"schema": {
"default": false,
"type": "boolean"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Rule1"
},
{
"$ref": "#/components/parameters/Rule1Operator"
},
{
"$ref": "#/components/parameters/Rule1Input"
},
{
"$ref": "#/components/parameters/Rule2"
},
{
"$ref": "#/components/parameters/Rule2Operator"
},
{
"$ref": "#/components/parameters/Rule2Input"
},
{
"$ref": "#/components/parameters/Rule3"
},
{
"$ref": "#/components/parameters/Rule3Operator"
},
{
"$ref": "#/components/parameters/Rule3Input"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SongsResponse"
},
"examples": {
"songs": {
"summary": "songs (search results)",
"value": {
"total_count": 75,
"md5": "c776c28ee7bb4e7f46fd3bbfbf34c5ff",
"song": [
{
"id": "115",
"title": "Are we going Crazy",
"name": "Are we going Crazy",
"artist": {
"id": "27",
"name": "Chi.Otic",
"prefix": null,
"basename": "Chi.Otic"
},
"artists": [
{
"id": "27",
"name": "Chi.Otic",
"prefix": null,
"basename": "Chi.Otic"
}
],
"album": {
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea"
},
"albumartist": {
"id": "19",
"name": "Various Artists",
"prefix": null,
"basename": "Various Artists"
},
"disk": 1,
"disksubtitle": null,
"track": 7,
"filename": "/mnt/files-music/ampache-test/music/Various Artists/Buried In Nausea/07Chi.otic-AreWeGoingCrazy.wma",
"genre": [],
"playlisttrack": 1,
"time": 433,
"year": 2012,
"format": "wma",
"stream_format": "mp3",
"bitrate": 32582,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "cbr",
"mime": "audio/x-ms-wma",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=115&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Chi.Otic%20-%20Are%20we%20going%20Crazy.mp3",
"size": 1776580,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 1,
"comment": null,
"license": null,
"publisher": null,
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": null,
"replaygain_track_peak": null,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "107",
"title": "Arrest Me",
"name": "Arrest Me",
"artist": {
"id": "20",
"name": "R/B",
"prefix": null,
"basename": "R/B"
},
"artists": [
{
"id": "20",
"name": "R/B",
"prefix": null,
"basename": "R/B"
}
],
"album": {
"id": "12",
"name": "Buried in Nausea",
"prefix": null,
"basename": "Buried in Nausea"
},
"albumartist": {
"id": "19",
"name": "Various Artists",
"prefix": null,
"basename": "Various Artists"
},
"disk": 1,
"disksubtitle": null,
"track": 9,
"filename": "/mnt/files-music/ampache-test/music/Various Artists/Buried In Nausea/09R_b-ArrestMe.m4a",
"genre": [
{
"id": "7",
"name": "Punk"
}
],
"playlisttrack": 2,
"time": 96,
"year": 2012,
"format": "m4a",
"stream_format": "mp3",
"bitrate": 252864,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "audio/mp4",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=107&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=R-B%20-%20Arrest%20Me.mp3",
"size": 3091727,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=12&object_type=album&id=66&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": null,
"license": null,
"publisher": null,
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -1.35,
"replaygain_track_peak": 0.881,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "118",
"title": "As Pure as Possible",
"name": "As Pure as Possible",
"artist": {
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
},
"artists": [
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
}
],
"album": {
"id": "21",
"name": "Forget and Remember",
"prefix": null,
"basename": "Forget and Remember"
},
"albumartist": {
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
},
"disk": 1,
"disksubtitle": null,
"track": 9,
"filename": "/mnt/files-music/ampache-test/upload/user/Comfort Fit/Forget And Remember/9 - As Pure as Possible.mp3",
"genre": [
{
"id": "8",
"name": "Hip-Hop"
}
],
"playlisttrack": 3,
"time": 128,
"year": 2005,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 234690,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=118&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Comfort%20Fit%20-%20As%20Pure%20as%20Possible.mp3",
"size": 3789410,
"mbid": "7a3d740d-5546-4900-88af-b97b42c3344e",
"art": "https://music.com.au/image.php?object_id=21&object_type=album&id=435&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "4",
"composer": null,
"channels": 2,
"comment": "URL: http://freemusicarchive.org/music/Comfort_Fit/Forget_And_Remember/tdrlp02-09-comfort_fit-as_pure_as_possible\r\nComments: http://freemusicarchive.org/\r\nCurator: WFMU\r\nCopyright: Attribution-Noncommercial-No Derivative Works 3.0 Germany: http://creativecommons.org/licenses/by-nc-nd/3.0/de/",
"license": null,
"publisher": "Tokyo Dawn Records",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": null,
"replaygain_track_peak": null,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "85",
"title": "Beq Ultra Fat",
"name": "Beq Ultra Fat",
"artist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"artists": [
{
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
}
],
"album": {
"id": "8",
"name": "Nofi Devices",
"prefix": null,
"basename": "Nofi Devices"
},
"albumartist": {
"id": "14",
"name": "Nofi/found.",
"prefix": null,
"basename": "Nofi/found."
},
"disk": 1,
"disksubtitle": null,
"track": 4,
"filename": "/mnt/files-music/ampache-test/music/Nofi_found/Nofi Devices LP/04_Beq_Ultra_Fat.mp3",
"genre": [
{
"id": "5",
"name": "Electronica"
},
{
"id": "6",
"name": "Dance"
}
],
"playlisttrack": 4,
"time": 413,
"year": 0,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 192000,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "cbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=85&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Nofi-found.%20-%20Beq%20Ultra%20Fat.mp3",
"size": 9935896,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=8&object_type=album&id=450&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": "Jeffrey Melton",
"channels": 2,
"comment": "8A114B0B+332232+11+150+3703+28283+76364+107382+132131+156082+177051+217892+239975+285087",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": 0.94,
"replaygain_track_peak": 0.989,
"r128_album_gain": null,
"r128_track_gain": null
}
]
}
}
}
}
},
"description": "Search results"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Search for media entities using rule triplets",
"tags": [
"Songs",
"Search"
]
}
},
"/songs/stats": {
"get": {
"parameters": [
{
"description": "newest, highest, frequent, recent, forgotten, flagged, random",
"in": "query",
"name": "filter",
"required": true,
"schema": {
"default": "random",
"enum": [
"newest",
"highest",
"frequent",
"recent",
"forgotten",
"flagged",
"random"
],
"type": "string"
}
},
{
"in": "query",
"name": "user_id",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "username",
"required": false,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SongsResponse"
},
"examples": {
"stats_song": {
"summary": "stats (song)",
"value": {
"total_count": 2,
"md5": "ebf6a1c353d8d6490cc93b9cc2f7ba86",
"song": [
{
"id": "125",
"title": "Take a Look",
"name": "Take a Look",
"artist": {
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
},
"artists": [
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
}
],
"album": {
"id": "21",
"name": "Forget and Remember",
"prefix": null,
"basename": "Forget and Remember"
},
"albumartist": {
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
},
"disk": 1,
"disksubtitle": null,
"track": 5,
"filename": "/mnt/files-music/ampache-test/upload/user/Comfort Fit/Forget And Remember/5 - Take a Look.mp3",
"genre": [
{
"id": "8",
"name": "Hip-Hop"
}
],
"playlisttrack": 1,
"time": 230,
"year": 2005,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 243729,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=125&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Comfort%20Fit%20-%20Take%20a%20Look.mp3",
"size": 7018987,
"mbid": "8a3bdac5-f0bd-4197-9deb-d4880d6f3b6d",
"art": "https://music.com.au/image.php?object_id=21&object_type=album&id=435&name=art.jpg",
"has_art": true,
"flag": false,
"rating": 5,
"averagerating": null,
"playcount": 0,
"catalog": "4",
"composer": null,
"channels": 2,
"comment": "URL: http://freemusicarchive.org/music/Comfort_Fit/Forget_And_Remember/tdrlp02-05-comfort_fit-take_a_look\r\nComments: http://freemusicarchive.org/\r\nCurator: WFMU\r\nCopyright: Attribution-Noncommercial-No Derivative Works 3.0 Germany: http://creativecommons.org/licenses/by-nc-nd/3.0/de/",
"license": null,
"publisher": "Tokyo Dawn Records",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": null,
"replaygain_track_peak": null,
"r128_album_gain": null,
"r128_track_gain": null
},
{
"id": "126",
"title": "Don't Show This Message Again",
"name": "Don't Show This Message Again",
"artist": {
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
},
"artists": [
{
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
}
],
"album": {
"id": "21",
"name": "Forget and Remember",
"prefix": null,
"basename": "Forget and Remember"
},
"albumartist": {
"id": "36",
"name": "Comfort Fit",
"prefix": null,
"basename": "Comfort Fit"
},
"disk": 1,
"disksubtitle": null,
"track": 12,
"filename": "/mnt/files-music/ampache-test/upload/user/Comfort Fit/Forget And Remember/12 - Don’t Show This Message Again.mp3",
"genre": [
{
"id": "8",
"name": "Hip-Hop"
}
],
"playlisttrack": 2,
"time": 197,
"year": 2005,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 232690,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=126&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Comfort%20Fit%20-%20Don-t%20Show%20This%20Message%20Again.mp3",
"size": 5755191,
"mbid": "6b582438-c034-47c2-86b0-61c63ec96b4b",
"art": "https://music.com.au/image.php?object_id=21&object_type=album&id=435&name=art.jpg",
"has_art": true,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"catalog": "4",
"composer": null,
"channels": 2,
"comment": "URL: http://freemusicarchive.org/music/Comfort_Fit/Forget_And_Remember/tdrlp02-12-comfort_fit-dont_show_this_message_again\r\nComments: http://freemusicarchive.org/\r\nCurator: WFMU\r\nCopyright: Attribution-Noncommercial-No Derivative Works 3.0 Germany: http://creativecommons.org/licenses/by-nc-nd/3.0/de/",
"license": null,
"publisher": "Tokyo Dawn Records",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": null,
"replaygain_track_peak": null,
"r128_album_gain": null,
"r128_track_gain": null
}
]
}
}
}
}
},
"description": "Stats result"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get stats (song/album/artist etc) by type and filter",
"tags": [
"Browsing, Indexes and Lists"
],
"operationId": "statsSongs",
"description": "Get some items based on some simple search types and filters. (Random by default) This method **HAD** partial backwards compatibility with older api versions but it has now been removed Pass -1 limit to get all results. (0 will fall back to the `popular_threshold` value)"
}
},
"/songs/{song_id}": {
"delete": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"song": {
"summary": "song",
"value": {
"id": "97",
"title": "Creeping Lawler 2",
"name": "Creeping Lawler 2",
"artist": {
"id": "15",
"name": "Warfare 3.0",
"prefix": null,
"basename": "Warfare 3.0"
},
"artists": [
{
"id": "15",
"name": "Warfare 3.0",
"prefix": null,
"basename": "Warfare 3.0"
}
],
"album": {
"id": "9",
"name": "Creeping Lawler 2",
"prefix": null,
"basename": "Creeping Lawler 2"
},
"albumartist": {
"id": "15",
"name": "Warfare 3.0",
"prefix": null,
"basename": "Warfare 3.0"
},
"disk": 1,
"disksubtitle": null,
"track": 1,
"filename": "/mnt/files-music/ampache-test/music/Warfare 3.0/Creeping Lawler 2/01 - Creeping Lawler 2.mp3",
"genre": [],
"playlisttrack": 1,
"time": 296,
"year": 0,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 177349,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=97&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Warfare%203.0%20-%20Creeping%20Lawler%202.mp3",
"size": 6652448,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=9&object_type=album&id=455&name=art.jpg",
"has_art": true,
"flag": true,
"rating": 5,
"averagerating": null,
"playcount": 0,
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "https://archive.org/details/Creeping_Lawler_2",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -4.32,
"replaygain_track_peak": 0.977,
"r128_album_gain": null,
"r128_track_gain": null
}
}
}
}
},
"description": "Deleted"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Delete a song",
"tags": [
"Songs"
],
"operationId": "songDelete",
"description": "Delete an existing song. (if you are allowed to)"
},
"get": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SongObject"
},
"examples": {
"song": {
"summary": "song",
"value": {
"id": "97",
"title": "Creeping Lawler 2",
"name": "Creeping Lawler 2",
"artist": {
"id": "15",
"name": "Warfare 3.0",
"prefix": null,
"basename": "Warfare 3.0"
},
"artists": [
{
"id": "15",
"name": "Warfare 3.0",
"prefix": null,
"basename": "Warfare 3.0"
}
],
"album": {
"id": "9",
"name": "Creeping Lawler 2",
"prefix": null,
"basename": "Creeping Lawler 2"
},
"albumartist": {
"id": "15",
"name": "Warfare 3.0",
"prefix": null,
"basename": "Warfare 3.0"
},
"disk": 1,
"disksubtitle": null,
"bpm": 128.0,
"track": 1,
"filename": "/mnt/files-music/ampache-test/music/Warfare 3.0/Creeping Lawler 2/01 - Creeping Lawler 2.mp3",
"genre": [],
"mood": [],
"playlisttrack": 1,
"time": 296,
"year": 0,
"format": "mp3",
"stream_format": "mp3",
"bitrate": 177349,
"stream_bitrate": 32000,
"rate": 44100,
"mode": "vbr",
"mime": "audio/mpeg",
"stream_mime": "audio/mpeg",
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=song&oid=97&uid=4&transcode_to=mp3&bitrate=32000&player=api&name=Warfare%203.0%20-%20Creeping%20Lawler%202.mp3",
"size": 6652448,
"mbid": null,
"art": "https://music.com.au/image.php?object_id=9&object_type=album&id=455&name=art.jpg",
"has_art": true,
"flag": true,
"rating": 5,
"averagerating": null,
"playcount": 0,
"last_played": "2026-07-27T08:19:12+00:00",
"catalog": "1",
"composer": null,
"channels": 2,
"comment": "https://archive.org/details/Creeping_Lawler_2",
"license": null,
"publisher": "archive.org",
"language": null,
"lyrics": null,
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -4.32,
"replaygain_track_peak": 0.977,
"r128_album_gain": null,
"r128_track_gain": null
}
}
}
}
},
"description": "Song details"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get song by ID",
"tags": [
"Songs"
],
"operationId": "song",
"description": "returns a single song"
}
},
"/songs/{song_id}/art": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
},
{
"description": "widthxheight, e.g. 640x480",
"in": "query",
"name": "size",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "The image itself, written straight to the response body",
"headers": {
"Content-Type": {
"description": "The stored art mime type (e.g. `image/jpeg`, `image/png`)",
"schema": {
"type": "string"
}
},
"Content-Length": {
"description": "Size of the image in bytes",
"schema": {
"type": "integer"
}
},
"Access-Control-Allow-Origin": {
"description": "Always `*`, so art can be loaded cross-origin",
"schema": {
"type": "string"
}
}
},
"content": {
"image/*": {
"schema": {
"type": "string",
"format": "binary"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get art image (binary)",
"tags": [
"Artwork"
],
"operationId": "getArtSongs",
"description": "Get an art image."
}
},
"/songs/{song_id}/bookmark": {
"delete": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
},
{
"$ref": "#/components/parameters/Client"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"bookmark_create": {
"summary": "bookmark create",
"value": {
"id": "81",
"owner": "user",
"object_type": "song",
"object_id": "97",
"position": 0,
"client": "python3-ampache",
"creation_date": 1670202706,
"update_date": 1784539940
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Delete a bookmark",
"tags": [
"Bookmarks"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkDeleteRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/BookmarkDeleteRequest"
}
}
}
},
"operationId": "bookmarkDeleteSongs",
"description": "Delete an existing bookmark. (if it exists)"
},
"get": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkObject"
},
"examples": {
"bookmark_create": {
"summary": "bookmark create",
"value": {
"id": "81",
"owner": "user",
"object_type": "song",
"object_id": "97",
"position": 0,
"client": "python3-ampache",
"creation_date": 1670202706,
"update_date": 1784539940
}
}
}
}
},
"description": "Bookmark object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get bookmark by ID",
"tags": [
"Bookmarks"
],
"operationId": "bookmarkSongs",
"description": "Get a single bookmark by bookmark_id"
},
"patch": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
},
{
"in": "query",
"name": "position",
"required": false,
"schema": {
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Client"
},
{
"in": "query",
"name": "date",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkObject"
},
"examples": {
"bookmark_create": {
"summary": "bookmark create",
"value": {
"id": "81",
"owner": "user",
"object_type": "song",
"object_id": "97",
"position": 0,
"client": "python3-ampache",
"creation_date": 1670202706,
"update_date": 1784539940
}
}
}
}
},
"description": "Bookmark array"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Edit a bookmark",
"tags": [
"Bookmarks"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkEditRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/BookmarkEditRequest"
}
}
}
},
"operationId": "bookmarkEditSongs",
"description": "Edit a placeholder for the current media that you can return to later."
},
"put": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
},
{
"in": "query",
"name": "position",
"required": false,
"schema": {
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Client"
},
{
"in": "query",
"name": "date",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkObject"
},
"examples": {
"bookmark_create": {
"summary": "bookmark create",
"value": {
"id": "81",
"owner": "user",
"object_type": "song",
"object_id": "97",
"position": 0,
"client": "python3-ampache",
"creation_date": 1670202706,
"update_date": 1784539940
}
}
}
}
},
"description": "Bookmark object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a bookmark",
"tags": [
"Bookmarks"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkCreateSongsBookmarkRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/BookmarkCreateSongsBookmarkRequest"
}
}
}
},
"operationId": "bookmarkCreateSongs",
"description": "Create a placeholder for the current media that you can return to later."
}
},
"/songs/{song_id}/download": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
},
{
"description": "Max bitrate for transcoding in bits per second (e.g 192000 = 192Kb)",
"in": "query",
"name": "bitrate",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "format",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "stats",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"description": "Zip archive of the container's media files (only when `zip=1` is sent for a zipable type)",
"headers": {
"Content-Type": {
"description": "Always `application/zip`",
"schema": {
"type": "string"
}
},
"Content-Disposition": {
"description": "`attachment` with the archive name, RFC 5987 encoded",
"schema": {
"type": "string"
}
}
},
"content": {
"application/zip": {
"schema": {
"type": "string",
"format": "binary"
}
}
}
},
"302": {
"description": "Redirect to the media url; the stream itself is served from the `Location` header",
"headers": {
"Location": {
"description": "Absolute url of the media stream",
"schema": {
"type": "string",
"format": "uri"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"416": {
"description": "Range not satisfiable",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"error4710": {
"$ref": "#/components/examples/error4710"
}
}
}
}
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Download a media file (binary)",
"tags": [
"Streaming and Downloads"
],
"operationId": "downloadSongs",
"description": "Downloads a given media file. set format=raw to download the full file"
}
},
"/songs/{song_id}/fetch-metadata": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ExternalMetadataResponse"
},
"examples": {
"get_external_metadata": {
"summary": "get_external_metadata (no plugin answered)",
"value": {
"total_count": 0,
"md5": "40cd750bba9870f18aada2478b24840a",
"song": []
}
}
}
}
},
"description": "External metadata array"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get external metadata for a song",
"tags": [
"Songs",
"Utilities"
],
"operationId": "getExternalMetadataSongsFetchMetadata",
"description": "Return External plugin metadata searching by object id and type"
}
},
"/songs/{song_id}/flag": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
},
{
"in": "query",
"name": "flag",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "flag",
"value": {
"success": "flag ADDED to 91"
}
}
}
}
},
"description": "Updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Flag or unflag an item as favourite",
"tags": [
"Ratings and Flags"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FlagRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/FlagRequest"
}
}
}
},
"operationId": "flagSongs",
"description": "This flags a library item as a favorite"
}
},
"/songs/{song_id}/localplay": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
},
{
"in": "query",
"name": "command",
"required": false,
"schema": {
"enum": [
"add"
],
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"song",
"video",
"podcast_episode",
"broadcast",
"live_stream",
"democratic"
],
"type": "string"
}
},
{
"in": "query",
"name": "clear",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayResponse"
},
"examples": {
"localplay": {
"summary": "localplay",
"value": {
"localplay": {
"command": {
"stop": true
}
}
}
},
"localplay_status": {
"summary": "localplay (status)",
"value": {
"localplay": {
"command": {
"status": {
"state": "stop",
"volume": "100",
"repeat": false,
"random": false,
"track": 2,
"track_title": "Unknown",
"track_artist": "Unknown",
"track_album": "Unknown"
}
}
}
}
}
}
}
},
"description": "Localplay response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Add media to the localplay server",
"tags": [
"Playback Control"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/LocalplayRequest"
}
}
}
},
"operationId": "localplaySongsLocalplay",
"description": "This is for controlling localplay"
}
},
"/songs/{song_id}/lyrics": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
},
{
"description": "Disable plugin lookup if 0 (default 1)",
"in": "query",
"name": "plugins",
"required": true,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LyricsResponse"
},
"examples": {
"get_lyrics": {
"summary": "get_lyrics (no lyrics found)",
"value": {
"object_id": "1",
"object_type": "song",
"plugin": []
}
}
}
}
},
"description": "Lyrics/plugins response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get lyrics from DB or plugins by song id",
"tags": [
"Songs",
"Utilities"
],
"operationId": "getLyricsSongs",
"description": "Return Database lyrics or search with plugins by Song id"
}
},
"/songs/{song_id}/playback": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"song",
"video",
"podcast_episode"
],
"type": "string"
}
},
{
"in": "query",
"name": "state",
"required": false,
"schema": {
"enum": [
"play",
"stop"
],
"type": "string"
}
},
{
"in": "query",
"name": "time",
"required": false,
"schema": {
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Client"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/NowPlayingResponse"
},
"examples": {
"success": {
"summary": "success",
"value": {
"now_playing": []
}
}
}
}
},
"description": "Now playing response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Update the server with the client player state",
"tags": [
"Now Playing"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlayerRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/PlayerRequest"
}
}
}
},
"operationId": "playerSongsPlayback",
"description": "Inform the server about the state of your client. (Song you are playing, Play/Pause state, etc.)"
}
},
"/songs/{song_id}/rate": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
},
{
"in": "query",
"name": "rating",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "rate",
"value": {
"success": "rating set to 5 for 91"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Rate a library item",
"tags": [
"Ratings and Flags"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/RateRequest"
}
}
}
},
"operationId": "rateSongs",
"description": "This rates a library item"
}
},
"/songs/{song_id}/record-play": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
},
{
"in": "query",
"name": "user",
"required": false,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/Client"
},
{
"in": "query",
"name": "date",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "record play",
"value": {
"success": "successfully recorded play: 91 for: user"
}
}
}
}
},
"description": "Recorded"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Record a play for a song",
"tags": [
"Now Playing"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RecordPlayRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/RecordPlayRequest"
}
}
}
},
"operationId": "recordPlaySongs",
"description": "Take a song_id and update the object_count and user_activity table with a play. This allows other sources to record play history to Ampache."
}
},
"/songs/{song_id}/share": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
},
{
"in": "query",
"name": "description",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "days to keep active",
"in": "query",
"name": "expires",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareObject"
},
"examples": {
"share": {
"summary": "share",
"value": {
"id": "1",
"name": "Creeping Lawler 2",
"owner": "user",
"allow_stream": true,
"allow_download": false,
"creation_date": 1670202706,
"lastvisit_date": 1614129643,
"object_type": "album",
"object_id": "9",
"expire_days": 0,
"max_counter": 0,
"counter": 1,
"secret": "GJ7EzBPT",
"public_url": "https://music.com.au/share.php?id=1&secret=GJ7EzBPT",
"description": "Creeping Lawler 2 (Warfare 3.0)"
}
}
}
}
},
"description": "Share created"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a public share URL",
"tags": [
"Shares"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareCreateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/ShareCreateRequest"
}
}
}
},
"operationId": "shareCreateSongs",
"description": "Create a public url that can be used by anyone to stream media. Takes the file id with optional description and expires parameters."
}
},
"/songs/{song_id}/similar": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SongsResponse"
},
"examples": {
"get_similar": {
"summary": "get similar",
"value": {
"total_count": 0,
"md5": "40cd750bba9870f18aada2478b24840a",
"song": []
}
}
}
}
},
"description": "Similar list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get similar songs",
"tags": [
"Songs"
],
"operationId": "getSimilarSongs",
"description": "Return similar artist id's or similar song ids compared to the input filter"
}
},
"/songs/{song_id}/sonic-match": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Offset"
}
],
"responses": {
"200": {
"description": "Songs that sound like this one, most similar first, each with its similarity score",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SonicMatchResponse"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Songs that sound like this song",
"tags": [
"Song"
],
"operationId": "sonicMatchSongs",
"description": "Similarity is derived from analysing the audio, which Ampache does not do itself, so this needs a sonic-analysis plugin (see the AudioMuse plugin). With none enabled the request is refused with 403 rather than answered with an empty list. `similarity` runs 0.0-1.0 where 1.0 is the same recording, matching the OpenSubsonic `sonicMatch` scale, and is -1 when the backend gives no comparable score."
}
},
"/songs/{song_id}/stream": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
},
{
"description": "Max bitrate for transcoding in bits per second (e.g 192000 = 192Kb)",
"in": "query",
"name": "bitrate",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "format",
"required": false,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"in": "query",
"name": "length",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"in": "query",
"name": "stats",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"302": {
"description": "Redirect to the media url; the stream itself is served from the `Location` header",
"headers": {
"Location": {
"description": "Absolute url of the media stream",
"schema": {
"type": "string",
"format": "uri"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"416": {
"description": "Range not satisfiable",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"error4710": {
"$ref": "#/components/examples/error4710"
}
}
}
}
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Stream a media file (binary)",
"tags": [
"Streaming and Downloads"
],
"operationId": "streamSongs",
"description": "Streams a given media file. Takes the file id in parameter with optional max bit rate, file format, time offset, size and estimate content length option."
}
},
"/songs/{song_id}/tags": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SongTagObject"
},
"examples": {
"song_tags": {
"summary": "song tags",
"value": {
"id": "97",
"albumartist": "Warfare 3.0",
"album": "Creeping Lawler 2",
"artist": "Warfare 3.0",
"artists": null,
"art": "",
"audio_codec": "mp3",
"barcode": "",
"bitrate": 177349,
"bpm": 128.0,
"catalog": null,
"catalog_number": "",
"channels": 2,
"comment": "https://archive.org/details/",
"composer": "",
"description": "",
"disk": 0,
"disksubtitle": "",
"display_x": 0,
"display_y": 0,
"encoding": "UTF-8",
"file": "/mnt/files-music/ampache-test/music/Warfare 3.0/Creeping Lawler 2/01 - Creeping Lawler 2.mp3",
"frame_rate": 0,
"genre": null,
"isrc": null,
"language": "",
"lyrics": null,
"mb_albumartistid": "",
"mb_albumartistid_array": null,
"mb_albumid_group": "",
"mb_albumid": "",
"mb_artistid": "",
"mb_artistid_array": null,
"mb_trackid": "",
"mime": "audio/mpeg",
"mode": "vbr",
"original_name": "",
"original_year": "",
"publisher": "archive.org",
"r128_album_gain": null,
"r128_track_gain": null,
"rate": 44100,
"rating": null,
"release_date": null,
"release_status": "",
"release_type": "",
"replaygain_album_gain": null,
"replaygain_album_peak": null,
"replaygain_track_gain": -4.32,
"replaygain_track_peak": 0.977,
"size": 6652320,
"version": "",
"summary": null,
"time": 296,
"title": "Creeping Lawler 2",
"totaldisks": 0,
"totaltracks": 0,
"track": 1,
"year": 2006
}
}
}
}
},
"description": "Song tags"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get full file tags for a song",
"tags": [
"Songs",
"Utilities"
],
"operationId": "songTags",
"description": "Get the full song file tags using VaInfo"
}
},
"/songs/{song_id}/update-tags": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/SongId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"update_from_tags": {
"summary": "update from tags",
"value": {
"error": {
"errorCode": "4702",
"errorAction": "update_from_tags",
"errorType": "system",
"errorMessage": "Generic error"
}
}
}
}
}
},
"description": "Updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Update object metadata from tags",
"tags": [
"Utilities"
],
"operationId": "updateFromTagsSongs",
"description": "Update a single album, artist, song from the tag data"
}
},
"/system-preferences": {
"get": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PreferencesResponse"
},
"examples": {
"system_preferences": {
"summary": "system preferences",
"value": {
"preference": [
{
"id": "123",
"name": "show_donate",
"level": 25,
"description": "Show donate button in footer",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": null,
"has_access": true
},
{
"id": "140",
"name": "notify_email",
"level": 25,
"description": "Allow E-mail notifications",
"value": "0",
"type": "boolean",
"category": "options",
"subcategory": null,
"has_access": true
},
{
"id": "110",
"name": "demo_clear_sessions",
"level": 25,
"description": "Democratic - Clear votes for expired user sessions",
"value": "0",
"type": "boolean",
"category": "playlist",
"subcategory": null,
"has_access": true
},
{
"id": "174",
"name": "demo_use_search",
"level": 100,
"description": "Democratic - Use smartlists for base playlist",
"value": "0",
"type": "boolean",
"category": "system",
"subcategory": null,
"has_access": true
},
{
"id": "101",
"name": "stream_beautiful_url",
"level": 100,
"description": "Enable URL Rewriting",
"value": "1",
"type": "boolean",
"category": "streaming",
"subcategory": null,
"has_access": true
},
{
"id": "24",
"name": "force_http_play",
"level": 100,
"description": "Force HTTP playback regardless of port",
"value": "0",
"type": "boolean",
"category": "system",
"subcategory": null,
"has_access": true
},
{
"id": "31",
"name": "lang",
"level": 100,
"description": "Language",
"value": "en_US",
"type": "special",
"category": "interface",
"subcategory": null,
"has_access": true,
"values": [
"en_US",
"ar_SA",
"ca_ES",
"cs_CZ",
"da_DK",
"de_CH",
"de_DE",
"el_GR",
"en_AU",
"en_GB",
"es_ES",
"fa_IR",
"fi_FI",
"fr_BE",
"fr_FR",
"gl_ES",
"he_IL",
"hi_IN",
"hu_HU",
"id_ID",
"it_IT",
"ja_JP",
"ko_KR",
"nb_NO",
"nl_NL",
"no_NO",
"pl_PL",
"pt_BR",
"ro_RO",
"ru_RU",
"sv_SE",
"tr_TR",
"uk_UA",
"vi_VN",
"zh-Hant",
"zh_CN",
"zh_SG",
"zh_TW"
]
},
{
"id": "23",
"name": "lock_songs",
"level": 100,
"description": "Lock Songs",
"value": "0",
"type": "boolean",
"category": "system",
"subcategory": null,
"has_access": true
},
{
"id": "157",
"name": "unique_playlist",
"level": 25,
"description": "Only add unique items to playlists",
"value": "",
"type": "boolean",
"category": "playlist",
"subcategory": null,
"has_access": true
},
{
"id": "183",
"name": "bookmark_latest",
"level": 25,
"description": "Only keep the latest media bookmark",
"value": "",
"type": "boolean",
"category": "options",
"subcategory": null,
"has_access": true
},
{
"id": "32",
"name": "playlist_type",
"level": 100,
"description": "Playlist Type",
"value": "m3u",
"type": "special",
"category": "playlist",
"subcategory": null,
"has_access": true,
"values": [
"simple_m3u",
"pls",
"asx",
"ram",
"xspf",
"m3u"
]
},
{
"id": "222",
"name": "show_playlist_media_parent",
"level": 25,
"description": "Show Artist column on playlist media rows",
"value": "0",
"type": "boolean",
"category": "playlist",
"subcategory": null,
"has_access": true
},
{
"id": "111",
"name": "show_donate",
"level": 25,
"description": "Show donate button in footer",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": null,
"has_access": true
},
{
"id": "211",
"name": "extended_playlist_links",
"level": 25,
"description": "Show extended links for playlist media",
"value": "0",
"type": "boolean",
"category": "playlist",
"subcategory": null,
"has_access": true
},
{
"id": "165",
"name": "api_enable_3",
"level": 25,
"description": "Allow Ampache API3 responses",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "166",
"name": "api_enable_4",
"level": 25,
"description": "Allow Ampache API4 responses",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "167",
"name": "api_enable_5",
"level": 25,
"description": "Allow Ampache API5 responses",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "176",
"name": "api_enable_6",
"level": 25,
"description": "Allow Ampache API6 responses",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "226",
"name": "api_enable_8",
"level": 25,
"description": "Allow Ampache API8 responses",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "223",
"name": "subsonic_legacy",
"level": 25,
"description": "Enable legacy Subsonic API responses for compatibility issues",
"value": "0",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "168",
"name": "api_force_version",
"level": 25,
"description": "Force a specific API response no matter what version you send",
"value": "0",
"type": "special",
"category": "options",
"subcategory": "api",
"has_access": true,
"values": [
0,
3,
4,
5,
6
]
},
{
"id": "224",
"name": "subsonic_force_album_artist",
"level": 25,
"description": "Force Album Artist for Subsonic API responses",
"value": "0",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "204",
"name": "api_always_download",
"level": 25,
"description": "Force API streams to download. (Enable scrobble in your client to record stats)",
"value": "0",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "164",
"name": "subsonic_always_download",
"level": 25,
"description": "Force Subsonic streams to download. (Enable scrobble in your client to record stats)",
"value": "0",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "170",
"name": "api_hidden_playlists",
"level": 25,
"description": "Hide playlists in Subsonic and API clients that start with this string",
"value": "",
"type": "string",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "171",
"name": "api_hide_dupe_searches",
"level": 25,
"description": "Hide smartlists that match playlist names in Subsonic and API clients",
"value": "0",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "225",
"name": "subsonic_single_user_data",
"level": 25,
"description": "Use single user data for Subsonic API responses",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "api",
"has_access": true
},
{
"id": "185",
"name": "perpetual_api_session",
"level": 100,
"description": "API sessions do not expire",
"value": "0",
"type": "boolean",
"category": "system",
"subcategory": "backend",
"has_access": true
},
{
"id": "119",
"name": "daap_pass",
"level": 100,
"description": "DAAP backend password",
"value": "",
"type": "string",
"category": "system",
"subcategory": "backend",
"has_access": true
},
{
"id": "118",
"name": "daap_backend",
"level": 100,
"description": "Use DAAP backend",
"value": "0",
"type": "boolean",
"category": "system",
"subcategory": "backend",
"has_access": true
},
{
"id": "86",
"name": "subsonic_backend",
"level": 100,
"description": "Use Subsonic backend",
"value": "1",
"type": "boolean",
"category": "system",
"subcategory": "backend",
"has_access": true
},
{
"id": "120",
"name": "upnp_backend",
"level": 100,
"description": "Use UPnP backend",
"value": "0",
"type": "boolean",
"category": "system",
"subcategory": "backend",
"has_access": true
},
{
"id": "139",
"name": "webdav_backend",
"level": 100,
"description": "Use WebDAV backend",
"value": "0",
"type": "boolean",
"category": "system",
"subcategory": "backend",
"has_access": true
},
{
"id": "153",
"name": "libitem_browse_alpha",
"level": 75,
"description": "Alphabet browsing by default for following library items (album,artist,...)",
"value": "",
"type": "string",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "161",
"name": "use_original_year",
"level": 25,
"description": "Browse by Original Year for albums (falls back to Year)",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "163",
"name": "hide_genres",
"level": 25,
"description": "Hide the Genre column in browse table rows",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "162",
"name": "hide_single_artist",
"level": 25,
"description": "Hide the Song Artist column for Albums with one Artist",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "84",
"name": "show_played_times",
"level": 25,
"description": "Show # played",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "154",
"name": "show_skipped_times",
"level": 25,
"description": "Show # skipped",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "179",
"name": "show_original_year",
"level": 25,
"description": "Show Album original year on links (if available)",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "178",
"name": "show_subtitle",
"level": 25,
"description": "Show Album subtitle on links (if available)",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "149",
"name": "browse_filter",
"level": 25,
"description": "Show filter box on browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "160",
"name": "show_license",
"level": 25,
"description": "Show License",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "169",
"name": "show_playlist_username",
"level": 25,
"description": "Show playlist owner username in titles",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "browse",
"has_access": true
},
{
"id": "156",
"name": "cron_cache",
"level": 100,
"description": "Cache computed SQL data (eg. media hits stats) using a cron",
"value": "0",
"type": "boolean",
"category": "system",
"subcategory": "catalog",
"has_access": true
},
{
"id": "148",
"name": "catalog_check_duplicate",
"level": 100,
"description": "Check library item at import time and disable duplicates",
"value": "0",
"type": "boolean",
"category": "system",
"subcategory": "catalog",
"has_access": true
},
{
"id": "214",
"name": "browse_album_grid_view",
"level": 25,
"description": "Force Grid View on Album browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": "215",
"name": "browse_album_disk_grid_view",
"level": 25,
"description": "Force Grid View on Album Disk browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": "216",
"name": "browse_artist_grid_view",
"level": 25,
"description": "Force Grid View on Artist browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": "218",
"name": "browse_playlist_grid_view",
"level": 25,
"description": "Force Grid View on Playlist browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": "220",
"name": "browse_podcast_grid_view",
"level": 25,
"description": "Force Grid View on Podcast browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": "221",
"name": "browse_podcast_episode_grid_view",
"level": 25,
"description": "Force Grid View on Podcast Episode browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": "217",
"name": "browse_live_stream_grid_view",
"level": 25,
"description": "Force Grid View on Radio Station browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": "213",
"name": "browse_song_grid_view",
"level": 25,
"description": "Force Grid View on Song browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": "219",
"name": "browse_video_grid_view",
"level": 25,
"description": "Force Grid View on Video browse",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "cookies",
"has_access": true
},
{
"id": "151",
"name": "custom_blankalbum",
"level": 75,
"description": "Custom blank album default image",
"value": "",
"type": "string",
"category": "interface",
"subcategory": "custom",
"has_access": true
},
{
"id": "155",
"name": "custom_datetime",
"level": 25,
"description": "Custom datetime",
"value": "",
"type": "string",
"category": "interface",
"subcategory": "custom",
"has_access": true
},
{
"id": "182",
"name": "custom_timezone",
"level": 25,
"description": "Custom timezone (Override PHP date.timezone)",
"value": "",
"type": "string",
"category": "interface",
"subcategory": "custom",
"has_access": true
},
{
"id": "129",
"name": "custom_logo",
"level": 25,
"description": "Custom URL - Logo",
"value": "",
"type": "string",
"category": "interface",
"subcategory": "custom",
"has_access": true
},
{
"id": "196",
"name": "custom_logo_user",
"level": 25,
"description": "Custom URL - Use your avatar for header logo",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "custom",
"has_access": true
},
{
"id": "22",
"name": "site_title",
"level": 100,
"description": "Website Title",
"value": "Ampache :: For the Love of Music",
"type": "string",
"category": "interface",
"subcategory": "custom",
"has_access": true
},
{
"id": "45",
"name": "allow_democratic_playback",
"level": 100,
"description": "Allow Democratic Play",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "feature",
"has_access": true
},
{
"id": "1",
"name": "download",
"level": 100,
"description": "Allow Downloads",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "feature",
"has_access": true
},
{
"id": "102",
"name": "share",
"level": 100,
"description": "Allow Share",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "feature",
"has_access": true
},
{
"id": "44",
"name": "allow_stream_playback",
"level": 100,
"description": "Allow Streaming",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "feature",
"has_access": true
},
{
"id": "121",
"name": "allow_video",
"level": 75,
"description": "Allow Video Features",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "feature",
"has_access": true
},
{
"id": "82",
"name": "now_playing_per_user",
"level": 50,
"description": "Now Playing filtered per user",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": "158",
"name": "of_the_moment",
"level": 25,
"description": "Set the amount of items Album/Video of the Moment will display",
"value": "",
"type": "integer",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": "125",
"name": "home_moment_albums",
"level": 25,
"description": "Show Albums of the Moment",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": "186",
"name": "home_recently_played_all",
"level": 25,
"description": "Show all media types in Recently Played",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": "128",
"name": "home_now_playing",
"level": 25,
"description": "Show Now Playing",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": "127",
"name": "home_recently_played",
"level": 25,
"description": "Show Recently Played",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": "126",
"name": "home_moment_videos",
"level": 25,
"description": "Show Videos of the Moment",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": "197",
"name": "index_dashboard_form",
"level": 25,
"description": "Use Dashboard links for the index page header",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "home",
"has_access": true
},
{
"id": "138",
"name": "custom_text_footer",
"level": 75,
"description": "Custom text footer",
"value": "",
"type": "string",
"category": "system",
"subcategory": "interface",
"has_access": true
},
{
"id": "137",
"name": "custom_favicon",
"level": 75,
"description": "Custom URL - Favicon",
"value": "",
"type": "string",
"category": "system",
"subcategory": "interface",
"has_access": true
},
{
"id": "159",
"name": "custom_login_background",
"level": 75,
"description": "Custom URL - Login page background",
"value": "",
"type": "string",
"category": "system",
"subcategory": "interface",
"has_access": true
},
{
"id": "136",
"name": "custom_login_logo",
"level": 75,
"description": "Custom URL - Login page logo",
"value": "",
"type": "string",
"category": "system",
"subcategory": "interface",
"has_access": true
},
{
"id": "180",
"name": "show_header_login",
"level": 100,
"description": "Show the login / registration links in the site header",
"value": "1",
"type": "boolean",
"category": "system",
"subcategory": "interface",
"has_access": true
},
{
"id": "83",
"name": "album_sort",
"level": 25,
"description": "Album - Default sort",
"value": "0",
"type": "string",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "108",
"name": "album_group",
"level": 25,
"description": "Album - Group multiple disks",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "122",
"name": "album_release_type",
"level": 25,
"description": "Album - Group per release type",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "130",
"name": "album_release_type_sort",
"level": 25,
"description": "Album - Group per release type sort",
"value": "album,ep,live,single",
"type": "string",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "146",
"name": "libitem_contextmenu",
"level": 0,
"description": "Library item context menu",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "209",
"name": "external_links_bandcamp",
"level": 25,
"description": "Show Bandcamp search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "212",
"name": "external_links_discogs",
"level": 25,
"description": "Show Discogs search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "206",
"name": "external_links_duckduckgo",
"level": 25,
"description": "Show DuckDuckGo search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "205",
"name": "external_links_google",
"level": 25,
"description": "Show Google search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "208",
"name": "external_links_lastfm",
"level": 25,
"description": "Show Last.fm search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "210",
"name": "external_links_musicbrainz",
"level": 25,
"description": "Show MusicBrainz search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "207",
"name": "external_links_wikipedia",
"level": 25,
"description": "Show Wikipedia search icon on library items",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "library",
"has_access": true
},
{
"id": "46",
"name": "allow_localplay_playback",
"level": 100,
"description": "Allow Localplay Play",
"value": "1",
"type": "boolean",
"category": "options",
"subcategory": "localplay",
"has_access": true
},
{
"id": "40",
"name": "localplay_level",
"level": 100,
"description": "Localplay Access",
"value": "100",
"type": "special",
"category": "options",
"subcategory": "localplay",
"has_access": true,
"values": [
"0",
"5",
"25",
"50",
"75",
"100"
]
},
{
"id": "41",
"name": "localplay_controller",
"level": 100,
"description": "Localplay Type",
"value": "mpd",
"type": "special",
"category": "options",
"subcategory": "localplay",
"has_access": true,
"values": [
"httpq",
"mpd",
"upnp",
"vlc",
"xbmc"
]
},
{
"id": "143",
"name": "disabled_custom_metadata_fields_input",
"level": 100,
"description": "Custom metadata - Define field list",
"value": "",
"type": "string",
"category": "system",
"subcategory": "metadata",
"has_access": true
},
{
"id": "131",
"name": "browser_notify",
"level": 25,
"description": "Web Player browser notifications",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "notification",
"has_access": true
},
{
"id": "132",
"name": "browser_notify_timeout",
"level": 25,
"description": "Web Player browser notifications timeout (seconds)",
"value": "10",
"type": "integer",
"category": "interface",
"subcategory": "notification",
"has_access": true
},
{
"id": "104",
"name": "slideshow_time",
"level": 25,
"description": "Artist slideshow inactivity time",
"value": "0",
"type": "integer",
"category": "interface",
"subcategory": "player",
"has_access": true
},
{
"id": "100",
"name": "webplayer_pausetabs",
"level": 25,
"description": "Auto-pause between tabs",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "player",
"has_access": true
},
{
"id": "105",
"name": "broadcast_by_default",
"level": 25,
"description": "Broadcast web player by default",
"value": "0",
"type": "boolean",
"category": "streaming",
"subcategory": "player",
"has_access": true
},
{
"id": "99",
"name": "webplayer_confirmclose",
"level": 25,
"description": "Confirmation when closing current playing window",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "player",
"has_access": true
},
{
"id": "124",
"name": "direct_play_limit",
"level": 25,
"description": "Limit direct play to maximum media count",
"value": "500",
"type": "integer",
"category": "interface",
"subcategory": "player",
"has_access": true
},
{
"id": "175",
"name": "webplayer_removeplayed",
"level": 25,
"description": "Remove tracks before the current playlist item in the webplayer when played",
"value": "0",
"type": "special",
"category": "streaming",
"subcategory": "player",
"has_access": true,
"values": [
"0",
"1",
"2",
"3",
"5",
"10",
"999"
]
},
{
"id": "85",
"name": "song_page_title",
"level": 25,
"description": "Show current song in Web Player page title",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "player",
"has_access": true
},
{
"id": "69",
"name": "show_lyrics",
"level": 0,
"description": "Show lyrics",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "player",
"has_access": true
},
{
"id": "145",
"name": "podcast_new_download",
"level": 100,
"description": "# episodes to download when new episodes are available",
"value": "1",
"type": "integer",
"category": "system",
"subcategory": "podcast",
"has_access": true
},
{
"id": "144",
"name": "podcast_keep",
"level": 100,
"description": "# latest episodes to keep",
"value": "10",
"type": "integer",
"category": "system",
"subcategory": "podcast",
"has_access": true
},
{
"id": "187",
"name": "show_wrapped",
"level": 25,
"description": "Enable access to your personal \"Spotify Wrapped\" from your user page",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "privacy",
"has_access": true
},
{
"id": "90",
"name": "allow_personal_info_now",
"level": 25,
"description": "Share Now Playing information",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "privacy",
"has_access": true
},
{
"id": "91",
"name": "allow_personal_info_recent",
"level": 25,
"description": "Share Recently Played information",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "privacy",
"has_access": true
},
{
"id": "93",
"name": "allow_personal_info_agent",
"level": 25,
"description": "Share Recently Played information - Allow access to streaming agent",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "privacy",
"has_access": true
},
{
"id": "92",
"name": "allow_personal_info_time",
"level": 25,
"description": "Share Recently Played information - Allow access to streaming date/time",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "privacy",
"has_access": true
},
{
"id": "51",
"name": "offset_limit",
"level": 5,
"description": "Offset Limit",
"value": "50",
"type": "integer",
"category": "interface",
"subcategory": "query",
"has_access": true
},
{
"id": "4",
"name": "popular_threshold",
"level": 25,
"description": "Popular Threshold",
"value": "10",
"type": "integer",
"category": "interface",
"subcategory": "query",
"has_access": true
},
{
"id": "47",
"name": "stats_threshold",
"level": 75,
"description": "Statistics Day Threshold",
"value": "7",
"type": "integer",
"category": "interface",
"subcategory": "query",
"has_access": true
},
{
"id": "103",
"name": "share_expire",
"level": 100,
"description": "Share links default expiration days (0=never)",
"value": "0",
"type": "integer",
"category": "system",
"subcategory": "share",
"has_access": true
},
{
"id": "198",
"name": "sidebar_order_browse",
"level": 25,
"description": "Custom CSS Order - Browse",
"value": "10",
"type": "integer",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "199",
"name": "sidebar_order_dashboard",
"level": 25,
"description": "Custom CSS Order - Dashboard",
"value": "15",
"type": "integer",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "203",
"name": "sidebar_order_information",
"level": 25,
"description": "Custom CSS Order - Information",
"value": "60",
"type": "integer",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "201",
"name": "sidebar_order_playlist",
"level": 25,
"description": "Custom CSS Order - Playlist",
"value": "30",
"type": "integer",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "202",
"name": "sidebar_order_search",
"level": 25,
"description": "Custom CSS Order - Search",
"value": "40",
"type": "integer",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "200",
"name": "sidebar_order_video",
"level": 25,
"description": "Custom CSS Order - Video",
"value": "20",
"type": "integer",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "188",
"name": "sidebar_hide_switcher",
"level": 25,
"description": "Hide sidebar switcher arrows",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "189",
"name": "sidebar_hide_browse",
"level": 25,
"description": "Hide the Browse menu in the sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "190",
"name": "sidebar_hide_dashboard",
"level": 25,
"description": "Hide the Dashboard menu in the sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "194",
"name": "sidebar_hide_information",
"level": 25,
"description": "Hide the Information menu in the sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "193",
"name": "sidebar_hide_playlist",
"level": 25,
"description": "Hide the Playlist menu in the sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "192",
"name": "sidebar_hide_search",
"level": 25,
"description": "Hide the Search menu in the sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "191",
"name": "sidebar_hide_video",
"level": 25,
"description": "Hide the Video menu in the sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "150",
"name": "sidebar_light",
"level": 25,
"description": "Light sidebar by default",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "172",
"name": "show_album_artist",
"level": 25,
"description": "Show 'Album Artists' link in the main sidebar",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "173",
"name": "show_artist",
"level": 25,
"description": "Show 'Artists' link in the main sidebar",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "227",
"name": "show_folder",
"level": 25,
"description": "Show 'Folders' link in the main sidebar",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": "sidebar",
"has_access": true
},
{
"id": "94",
"name": "ui_fixed",
"level": 25,
"description": "Fix header position on compatible themes",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "theme",
"has_access": true
},
{
"id": "109",
"name": "topmenu",
"level": 25,
"description": "Top menu",
"value": "0",
"type": "boolean",
"category": "interface",
"subcategory": "theme",
"has_access": true
},
{
"id": "55",
"name": "transcode",
"level": 25,
"description": "Allow Transcoding",
"value": "default",
"type": "string",
"category": "streaming",
"subcategory": "transcoding",
"has_access": true
},
{
"id": "52",
"name": "rate_limit",
"level": 100,
"description": "Rate Limit",
"value": "8192",
"type": "integer",
"category": "streaming",
"subcategory": "transcoding",
"has_access": true
},
{
"id": "19",
"name": "transcode_bitrate",
"level": 25,
"description": "Transcode Bitrate",
"value": "32",
"type": "string",
"category": "streaming",
"subcategory": "transcoding",
"has_access": true
},
{
"id": "95",
"name": "autoupdate",
"level": 100,
"description": "Check for Ampache updates automatically",
"value": "1",
"type": "boolean",
"category": "system",
"subcategory": "update",
"has_access": true
},
{
"id": "113",
"name": "allow_upload",
"level": 100,
"description": "Allow user uploads",
"value": "1",
"type": "boolean",
"category": "system",
"subcategory": "upload",
"has_access": true
},
{
"id": "117",
"name": "upload_allow_edit",
"level": 100,
"description": "Allow users to edit uploaded songs",
"value": "1",
"type": "boolean",
"category": "system",
"subcategory": "upload",
"has_access": true
},
{
"id": "135",
"name": "upload_allow_remove",
"level": 100,
"description": "Allow users to remove uploaded songs",
"value": "1",
"type": "boolean",
"category": "system",
"subcategory": "upload",
"has_access": true
},
{
"id": "115",
"name": "upload_user_artist",
"level": 100,
"description": "Consider the user sender as the track's artist",
"value": "0",
"type": "boolean",
"category": "system",
"subcategory": "upload",
"has_access": true
},
{
"id": "114",
"name": "upload_subdir",
"level": 100,
"description": "Create a subdirectory per user",
"value": "1",
"type": "boolean",
"category": "system",
"subcategory": "upload",
"has_access": true
},
{
"id": "116",
"name": "upload_script",
"level": 100,
"description": "Post-upload script (current directory = upload target directory)",
"value": "",
"type": "string",
"category": "system",
"subcategory": "upload",
"has_access": true
},
{
"id": "147",
"name": "upload_catalog_pattern",
"level": 100,
"description": "Rename uploaded file according to catalog pattern",
"value": "1",
"type": "boolean",
"category": "system",
"subcategory": "upload",
"has_access": true
},
{
"id": "177",
"name": "upload_access_level",
"level": 100,
"description": "Upload Access Level",
"value": "25",
"type": "special",
"category": "system",
"subcategory": "upload",
"has_access": true,
"values": [
"0",
"5",
"25",
"50",
"75",
"100"
]
}
]
}
}
}
}
},
"description": "Preference list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get your system preferences (Admin)",
"tags": [
"Preferences"
],
"operationId": "systemPreferences",
"description": "Get your server preferences"
}
},
"/system-preferences/{preference_name}": {
"get": {
"parameters": [
{
"in": "path",
"name": "preference_name",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PreferenceObject"
},
"examples": {
"system_preference": {
"summary": "system preference",
"value": {
"id": "123",
"name": "show_donate",
"level": 25,
"description": "Show donate button in footer",
"value": "1",
"type": "boolean",
"category": "interface",
"subcategory": null,
"has_access": true
}
}
}
}
},
"description": "Preference array"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get a server preference by name (Admin)",
"tags": [
"Preferences"
],
"operationId": "systemPreference",
"description": "Get your server preference by name"
}
},
"/update": {
"get": {
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "system update",
"value": {
"success": "No update available"
}
}
}
}
},
"description": "Update Ampache"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get information about your own user account",
"tags": [
"Maintenance"
],
"operationId": "systemUpdate",
"description": "Check Ampache for updates and run the update if there is one."
}
},
"/upload": {
"post": {
"parameters": [
{
"in": "query",
"name": "filename",
"required": false,
"description": "File name, required when the file is sent as the request body rather than as the `upl` form field",
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "license",
"required": false,
"description": "License id, required when `licensing` is enabled",
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "artist_id",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "artist_name",
"required": false,
"description": "Create or reuse an artist you own",
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "album_id",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "album_name",
"required": false,
"description": "Create or reuse an album you own",
"schema": {
"type": "string"
}
}
],
"summary": "Upload a media file to the upload catalog",
"tags": [
"Catalogs"
],
"description": "Add a media file to the catalog named by the `upload_catalog` preference.",
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "upload",
"value": {
"success": "file uploaded"
}
}
}
}
},
"description": "Uploaded"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"requestBody": {
"required": true,
"description": "The media file, either as the raw request body or as a multipart field named `upl`.",
"content": {
"application/octet-stream": {
"schema": {
"type": "string",
"format": "binary"
}
},
"multipart/form-data": {
"schema": {
"type": "object",
"properties": {
"upl": {
"type": "string",
"format": "binary"
}
}
}
}
}
},
"operationId": "upload"
}
},
"/users": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UsersResponse"
},
"examples": {
"users": {
"summary": "users",
"value": {
"user": [
{
"id": "2",
"username": "admin"
},
{
"id": "3",
"username": "demo"
},
{
"id": "4",
"username": "user"
}
]
}
}
}
}
},
"description": "User list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List user ID's and Usernames for your site",
"tags": [
"Users"
],
"operationId": "users",
"description": "Get ids and usernames for your site"
},
"put": {
"parameters": [
{
"in": "query",
"name": "username",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "sha256(password) Deprecated: for privacy, send this in a form or JSON request body instead of the query string (query values land in server/proxy logs and browser history). Query-string support is retained for backward compatibility.",
"in": "query",
"name": "password",
"required": false,
"schema": {
"type": "string"
},
"deprecated": true
},
{
"in": "query",
"name": "email",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "fullname",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "disable",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"in": "query",
"name": "group",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"users": {
"summary": "users",
"value": {
"user": [
{
"id": "2",
"username": "admin"
},
{
"id": "3",
"username": "demo"
},
{
"id": "4",
"username": "user"
}
]
}
}
}
}
},
"description": "Created"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a new user (Admin)",
"tags": [
"Users"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UserCreateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/UserCreateRequest"
}
}
}
},
"operationId": "userCreate",
"description": "Create a new user. (Requires the username, password and email.)"
}
},
"/users/search": {
"get": {
"description": "Provide operator plus one or more rule triplets. At minimum, rule_1, rule_1_operator, rule_1_input are required. Additional rules may be supplied as rule_2, rule_2_operator, rule_2_input, etc.",
"operationId": "searchUsers",
"parameters": [
{
"$ref": "#/components/parameters/Operator"
},
{
"description": "0, 1 (random order of results; default to 0)",
"in": "query",
"name": "random",
"required": false,
"schema": {
"default": false,
"type": "boolean"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Rule1"
},
{
"$ref": "#/components/parameters/Rule1Operator"
},
{
"$ref": "#/components/parameters/Rule1Input"
},
{
"$ref": "#/components/parameters/Rule2"
},
{
"$ref": "#/components/parameters/Rule2Operator"
},
{
"$ref": "#/components/parameters/Rule2Input"
},
{
"$ref": "#/components/parameters/Rule3"
},
{
"$ref": "#/components/parameters/Rule3Operator"
},
{
"$ref": "#/components/parameters/Rule3Input"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UsersResponse"
},
"examples": {
"users": {
"summary": "users (search results)",
"value": {
"user": [
{
"id": "2",
"username": "admin"
},
{
"id": "3",
"username": "demo"
},
{
"id": "4",
"username": "user"
}
]
}
}
}
}
},
"description": "Search results"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Search for media entities using rule triplets",
"tags": [
"Users",
"Search"
]
}
},
"/users/{user_id}": {
"delete": {
"parameters": [
{
"$ref": "#/components/parameters/UserId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"user": {
"summary": "user",
"value": {
"id": "4",
"username": "user",
"auth": "demodemo",
"email": "generic@gmail.com",
"access": 100,
"streamtoken": null,
"fullname_public": false,
"validation": null,
"disabled": false,
"create_date": 1670202701,
"last_seen": 1783644401,
"link": "https://music.com.au/stats.php?action=show_user&user_id=4",
"website": null,
"state": null,
"city": null,
"art": "https://music.com.au/image.php?action=show_user_avatar&object_id=4&object_type=user&name=art.jpg",
"has_art": false,
"fullname": "Some Guy"
}
}
}
}
},
"description": "Deleted"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Delete a user (Admin)",
"tags": [
"Users"
],
"operationId": "userDelete",
"description": "Delete an existing user."
},
"get": {
"parameters": [
{
"$ref": "#/components/parameters/UserId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UserObject"
},
"examples": {
"user": {
"summary": "user",
"value": {
"id": "4",
"username": "user",
"auth": "demodemo",
"email": "generic@gmail.com",
"access": 100,
"streamtoken": null,
"fullname_public": false,
"validation": null,
"disabled": false,
"create_date": 1670202701,
"last_seen": 1783644401,
"link": "https://music.com.au/stats.php?action=show_user&user_id=4",
"website": null,
"state": null,
"city": null,
"art": "https://music.com.au/image.php?action=show_user_avatar&object_id=4&object_type=user&name=art.jpg",
"has_art": false,
"fullname": "Some Guy"
}
}
}
}
},
"description": "User array"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get a user's public information by username",
"tags": [
"Users"
],
"operationId": "user",
"description": "This gets a user's public information."
},
"patch": {
"parameters": [
{
"$ref": "#/components/parameters/UserId"
},
{
"in": "query",
"name": "password",
"required": false,
"schema": {
"type": "string"
},
"deprecated": true,
"description": "Deprecated: for privacy, send this in a form or JSON request body instead of the query string (query values land in server/proxy logs and browser history). Query-string support is retained for backward compatibility."
},
{
"in": "query",
"name": "email",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "fullname",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "website",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "state",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "city",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "disable",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"in": "query",
"name": "group",
"required": false,
"schema": {
"type": "integer"
}
},
{
"description": "Maximum transcode bitrate for the user, in bits per second (e.g 320000 = 320Kb). API6 and older take this value in kbps.",
"in": "query",
"name": "maxbitrate",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "fullname_public",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"in": "query",
"name": "reset_apikey",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"in": "query",
"name": "reset_streamtoken",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"in": "query",
"name": "clear_stats",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"user": {
"summary": "user",
"value": {
"id": "4",
"username": "user",
"auth": "demodemo",
"email": "generic@gmail.com",
"access": 100,
"streamtoken": null,
"fullname_public": false,
"validation": null,
"disabled": false,
"create_date": 1670202701,
"last_seen": 1783644401,
"link": "https://music.com.au/stats.php?action=show_user&user_id=4",
"website": null,
"state": null,
"city": null,
"art": "https://music.com.au/image.php?action=show_user_avatar&object_id=4&object_type=user&name=art.jpg",
"has_art": false,
"fullname": "Some Guy"
}
}
}
}
},
"description": "Updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Edit a user (Admin)",
"tags": [
"Users"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UserEditRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/UserEditRequest"
}
}
}
},
"operationId": "userEdit",
"description": "Update an existing user."
}
},
"/users/{user_id}/follow": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/UserId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "toggle follow",
"value": {
"success": "follow toggled for: 4"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Follow or unfollow a user (toggle)",
"tags": [
"Social"
],
"operationId": "toggleFollowUsers",
"description": "This follow/unfollow a user"
}
},
"/users/{user_id}/followers": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/UserId"
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UsersResponse"
},
"examples": {
"followers": {
"summary": "followers",
"value": {
"user": [
{
"id": "3",
"username": "demo"
}
]
}
}
}
}
},
"description": "User list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get followers for a username",
"tags": [
"Social"
],
"operationId": "followersUsers",
"description": "This gets the followers for the requested username"
}
},
"/users/{user_id}/following": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/UserId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UsersResponse"
},
"examples": {
"following": {
"summary": "following",
"value": {
"user": [
{
"id": "2",
"username": "admin"
},
{
"id": "4",
"username": "user"
}
]
}
}
}
}
},
"description": "User list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get who a user is following",
"tags": [
"Social"
],
"operationId": "followingUsers",
"description": "Get a list of people that this user follows"
}
},
"/users/{user_id}/timeline": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/UserId"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"in": "query",
"name": "since",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TimelineResponse"
},
"examples": {
"timeline": {
"summary": "timeline",
"value": {
"activity": [
{
"id": "365",
"date": 1784539943,
"object_type": "song",
"object_id": "97",
"action": "rating",
"user": {
"id": "4",
"username": "user"
}
},
{
"id": "364",
"date": 1784539942,
"object_type": "song",
"object_id": "97",
"action": "userflag",
"user": {
"id": "4",
"username": "user"
}
},
{
"id": "363",
"date": 1783648366,
"object_type": "user",
"object_id": "4",
"action": "follow",
"user": {
"id": "4",
"username": "user"
}
},
{
"id": "362",
"date": 1783648359,
"object_type": "song",
"object_id": "80",
"action": "userflag",
"user": {
"id": "4",
"username": "user"
}
},
{
"id": "361",
"date": 1783648005,
"object_type": "user",
"object_id": "4",
"action": "follow",
"user": {
"id": "4",
"username": "user"
}
},
{
"id": "360",
"date": 1783647999,
"object_type": "song",
"object_id": "78",
"action": "userflag",
"user": {
"id": "4",
"username": "user"
}
},
{
"id": "359",
"date": 1783647482,
"object_type": "user",
"object_id": "4",
"action": "follow",
"user": {
"id": "4",
"username": "user"
}
},
{
"id": "357",
"date": 1783647468,
"object_type": "song",
"object_id": "81",
"action": "userflag",
"user": {
"id": "4",
"username": "user"
}
},
{
"id": "358",
"date": 1783647468,
"object_type": "song",
"object_id": "81",
"action": "rating",
"user": {
"id": "4",
"username": "user"
}
},
{
"id": "356",
"date": 1783647154,
"object_type": "user",
"object_id": "4",
"action": "follow",
"user": {
"id": "4",
"username": "user"
}
}
]
}
}
}
}
},
"description": "Timeline activity list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get a user's timeline",
"tags": [
"Social"
],
"operationId": "timelineUsers",
"description": "This gets a user's timeline"
}
},
"/videos": {
"get": {
"parameters": [
{
"in": "query",
"name": "filter",
"required": false,
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "exact",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VideosResponse"
},
"examples": {
"videos": {
"summary": "videos",
"value": {
"total_count": 3,
"md5": "e0f2b57f7886bad0b1a33447e187fae7",
"video": [
{
"id": "5",
"title": "Lisa Simpson playing a Beer Jug as her new instrument-fTGVV_4DNYI",
"mime": "video/mp4",
"resolution": "1920x1080",
"size": 16967352,
"genre": [],
"time": 32,
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=video&oid=5&uid=4&player=api&name=Lisa%20Simpson%20playing%20a%20Beer%20Jug%20as%20her%20new%20instrument-fTGVV-4DNYI.mp4",
"art": "https://music.com.au/image.php?object_id=5&object_type=video&id=420&name=art.png",
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0
},
{
"id": "2",
"title": "Magic Fly",
"mime": "video/ogg",
"resolution": "400x300",
"size": 14950742,
"genre": [],
"time": 0,
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=video&oid=2&uid=4&player=api&name=Magic%20Fly.ogv",
"art": "https://music.com.au/image.php?object_id=2&object_type=video&id=36&name=art.png",
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 1
},
{
"id": "1",
"title": "SPACE Magic Fly (1977) - https://archive.org/details/SPACE_Magic_Fly_1977",
"mime": "video/mp4",
"resolution": "640x480",
"size": 20084777,
"genre": [],
"time": 193,
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=video&oid=1&uid=4&player=api&name=SPACE%20%20%20Magic%20Fly%20-1977-%20-%20https-archive.org-details-SPACE-Magic-Fly-1977.mp4",
"art": "https://music.com.au/image.php?object_id=1&object_type=video&id=35&name=art.png",
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 3
}
]
}
}
}
}
},
"description": "Video list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List videos",
"tags": [
"Videos"
],
"operationId": "videos",
"description": "This returns video objects!"
}
},
"/videos/deleted": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DeletedVideosResponse"
},
"examples": {
"deleted_videos": {
"summary": "deleted videos",
"value": {
"total_count": 1,
"md5": "67fafdba1fae719e51eb1ef22937291b",
"deleted_video": [
{
"id": "1",
"addition_time": 1614054522,
"delete_time": 1737000000,
"title": "SPACE Magic Fly (1977) - https://archive.org/details/SPACE_Magic_Fly_1977",
"file": "/media/video/SPACE_Magic_Fly_1977.mp4",
"catalog": "2",
"total_count": 3,
"total_skip": 0
}
]
}
}
}
}
},
"description": "Deleted videos list"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "List deleted videos",
"tags": [
"Maintenance"
],
"operationId": "deletedVideos",
"description": "This returns video objects that have been deleted"
}
},
"/videos/search": {
"get": {
"description": "Provide operator plus one or more rule triplets. At minimum, rule_1, rule_1_operator, rule_1_input are required. Additional rules may be supplied as rule_2, rule_2_operator, rule_2_input, etc.",
"operationId": "searchVideos",
"parameters": [
{
"$ref": "#/components/parameters/Operator"
},
{
"description": "0, 1 (random order of results; default to 0)",
"in": "query",
"name": "random",
"required": false,
"schema": {
"default": false,
"type": "boolean"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Rule1"
},
{
"$ref": "#/components/parameters/Rule1Operator"
},
{
"$ref": "#/components/parameters/Rule1Input"
},
{
"$ref": "#/components/parameters/Rule2"
},
{
"$ref": "#/components/parameters/Rule2Operator"
},
{
"$ref": "#/components/parameters/Rule2Input"
},
{
"$ref": "#/components/parameters/Rule3"
},
{
"$ref": "#/components/parameters/Rule3Operator"
},
{
"$ref": "#/components/parameters/Rule3Input"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VideosResponse"
},
"examples": {
"videos": {
"summary": "videos (search results)",
"value": {
"total_count": 3,
"md5": "e0f2b57f7886bad0b1a33447e187fae7",
"video": [
{
"id": "5",
"title": "Lisa Simpson playing a Beer Jug as her new instrument-fTGVV_4DNYI",
"mime": "video/mp4",
"resolution": "1920x1080",
"size": 16967352,
"genre": [],
"time": 32,
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=video&oid=5&uid=4&player=api&name=Lisa%20Simpson%20playing%20a%20Beer%20Jug%20as%20her%20new%20instrument-fTGVV-4DNYI.mp4",
"art": "https://music.com.au/image.php?object_id=5&object_type=video&id=420&name=art.png",
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0
},
{
"id": "2",
"title": "Magic Fly",
"mime": "video/ogg",
"resolution": "400x300",
"size": 14950742,
"genre": [],
"time": 0,
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=video&oid=2&uid=4&player=api&name=Magic%20Fly.ogv",
"art": "https://music.com.au/image.php?object_id=2&object_type=video&id=36&name=art.png",
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 1
},
{
"id": "1",
"title": "SPACE Magic Fly (1977) - https://archive.org/details/SPACE_Magic_Fly_1977",
"mime": "video/mp4",
"resolution": "640x480",
"size": 20084777,
"genre": [],
"time": 193,
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=video&oid=1&uid=4&player=api&name=SPACE%20%20%20Magic%20Fly%20-1977-%20-%20https-archive.org-details-SPACE-Magic-Fly-1977.mp4",
"art": "https://music.com.au/image.php?object_id=1&object_type=video&id=35&name=art.png",
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 3
}
]
}
}
}
}
},
"description": "Search results"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Search for media entities using rule triplets",
"tags": [
"Videos",
"Search"
]
}
},
"/videos/stats": {
"get": {
"parameters": [
{
"description": "newest, highest, frequent, recent, forgotten, flagged, random",
"in": "query",
"name": "filter",
"required": true,
"schema": {
"default": "random",
"enum": [
"newest",
"highest",
"frequent",
"recent",
"forgotten",
"flagged",
"random"
],
"type": "string"
}
},
{
"in": "query",
"name": "user_id",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "username",
"required": false,
"schema": {
"type": "string"
}
},
{
"$ref": "#/components/parameters/Offset"
},
{
"$ref": "#/components/parameters/Limit"
},
{
"$ref": "#/components/parameters/Cond"
},
{
"$ref": "#/components/parameters/Sort"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VideosResponse"
},
"examples": {
"deleted_videos": {
"summary": "deleted videos",
"value": {
"total_count": 3,
"md5": "e0f2b57f7886bad0b1a33447e187fae7",
"video": [
{
"id": "5",
"title": "Lisa Simpson playing a Beer Jug as her new instrument-fTGVV_4DNYI",
"mime": "video/mp4",
"resolution": "1920x1080",
"size": 16967352,
"genre": [],
"time": 32,
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=video&oid=5&uid=4&player=api&name=Lisa%20Simpson%20playing%20a%20Beer%20Jug%20as%20her%20new%20instrument-fTGVV-4DNYI.mp4",
"art": "https://music.com.au/image.php?object_id=5&object_type=video&id=420&name=art.png",
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0
},
{
"id": "2",
"title": "Magic Fly",
"mime": "video/ogg",
"resolution": "400x300",
"size": 14950742,
"genre": [],
"time": 0,
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=video&oid=2&uid=4&player=api&name=Magic%20Fly.ogv",
"art": "https://music.com.au/image.php?object_id=2&object_type=video&id=36&name=art.png",
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 1
},
{
"id": "1",
"title": "SPACE Magic Fly (1977) - https://archive.org/details/SPACE_Magic_Fly_1977",
"mime": "video/mp4",
"resolution": "640x480",
"size": 20084777,
"genre": [],
"time": 193,
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=video&oid=1&uid=4&player=api&name=SPACE%20%20%20Magic%20Fly%20-1977-%20-%20https-archive.org-details-SPACE-Magic-Fly-1977.mp4",
"art": "https://music.com.au/image.php?object_id=1&object_type=video&id=35&name=art.png",
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 3
}
]
}
}
}
}
},
"description": "Stats result"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get stats (song/album/artist etc) by type and filter",
"tags": [
"Browsing, Indexes and Lists"
],
"operationId": "statsVideos",
"description": "Get some items based on some simple search types and filters. (Random by default) This method **HAD** partial backwards compatibility with older api versions but it has now been removed Pass -1 limit to get all results. (0 will fall back to the `popular_threshold` value)"
}
},
"/videos/{video_id}": {
"get": {
"parameters": [
{
"$ref": "#/components/parameters/VideoId"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VideoObject"
},
"examples": {
"video": {
"summary": "video",
"value": {
"id": "5",
"title": "Lisa Simpson playing a Beer Jug as her new instrument-fTGVV_4DNYI",
"mime": "video/mp4",
"resolution": "1920x1080",
"size": 16967352,
"genre": [],
"time": 32,
"url": "https://music.com.au/play/index.php?ssid=cfj3f237d563f479f5223k23189dbb34&type=video&oid=5&uid=4&player=api&name=Lisa%20Simpson%20playing%20a%20Beer%20Jug%20as%20her%20new%20instrument-fTGVV-4DNYI.mp4",
"art": "https://music.com.au/image.php?object_id=5&object_type=video&id=420&name=art.png",
"has_art": false,
"flag": false,
"rating": null,
"averagerating": null,
"playcount": 0,
"last_played": "2026-07-27T08:19:12+00:00",
"catalog": "2"
}
}
}
}
},
"description": "Video object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get video by ID",
"tags": [
"Videos"
],
"operationId": "video",
"description": "This returns a single video"
}
},
"/videos/{video_id}/bookmark": {
"delete": {
"parameters": [
{
"$ref": "#/components/parameters/VideoId"
},
{
"$ref": "#/components/parameters/Client"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"bookmark_create": {
"summary": "bookmark create",
"value": {
"id": "81",
"owner": "user",
"object_type": "song",
"object_id": "97",
"position": 0,
"client": "python3-ampache",
"creation_date": 1670202706,
"update_date": 1784539940
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Delete a bookmark",
"tags": [
"Bookmarks"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkDeleteRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/BookmarkDeleteRequest"
}
}
}
},
"operationId": "bookmarkDeleteVideos",
"description": "Delete an existing bookmark. (if it exists)"
},
"get": {
"parameters": [
{
"$ref": "#/components/parameters/VideoId"
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkObject"
},
"examples": {
"bookmark_create": {
"summary": "bookmark create",
"value": {
"id": "81",
"owner": "user",
"object_type": "song",
"object_id": "97",
"position": 0,
"client": "python3-ampache",
"creation_date": 1670202706,
"update_date": 1784539940
}
}
}
}
},
"description": "Bookmark object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Get bookmark by ID",
"tags": [
"Bookmarks"
],
"operationId": "bookmarkVideos",
"description": "Get a single bookmark by bookmark_id"
},
"patch": {
"parameters": [
{
"$ref": "#/components/parameters/VideoId"
},
{
"in": "query",
"name": "position",
"required": false,
"schema": {
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Client"
},
{
"in": "query",
"name": "date",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkObject"
},
"examples": {
"bookmark_create": {
"summary": "bookmark create",
"value": {
"id": "81",
"owner": "user",
"object_type": "song",
"object_id": "97",
"position": 0,
"client": "python3-ampache",
"creation_date": 1670202706,
"update_date": 1784539940
}
}
}
}
},
"description": "Bookmark array"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Edit a bookmark",
"tags": [
"Bookmarks"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkEditRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/BookmarkEditRequest"
}
}
}
},
"operationId": "bookmarkEditVideos",
"description": "Edit a placeholder for the current media that you can return to later."
},
"put": {
"parameters": [
{
"$ref": "#/components/parameters/VideoId"
},
{
"in": "query",
"name": "position",
"required": false,
"schema": {
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Client"
},
{
"in": "query",
"name": "date",
"required": false,
"schema": {
"type": "integer"
}
},
{
"in": "query",
"name": "include",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkObject"
},
"examples": {
"bookmark_create": {
"summary": "bookmark create",
"value": {
"id": "81",
"owner": "user",
"object_type": "song",
"object_id": "97",
"position": 0,
"client": "python3-ampache",
"creation_date": 1670202706,
"update_date": 1784539940
}
}
}
}
},
"description": "Bookmark object"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a bookmark",
"tags": [
"Bookmarks"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkCreateVideosBookmarkRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/BookmarkCreateVideosBookmarkRequest"
}
}
}
},
"operationId": "bookmarkCreateVideos",
"description": "Create a placeholder for the current media that you can return to later."
}
},
"/videos/{video_id}/flag": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/VideoId"
},
{
"in": "query",
"name": "flag",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "flag",
"value": {
"success": "flag ADDED to 91"
}
}
}
}
},
"description": "Updated"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Flag or unflag an item as favourite",
"tags": [
"Ratings and Flags"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FlagRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/FlagRequest"
}
}
}
},
"operationId": "flagVideos",
"description": "This flags a library item as a favorite"
}
},
"/videos/{video_id}/localplay": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/VideoId"
},
{
"in": "query",
"name": "command",
"required": false,
"schema": {
"enum": [
"add"
],
"type": "string"
}
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"song",
"video",
"podcast_episode",
"broadcast",
"live_stream",
"democratic"
],
"type": "string"
}
},
{
"in": "query",
"name": "clear",
"required": false,
"schema": {
"enum": [
0,
1
],
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayResponse"
},
"examples": {
"localplay": {
"summary": "localplay",
"value": {
"localplay": {
"command": {
"stop": true
}
}
}
},
"localplay_status": {
"summary": "localplay (status)",
"value": {
"localplay": {
"command": {
"status": {
"state": "stop",
"volume": "100",
"repeat": false,
"random": false,
"track": 2,
"track_title": "Unknown",
"track_artist": "Unknown",
"track_album": "Unknown"
}
}
}
}
}
}
}
},
"description": "Localplay response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Add media to the localplay server",
"tags": [
"Playback Control"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LocalplayRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/LocalplayRequest"
}
}
}
},
"operationId": "localplayVideos",
"description": "This is for controlling localplay"
}
},
"/videos/{video_id}/playback": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/VideoId"
},
{
"in": "query",
"name": "type",
"required": false,
"schema": {
"enum": [
"song",
"video",
"podcast_episode"
],
"type": "string"
}
},
{
"in": "query",
"name": "state",
"required": false,
"schema": {
"enum": [
"play",
"stop"
],
"type": "string"
}
},
{
"in": "query",
"name": "time",
"required": false,
"schema": {
"type": "integer"
}
},
{
"$ref": "#/components/parameters/Client"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/NowPlayingResponse"
},
"examples": {
"localplay": {
"summary": "localplay",
"value": {
"now_playing": []
}
}
}
}
},
"description": "Now playing response"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Update the server with the client player state",
"tags": [
"Now Playing"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlayerRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/PlayerRequest"
}
}
}
},
"operationId": "playerVideosPlayback",
"description": "Inform the server about the state of your client. (Song you are playing, Play/Pause state, etc.)"
}
},
"/videos/{video_id}/rate": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/VideoId"
},
{
"in": "query",
"name": "rating",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
},
"examples": {
"success": {
"summary": "rate",
"value": {
"success": "rating set to 5 for 91"
}
}
}
}
},
"description": "Success"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Rate a library item",
"tags": [
"Ratings and Flags"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/RateRequest"
}
}
}
},
"operationId": "rateVideos",
"description": "This rates a library item"
}
},
"/videos/{video_id}/share": {
"post": {
"parameters": [
{
"$ref": "#/components/parameters/VideoId"
},
{
"in": "query",
"name": "description",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "days to keep active",
"in": "query",
"name": "expires",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareObject"
},
"examples": {
"share": {
"summary": "share",
"value": {
"id": "1",
"name": "Creeping Lawler 2",
"owner": "user",
"allow_stream": true,
"allow_download": false,
"creation_date": 1670202706,
"lastvisit_date": 1614129643,
"object_type": "album",
"object_id": "9",
"expire_days": 0,
"max_counter": 0,
"counter": 1,
"secret": "GJ7EzBPT",
"public_url": "https://music.com.au/share.php?id=1&secret=GJ7EzBPT",
"description": "Creeping Lawler 2 (Warfare 3.0)"
}
}
}
}
},
"description": "Share created"
},
"400": {
"$ref": "#/components/responses/BadRequestErrorResponse"
},
"401": {
"$ref": "#/components/responses/UnauthorizedErrorResponse"
},
"403": {
"$ref": "#/components/responses/ForbiddenErrorResponse"
},
"404": {
"$ref": "#/components/responses/NotFoundErrorResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
},
"summary": "Create a public share URL",
"tags": [
"Shares"
],
"requestBody": {
"required": false,
"description": "Parameters may be sent here instead of in the query string; body values win on conflict. Values listed as required must be supplied by one transport or the other.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShareCreateRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/ShareCreateRequest"
}
}
}
},
"operationId": "shareCreateVideos",
"description": "Create a public url that can be used by anyone to stream media. Takes the file id with optional description and expires parameters."
}
}
}
}