[Runtime
](../../../index.md)[Package Manager
](../../../pm/cli/install/index.md)[Bundler
](../../../bundler/index.md)[Test Runner
](../../../test/index.md)[Guides
](../../index.md)[Reference
](https://bun.com/reference)[Blog
](https://bun.com/blog)[Feedback
](../../../feedback/index.md)
Bun implements the Web-standard fetch API for sending HTTP requests. To send a simple GET request to a URL:
fetch.ts
const response = await fetch("https://bun.com");
const html = await response.text(); // HTML string
To send a POST request to an API endpoint.
fetch.ts
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();
Was this page helpful?
[
Write a simple HTTP server
Previous
](../simple/index.md)[
Hot reload an HTTP server
Next
](../hot/index.md)