These docs are for v2.0. Click to read the latest docs for v3.3.

Get collection of objects

Returns all the collection's objects sorted by primary key in descending order.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
curl -i -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "Authorization: SESSION_TOKEN" \
  -X GET "https://api.thethings.io/v2/classes/me/Playlists" -k
{
  "results" : [
    {
      _id: 25,
      "name": "Dubstep Mix",
      "duration" : 180
    },
    {
      _id: 20,
      "name": "Classic",
      "duration" : 90
    }
  ]
}
Path Params
string
required
Headers
string

SESSION_TOKEN

Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here!