01 / ANY MODEL
Start with the model you already trust
Every Galadri agent runs on a frontier model of your choice: Claude, GPT, Gemini, or open-source. No lock-in, swap models anytime.
Galadri is the API and backend for automotive AI tool calls, database management, scheduled tasks, and call, SMS, and email workflows.
In your app
First API call in under 2 minutes • Pay as you go • No sales call required
01 / ANY MODEL
Every Galadri agent runs on a frontier model of your choice: Claude, GPT, Gemini, or open-source. No lock-in, swap models anytime.
02 / AUTOMOTIVE TOOL CALLS
Direct integrations to NHTSA, Google Maps, TomTom, real dealer inventory, repair booking, live gas prices, popular telematics solutions, and any custom HTTP or MCP tools you add.
03 / COMMUNICATION CHANNELS
Inbound and outbound voice, SMS, and email on your numbers and your domain. Your agent can match a callback to the right user and vehicle, remember the subject, field the call, then follow up by text or email.
Live vehicle diagnostics
P0420 - Catalyst efficiency below threshold
Recall check
0 open recalls
Nearby service options
3 shops nearby
Repair availability
Thursday 9:15 AM, 10:30 AM, 2:00 PM
04 / MEMORY
Automatically deploy a secure database that you and the AI can access and manage. Galadri keeps the long-term memory layer for automotive apps so you can save real records, track milestones, and schedule follow-up around real vehicle use cases.
Inbound call from Jiffy Lube
Callback - +1 (212) 555-0142 - Jiffy Lube 3rd Ave
Service advisor: Ready after 4:30 PM, paperwork emailed.
01 / ANY MODEL
Every Galadri agent runs on a frontier model of your choice: Claude, GPT, Gemini, or open-source. No lock-in, swap models anytime.
01 / ANY MODEL
Every Galadri agent runs on a frontier model of your choice: Claude, GPT, Gemini, or open-source. No lock-in, swap models anytime.
Comprehensive integrations, communications channels, memory, scheduling, and visualizations built for automotive developers to make these use cases possible in minutes.
Start fast
Create API key
Start in the console.
Create an agent
Choose a prompt and your tools.
POST /v1/chat
Stream actions, data, and content.
const response = await fetch("https://api.galadri.com/v1/chat", {
method: "POST",
headers: {
"Authorization": "Bearer gld_your_api_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
agent: "my-agent",
message: "Find an oil change under $40 near 60601",
end_user_id: "user-123",
}),
});
if (!response.ok || !response.body) {
throw new Error("Request failed");
}
const reader = response.body.getReader();
const decoder = new TextDecoder();
let buffer = "";
let content = "";
while (true) {
const { done, value } = await reader.read();
if (done) break;
buffer += decoder.decode(value, { stream: true });
const lines = buffer.split("\n");
buffer = lines.pop() || "";
for (const line of lines) {
if (!line.startsWith("data: ")) continue;
const payload = line.slice(6);
if (payload === "[DONE]") break;
const event = JSON.parse(payload);
if (event.type === "content") {
content += event.content;
console.log(content);
}
}
}Start self-serve and keep the heavy backend work off your roadmap.