# web.url ## Function Read the current request path. ## Syntax ```bt web.url ``` ## Parameters No parameters. ## Return value | Type | Description | | ------ | ------ | | String | Returns the path string without the leading /. | ## Example ```bt // Request: GET /docs/index result = web.url // Output: docs/index print result ``` ## Notes - Root path / returns an empty string.