Free Public Beta
Pro Tier Coming Soon
AI Backend for
Builders
The complete AI backend in one API call. Stop building AI plumbing — focus on your app instead.
OR
By continuing, you agree to Behest's Terms of Service and Privacy Policy.
End-to-end encrypted. No passwords stored.
behest-client.ts
import Behest from "@behest/client-ts"
const client = new Behest({
projectSlug: "my-app",
})
const response = await client.chat.completions.create({
model: "claude-sonnet-4-20250514",
messages: [{ role: "user", content: "Hello" }],
})
$ curl -X POST https://my-app.internal.behest.ai/v1/chat/completions
✓200 OK·47ms·routed → anthropic
responseapplication/json
{
"id": "chatcmpl-9k2f...",
"model": "claude-sonnet-4-20250514",
"choices": [{
"message": {
"role": "assistant",
"content": "Hello! How can I help you today?"
}
}],
"usage": {"prompt": 12, "completion": 8}
}