RemanenetSpy
Rebrand to Kaal — rename from Chronos OS, add Logo component with serif seal design, swap all Hexagon icons for Logo
4303a4c
Raw
History Blame Contribute Delete
936 Bytes
// API helper for Kaal API
const API_BASE = process.env.NEXT_PUBLIC_API_URL || "https://spy9191-chronos-api-backend.hf.space";
export async function apiCall(
method: "GET" | "POST",
path: string,
apiKey: string,
body?: any
) {
const headers: HeadersInit = {
"Content-Type": "application/json",
};
if (apiKey) {
headers["Authorization"] = `Bearer ${apiKey}`;
}
const url = `${API_BASE}${path}`;
try {
const res = await fetch(url, {
method,
headers,
body: body ? JSON.stringify(body) : undefined,
});
if (!res.ok) {
let errStr = res.statusText;
try {
const errJson = await res.json();
errStr = errJson.detail || errStr;
} catch (e) {}
throw new Error(`HTTP ${res.status}: ${errStr}`);
}
return await res.json();
} catch (error: any) {
throw new Error(error.message || "Failed to connect to Kaal API");
}
}