Data update when navigating to a new page

I have a page, where users create via Input fields add Name and Description of a project. This information is then send to Xano and the users are transfered to the 2nd page, where they add additional information to the project. This 2nd page is also used for existing projects (they arelady have Xano ID), so when I redirect the user to this page, I fetch the collection data from Xano via this ID and show the right data on the page. However, when the user creates the project, I don’t have the Xano ID, as it was just created. Is there another way to transfer the data from one page to another?

Yeh. Various ways to achieve this.

You can store that fetched data in a variable that you can the access.

Or if you build a single page style form, in the workflows the request from the first action can be used in subsequent actions. See here

Or you could even pass the ID as a page param and do another query using that ID. But for performance reasons, you should keep queries to a minimum.