You need to sign in to do that
Don't have an account?

Retrieve values of ApexCallout event type from EventLogFile object.
Hello! It is possible to retrieve programmatically values of ApexCallout event type from EventLogFile object?
You need to sign in to do that
Don't have an account?
and pass this query to rest resource
View Events in the REST Explorer
The REST Explorer gives you access to the Salesforce REST API, a web service that lets you retrieve data from your organization.
To get more information about your organization’s Report Export events in Workbench:
In the top menu, select utilities | REST Explorer.
Replace the existing text with /services/data/v<APIversion>.0/query?q=SELECT+Id+,+EventType+,+LogDate+,+LogFileLength+,+LogFile+FROM+EventLogFile+ WHERE+EventType+=+'ApexCallout', where <APIversion> is the API version you’re using, such as 46.
Click Execute.
https://trailhead.salesforce.com/en/content/learn/modules/event_monitoring/event_monitoring_query
https://sfdcbrewery.github.io/SalesforceEventMonitoring/
http://www.salesforcehacker.com/2018/01/whats-new-in-spring18-with-event.html
https://www.simplysfdc.com/2014/10/salesforce-event-log-files.html
https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_objects_eventlogfile_apexcallout.htm
Can you post working example?