Request.url

The url read-only property of the Request interface contains the URL of the request.

Value

A USVString indicating the url of the request.

Examples

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

var myRequest = new Request('flowers.jpg');
var myURL = myRequest.url; // "https://mdn.github.io/fetch-examples/fetch-request/flowers.jpg"

Specifications

Specification
Fetch Standard
# ref-for-dom-request-url③

Browser compatibility

BCD tables only load in the browser

See also