DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

JS Reference: Fetch API

Quick reference for Fetch API.

Read time: 1 min Words: 16
Open Playground → HTML My Progress

JS Reference — Fetch API

Quick summary of Fetch API with syntax and example.

Syntax

fetch(url).then(...).catch(...)

Example

async function load(){
  const res = await fetch("https://api.github.com/zen");
  const text = await res.text();
  console.log(text);
}
load();