List OAuth clients and scopes via API?

I need to audit our OAuth clients and check their scope assignments programmatically. The /api/v2/oauth/clients endpoint returns the list, but the response doesn’t seem to include the actual scopes. Is there a separate endpoint for that or am I missing a query param? Here’s the C# call I’m using: var clients = await _oauthClient.OauthApi.ListOauthClientsAsync(); The JSON payload just has id and name. How do I get the scopes?