Plex API call to get recently added media

Is there a way to call the Plex API to get recently added titles from specific libraries?

eg. something like this:
http://n.n.n.n:32400/library/nn/recentlyadded?X-Plex-Token=xxxxxxxxxxxxxx

Update: I am getting closer. Unfortunately the >>= filter is not working.

http://192.168.1.135:32400/library/sections/1/all?type=1&sort=addedAt:desc&addedAT>>=1675174801&X-Plex-Token=xxxxx

SOLVED!
I was almost right but i had addedAT instread of addedAt in the query. this works! :slight_smile:

http://192.168.1.135:32400/library/sections/1/all?type=1&sort=addedAt:desc&addedAt>>=1675174801&X-Plex-Token=xxxxx

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.