# Location Data Request

WhatsApp & Telegram support receiving location data. When a user sends their location, it will automatically populate variables in voiceflow containing their location data. Check out [Automatically Populated Variables](/documentation/basics/automatically-populated-variables.md) to see how the variable population works and which variables are needed in your flow to support this.

You can confirm if if the user has sent the location by parsing the JSON string which is sent by FlowBridge to your flow as text, to check if the `location_latitude` key exists in the JSON object. If both are true that it is indeed a JSON object, and it contains the key-variable pair `location_latitude`, you can assume its indeed a location request.

WhatsApp specifically supports requesting the user for their location. Read more about this on the [Request User Location](/documentation/social-integrations/whatsapp/request-user-location.md)page


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.flowbridge.app/documentation/advanced-use-cases/location-data-request.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
