Join the AI Workshop to learn more about AI and how it can be applied to web development. Next cohort February 1st, 2026
The AI-first Web Development BOOTCAMP cohort starts February 24th, 2026. 10 weeks of intensive training and hands-on projects.
To access query parameters in your Netlify Functions, you can access the event.queryStringParameters object available inside the handler function.
For example if you have an email query string, you can access it using
exports.handler = (event, context, callback) => {
event.queryStringParameters.email
//do something with it
}