SDKsTypeScript

Escape hatch

Call unmodelled endpoints directly through the BimpeAI TypeScript SDK transport.

For endpoints the SDK does not model yet, call the transport directly. It applies the same auth, base URL, retries, and request id as the typed methods, and returns the full ApiResponse<T> with data, meta, requestId, status, and headers.

const res = await bimpe.request<{ pong: boolean }>({ method: 'GET', path: '/health' });
res.data.pong;