Get to know MDN better
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
* Some parts of this feature may have varying levels of support.
Note: This feature is available in Web Workers, except for Service Workers.
XMLHttpRequest (XHR) objects are used to interact with servers. You can retrieve data from a URL without having to do a full page refresh. This enables a Web page to update just part of a page without disrupting what the user is doing.
EventTarget XMLHttpRequestEventTarget XMLHttpRequestDespite its name, XMLHttpRequest can be used to retrieve any type of data, not just XML.
If your communication needs to involve receiving event data or message data from a server, consider using server-sent events through the EventSource interface. For full-duplex communication, WebSockets may be a better choice.
The constructor initializes an XMLHttpRequest. It must be called before any other method calls.
This interface also inherits properties of XMLHttpRequestEventTarget and of EventTarget.
XMLHttpRequest.readyState Read onlyReturns a number representing the state of the request.
XMLHttpRequest.response Read onlyReturns an ArrayBuffer, a Blob, a Document, a JavaScript object, or a string, depending on the value of XMLHttpRequest.responseType, that contains the response entity body.
XMLHttpRequest.responseText Read onlyReturns a string that contains the response to the request as text, or null if the request was unsuccessful or has not yet been sent.
XMLHttpRequest.responseTypeSpecifies the type of the response.
XMLHttpRequest.responseURL Read onlyReturns the serialized URL of the response or the empty string if the URL is null.
XMLHttpRequest.responseXML Read onlyReturns a Document containing the response to the request, or null if the request was unsuccessful, has not yet been sent, or cannot be parsed as XML or HTML. Not available in Web Workers.
XMLHttpRequest.status Read onlyReturns the HTTP response status code of the request.
XMLHttpRequest.statusText Read onlyReturns a string containing the response string returned by the HTTP server. Unlike XMLHttpRequest.status, this includes the entire text of the response message ("OK", for example).
Note: According to the HTTP/2 specification RFC 7540, section 8.1.2.4: Response Pseudo-Header Fields, HTTP/2 does not define a way to carry the version or reason phrase that is included in an HTTP/1.1 status line.
The time in milliseconds a request can take before automatically being terminated.
XMLHttpRequest.upload Read onlyA XMLHttpRequestUpload representing the upload process.
XMLHttpRequest.withCredentialsReturns true if cross-site Access-Control requests should be made using credentials such as cookies or authorization headers; otherwise false.
A boolean. If true, the request will be sent without cookie and authentication headers.
XMLHttpRequest.mozSystem Read onlyA boolean. If true, the same origin policy will not be enforced on the request.
Aborts the request if it has already been sent.
XMLHttpRequest.getAllResponseHeaders()Returns all the response headers, separated by CRLF, as a string, or null if no response has been received.
XMLHttpRequest.getResponseHeader()Returns the string containing the text of the specified header, or null if either the response has not yet been received or the header doesn't exist in the response.
XMLHttpRequest.open()Initializes a request.
XMLHttpRequest.overrideMimeType()Overrides the MIME type returned by the server.
XMLHttpRequest.send()Sends the request. If the request is asynchronous (which is the default), this method returns as soon as the request is sent.
XMLHttpRequest.setAttributionReporting() Secure contextIndicates that you want the request's response to be able to register an attribution source or trigger event.
XMLHttpRequest.setPrivateToken()Adds private state token information to an XMLHttpRequest call, to initiate private state token operations.
XMLHttpRequest.setRequestHeader()Sets the value of an HTTP request header. You must call setRequestHeader() after open(), but before send().
This interface also inherits events of XMLHttpRequestEventTarget.
readystatechangeFired whenever the readyState property changes. Also available via the onreadystatechange event handler property.
| XMLHttpRequest # interface-xmlhttprequest |
Enable JavaScript to view this browser compatibility table.
This page was last modified on May 9, 2026 by MDN contributors.
Your blueprint for a better internet.
Visit Mozilla Corporation’s not-for-profit parent, the Mozilla Foundation.
Portions of this content are ©1998–2026 by individual mozilla.org contributors. Content available under a Creative Commons license.