Documentation

GraphQL API: Listener

Get a listener’s thumbprint station

Thumbprint radio uses your thumbing activity to create a unique listening experience by aggregating both thumbed up and non-thumbed tracks from across your stations.

Once you meet the criteria, thumbprint radio will be available via the search (not your collection just yet).  When a listener searches for the thumbprint radio and starts playback on it, it will be added to their collection.

This will be returned as part of the listener’s collections or you can run this query:

Request



{
  thumbprintStation {
    id
    ...on Station {
      name
    }
  }
}

* Add your OAuth bearer token to the Authorization header



curl 'https://ce.pandora.com/api/v1/graphql/graphql' \
  -H 'Authorization: Bearer ' \
  -H 'Content-Type: application/json' \
  -d '{"operationName":null,"variables":{},"query":"{  thumbprintStation { id ... on Station { name }  }}"}'

Response



{
  "data": {
    "thumbprintStation": {
      "id": "ST:0:4309235109929564459",
      "name": "Thumbprint Radio"
    }
  }
}

If no thumbprint station exist for the user, you will get this result:



{
  "data": {
    "thumbprintStation": null
  }
}