# Series Get All

You may retreive all the series in your account with the following call. This returns summary information about all the series in your account.

TIP

This method will return paged data using these HAL paging properties if there are many items of this type in the account. This follows standard data paging patterns for results that may be unbounded in size. The paged collections specifically follow the HAL paging pattern. For example, N items/series are returned by default in the request and the API caller would page through the results to get the next page of results by detecting if there is a next key or node in the _links of the response then making the appropriate call to that URL to obtain that page of results.

# Series Get All Request

GET https://api.backtracks.fm/v1/series HTTP/1.1
Accept: application/json
Authorization: JWT <your backtracks access token>...

# Series Get All Response

HTTP/1.1 200 OK
Location: https://api.backtracks.fm/v1/series
Content-Type: application/hal+json; charset=utf-8

{
   "series":[
      {
         "id":"<series_id_or_slug>",
         "slug":"company-test-series",
         "title":"Company Test Series",
         "_links":{
            "self":{
               "href":"https://api.backtracks.fm/v1/series/<series_id>"
            }
         }
      }
   ],
   "_links":{
      "self":{
         "href":"https://api.backtracks.fm/v1/series/<series_id>/..."
      },
	  "first":{
         "href":"https://api.backtracks.fm/v1/series/55e0e2.../..."
      },
      "next":{
         "href":"https://api.backtracks.fm/v1/series/55e0e2.../..."
      },
      "last":{
         "href":"https://api.backtracks.fm/v1/series/55e0e2..."
      }
   }
}