WHATWG Fetch
WHATWG の定義する HTTP リクエストAPI
実は仕様には色々他のAPIとかも定義されている
code:js
const res = await fetch("https://example.com");
const json = await fetch("https://example.com/json").then(res => res.json());
#Web標準