Wirebase, programmatically.
REST endpoints for every primitive. Trigger workflows from your services. Embed AI without rebuilding the platform.
curl -X POST https://api.wirebase.com/v1/chat \
-H "Authorization: Bearer $WB_KEY" \
-d '{
"model": "claude-sonnet-4",
"messages": [
{ "role": "user", "content": "Summarize Q3 sales" }
],
"tools": ["@salesforce", "@analytics"]
}'Latency, regions, reliability.
<200ms
TTFT
Median time to first token.
3 regions
Coverage
US, EU, APAC endpoints.
99.95%
Uptime SLA
Enterprise plan SLA.
Streaming
By default
SSE on every endpoint.
Familiar primitives.
Every Wirebase primitive — chats, agents, workflows, knowledge bases — has a REST endpoint you can call from any language. Streaming chat responses use server-sent events so you get token-by-token output without polling. Workflow triggers fire via webhook so your existing services can kick off AI pipelines without any new infrastructure.
- REST endpoints for chats, agents, workflows, knowledge
- Server-sent events for streaming chat
- Webhook triggers for workflows
- OpenAPI spec available
Keys that respect your org model.
Create API keys scoped to a specific organization with exactly the permissions the integration needs — read, write, or admin. Revoke or rotate from the admin console without touching the code that uses the key. Every API call is captured in the audit log so you have a full trail of programmatic access.
- Per-organization API keys
- Scoped permissions (read, write, admin)
- Revoke and rotate from the admin console
- Audit log captures every API call

Wirebase as a workflow runtime.
Publish a workflow and call it from your backend like a serverless AI function — POST typed inputs, receive typed outputs, optionally stream intermediate node results. The same workflow is callable from chat, from an agent, and from the API, so you build it once and surface it everywhere. This turns Wirebase into your team's shared AI runtime rather than a standalone chat tool.
- POST to a workflow endpoint, get back the result
- Stream intermediate node outputs
- Pass typed inputs, get typed outputs
- Same workflow callable from chat and API

Built for builders.
REST endpoints
CRUD over every primitive.
Streaming chat
SSE-based chat completions.
Scoped keys
Per-org, per-permission, revocable.
Workflow triggers
Invoke any workflow from your code.
Audit logs
Every API call captured.
OpenAPI spec
Generate clients in any language.