+
+
API Examples:
+
Network: fetch(url, {method: "POST", headers: {...}, body: "..."})
+
JSON: JSON.stringify(data) and JSON.parse(jsonString)
+
+
+
Input Controls
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Network Tests
+
+
+
+
+
+
JSON Tests
+
+
+
+
+
+
+
+
+
+
Response Log
+
+
+
+
Network API Features:
+
+ - fetch(url, options): Makes HTTP requests with support for all methods
+ - Response methods: text(), json(), ok() for processing responses
+ - Headers & Body: Full control over request headers and body content
+ - Status & StatusText: Access to HTTP response status information
+
+
JSON API Features:
+
+ - JSON.stringify(): Alias for encode (browser compatibility)
+ - JSON.parse(): Alias for decode (browser compatibility)
+
+
+
+