@DaveVs , Thanks for sharing additional details.
Easy Auth doesn't support static key-based authentication, but it does support validating Azure AD bearer tokens. For your legacy web app, you can use one of the MSAL libraries to fetch a bearer token from Azure AD and then attach it to an HTTP request to your web API configured with Easy Auth in the Authorization header (e.g. "Authorization: Bearer <jwt>").
You can achieve this using the following guidance: https://learn.microsoft.com/azure/app-service/configure-authentication-provider-aad#daemon-client-application-service-to-service-calls
Hope this helps point you in the right direction. If you any questions, please let us know.