Run the below code in Anonymous window.
Sample Code:
for ( OrgLimit o : OrgLimits.getAll() ) {
system.debug( o.getName() + ' - ' + o.getValue() + ' - ' + o.getLimit() );
}
Get the debug log to find the limits.
(OR)
Run the below code in Anonymous window.
Sample Code:
Http h = new Http();
HttpRequest req = new HttpRequest();
req.setEndpoint(
Url.getOrgDomainUrl().toExternalForm() +
'/services/data/v63.0/limits'
);
req.setMethod( 'GET' );
req.setHeader(
'Authorization',
'Bearer ' + UserInfo.getSessionId()
);
HttpResponse res = h.send( req );
System.debug( 'Limits are ' + res.getBody() );
Get the debug log to find the limits.
Reference Link: