Fetching project key for version from REST API

I’m able to use the Jira Server REST API to fetch a version.
https://docs.atlassian.com/software/jira/docs/api/REST/8.1.2/?_ga=2.145705266.728071269.1562777562-422645949.1562003933#api/2/version-getVersion

I want to build a link to the URL to view the version in the JIRA web UI.

The problem is that the URL to view the version in JIRA requires the project key, which doesn’t come back with the version.

The URL for the version in the JIRA UI seems to be /projects/{projectKey}/versions/{versionId}

Is there a way for me to include the project key in the response from GET /version?

Thanks.

I suspect you’ll need to make a call to GET PROJECT with a path parameter of {projectKeyOrId}. Unfortunately I don’t think it’s possible to get the key any other way.