Formbase stores every submission, but sometimes you want the values immediately after submit to personalize the next screen. You can do this in two ways:Documentation Index
Fetch the complete documentation index at: https://docs.formbase.dev/llms.txt
Use this file to discover all available pages before exploring further.
- Use the existing form data in the browser
- Submit from the server and use the JSON response
Client-side data (fastest)
Use the values you already have in the browser and redirect with state or query params.On your thank-you page, read
sessionStorage and render a personalized message.Browser requests receive a redirect instead of JSON. Use a server action or API route if you need the response body.