> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: wix-http-functions ## Namespace: wix-http-function-request ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/velo-only-apis/wix-http-functions/wix-http-function-request/introduction.md ## Article Content: # Introduction The `WixHttpFunctionRequest` object breaks the URL of the incoming call to an HTTP function into different parameters for easy access. The URL of the incoming call to an HTTP function is broken into: + [`baseUrl`](https://dev.wix.com/docs/velo/api-reference/wix-http-functions/wix-http-function-request/base-url.md) + [`path`](https://dev.wix.com/docs/velo/api-reference/wix-http-functions/wix-http-function-request/path.md) + [`query`](https://dev.wix.com/docs/velo/api-reference/wix-http-functions/wix-http-function-request/query.md) For premium sites, the URL of the incoming call has the following format: **`https://www.domain.com/_functions/myFunction/sub?q=value`** + **baseUrl**:     `https://www.domain.com/_functions` + **path**:          `sub` + **query**:        `q=value` For free sites, the URL of the incoming call has the following format: **`https://user_name.wixsite.com/mysite/_functions/myFunction/sub?q=value`** + **baseUrl**:     `https://user_name.wixsite.com/mysite/_functions` + **path**:          `sub` + **query**:        `q=value`