Get last few subscriptions via the API

I have 15898 subscriptions. Is there a way to retrieve the last 10 instead of the first 10 without knowing the offset before hand ?

$url = "https://api.infusionsoft.com/crm/rest/v1/subscriptions?access_token=$token&limit=100&offset=15800";

You should get a “count” property in the List response, which you can then use to calculate the desired offset.

How do I get a specific subscription data by ID. I got subscription ID from subscription.add. Now I can’t retrieve the subscription data.

Just realized the Subscription endpoints are not documented. :confused: