# How to access query parameters in Netlify functions

> Learn how to access query parameters in a Netlify Function by reading the event.queryStringParameters object available inside the handler function.

Author: [Flavio Copes](https://flaviocopes.com/about/) | Published: 2020-05-24 | Topics: [Services](https://flaviocopes.com/tags/services/) | Canonical: https://flaviocopes.com/netlify-functions-query-parameters/

To access query parameters in your [Netlify Functions](https://flaviocopes.com/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

```js
exports.handler = (event, context, callback) => {
  event.queryStringParameters.email
  //do something with it
}
```
