CloudflareApp
vinext Edge Framework
Developer Platform

API Reference & Docs

Interact directly with Cloudflare Worker edge routes and inspect live response payloads.

Available Endpoints

CLI Quickstart

Run endpoints locally via the Vite-powered edge dev server:

pnpm run dev
GET

/api/hello

Returns health status, V8 isolate environment details, and edge node region.

Query Parameters

Response Payload

Click "Execute Request" to inspect real-time JSON response.

Integration Code Snippet

const response = await fetch("https://your-app.workers.dev/api/hello?region=LHR", {
  method: "GET",
  headers: { "Accept": "application/json" }
});
const data = await response.json();
console.log(data);