kaseyb002 / ListenNotesAPI

Search podcasts easily. A Swift wrapper for ListenNotesAPI.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ListenNotesAPI

ListenNotesAPI lets you search podcasts easily. This is a Swift wrapper for accessing the ListenNotesAPI.

Example

ListenNotesAPI.searchPodcasts(with: "star wars") { result in
    switch result {
    case .success(let searchResults):
        searchResults.podcasts.forEach { podcast in
            print(podcast.title)
        }
    case .failure(let error):
        print(error.message)
    }
}

Getting Started

Cocoapods

Set API Key

First you must set your ListenNotes API Key:

ListenNotesAPI.Config.set(apiKey: "YOUR_API_KEY")

About

Search podcasts easily. A Swift wrapper for ListenNotesAPI.


Languages

Language:Swift 99.0%Language:Objective-C 1.0%