Feature Lab
Run live CrossConnection flows against local mock endpoints and inspect outputs instantly.
Method
Endpoint
Query Params JSON
Request Body JSON
Run this tab to see response payloads.
Request Builder Snippet
ts
1import { createCrossConnection } from "cross-connection";23const client = createCrossConnection({ timeout: 9000 });45const response = await client.post("https://jsonplaceholder.typicode.com/todos/1", { action: "ship" }, {6 params: { topic: "playground" },7 transformRequest: [(data) => ({ ...data, sentAt: new Date().toISOString() })],8 transformResponse: [(data) => ({ ...data, transformed: true })],9});1011console.log(response.data);