Back to Content

Request: url property

files/en-us/web/api/request/url/index.md

latest860 B
Original Source

{{APIRef("Fetch API")}}{{AvailableInWorkers}}

The url read-only property of the {{domxref("Request")}} interface contains the URL of the request.

Value

A string indicating the URL of the request.

Examples

In the following snippet, we create a new request using the {{domxref("Request.Request", "Request()")}} constructor (for an image file in the same directory as the script), then save the URL of the request in a variable:

js
const myRequest = new Request("flowers.jpg");
const myURL = myRequest.url; // "https://github.com/mdn/dom-examples/tree/main/fetch/fetch-request/flowers.jpg"

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also