Kirby KQL · How to get translated page

I’m trying to achieve two things using the query language.
For context, I’m using Kirby as a headless CMS.
On the one hand, I want to query one language or another, but it’s unclear to me where I need to set the corresponding parameter in the request. I’m always getting the default language.

{
  "query": "page('current-campus')",
  "select": {
    "languages": true,
    "url": true,
    "id": true,

You need to set the x-language header

1 Like

Awesome. Thank you so much :slight_smile: