Footer Navigation with Collection-Link?

Hey everyone,

I want to build a Footer-Navigation by using a Collection-Link.
What I need from the linked collection is the Title and the Title_slug. However I can only get either one of them within the “display” field. Any idea on how to get both values (Title and Title_slug) without doing any further api-requests?

You can easily get all fields of the linked item(s) by appending &populate=1 to your query:

/api/collections/get/footer_nav?token=[TOKEN]&populate=1

That worked! Thank you!