Skip to content
Cloudflare Docs

Return JSON

Last reviewed: over 1 year ago

Return JSON directly from a Worker script, useful for building APIs and middleware.

If you want to get started quickly, click on the button below.

Deploy to Cloudflare

This creates a repository in your GitHub account and deploys the application to Cloudflare Workers.

export default {
async fetch(request) {
const data = {
hello: "world",
};
return Response.json(data);
},
};