mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
27 lines
734 B
Plaintext
27 lines
734 B
Plaintext
---
|
|
title: Send an HTTP request using fetch
|
|
sidebarTitle: Fetch with Bun
|
|
mode: center
|
|
---
|
|
|
|
Bun implements the Web-standard [`fetch`](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) API for sending HTTP requests. To send a simple `GET` request to a URL:
|
|
|
|
```ts fetch.ts icon="/icons/typescript.svg"
|
|
const response = await fetch("https://bun.com");
|
|
const html = await response.text(); // HTML string
|
|
```
|
|
|
|
---
|
|
|
|
To send a `POST` request to an API endpoint.
|
|
|
|
```ts fetch.ts icon="/icons/typescript.svg"
|
|
const response = await fetch("https://bun.com/api", {
|
|
method: "POST",
|
|
body: JSON.stringify({ message: "Hello from Bun!" }),
|
|
headers: { "Content-Type": "application/json" },
|
|
});
|
|
|
|
const body = await response.json();
|
|
```
|