Skip to content

JSON export format

Uwe Trottmann edited this page May 5, 2015 · 16 revisions

SeriesGuide can export and import your data using JSON text files. Their format is documented here.

// no indents

Shows

Lists

[  
  {  
    "list_id":"firstlist",
    "name":"First list",
    "order":1,
    "items":[  
      {  
        "list_item_id":"248741-1-firstlist",
        "tvdb_id":248741,
        "type":"show"
      },
      {  
        "list_item_id":"522810-2-firstlist",
        "tvdb_id":522810,
        "type":"season"
      },
      {  
        "list_item_id":"4791401-3-firstlist",
        "tvdb_id":4791401,
        "type":"episode"
      }
    ]
  }, ...
]

Movies

[
   {  
      "tmdb_id":231576,
      "imdb_id":"tt2870708",
      "title":"Wish I Was Here",
      "overview":"Something, something, dark side.",
      "poster":"/8b54J6gCM27QodPBoBWAcC9JHnd.jpg", // TMDb poster path
      "released_utc_ms":1389999600000,
      "runtime_min":120,
      "in_collection":false,
      "in_watchlist":true,
      "watched":false
   },
   ...
]

Clone this wiki locally