function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Ikram Momin 16Ikram Momin 16 

connected application rest api

Hi 
I am using rest api for salesforce. Please help me find out REST API to fetch all connected apps in single REST call.
Thanks in advance
SwethaSwetha (Salesforce Developers) 
HI Ikram,
Based on answer on https://salesforce.stackexchange.com/questions/208956/how-to-get-connectedapp-details-using-rest-api it does not seem possible.

ConnectedApp settings are only available in the Metadata API.

You can get usage of Connected App by querying like /services/data/v50.0/query/?q=select+id+from+OauthToken
Reference: https://salesforce.stackexchange.com/questions/339920/how-to-get-list-of-connected-apps-oauth-usage

If this information helps, please mark the answer as best. Thank you