☕
커피 한잔 후원
Auto
한국어
English
📡 HTTP 요청 빌더
오프라인으로 요청을 조합하고 fetch/Axios 스니펫을 생성합니다
메서드
GET
POST
PUT
PATCH
DELETE
URL
헤더 (key: value 한 줄에 하나)
Content-Type: application/json
Copy
Fetch 스니펫
fetch('https://api.example.com', { method: 'GET', headers: { "Content-Type": "application/json" }, })
Copy
Axios 스니펫
axios.get('https://api.example.com' { headers: { "Content-Type": "application/json" } })
Copy