I can easily get a list of all feature services in my AGOL environment
fs = gis.content.search(query="type:service", max_items=10000)
From these results, I am curious if there is any easy way to understand if a feature service is "hosted" or not. In other words, how can I tell if a feature service was created by a user uploading or creating data (csv, shapefile, etc.) or if a user added a feature service from an existing arcgis url (new item-->from url-->paste in REST endpoint-->etc).
I know I can find this information out by looking at the items in our AGOL instance, but want to be able to do this programmatically.
Any tips?