Not TestedTesting not done, may not work properly
Networking

Fetch API

Perform asynchronous HTTP network requests with promise-based fetch().

Checking support...
Advertisement

Interactive Input Workspace

Ready for input

Web API Execution Output

Result output will be displayed here after processing...

Native JavaScript Code Example (Zero Libraries)

const res = await fetch('https://api.github.com');
const data = await res.json();

About the Fetch API Web API

Fetch API provides an interface for fetching resources asynchronously across the network.

Specification:W3C & WHATWG Web API Standard
Sponsored Content