Skip to content
George Kye edited this page Oct 26, 2016 · 3 revisions

Get a list by id.

         ListsMDB.lists(apikey, listId: "5316bbcd92514158d20015b5"){
      apiReturn, lists in
      if let list = lists{
        print(list.name)
        print(list.favorite_count)
        print(list.created_by)
        print(list.description)
        print(list.items[0].overview)
        print(list.items[0].title)
      }
    }
Clone this wiki locally