Developers

Build on Polybase.

Build powerful integrations, automate workflows, and extend the Polybase platform using our REST API and predictable webhooks.
API
REST + Webhooks
SDK
TypeScript · Python
Auth
API keys · OAuth
Uptime
99.99%
Getting started

In production in minutes.

Start with clean REST, webhooks, and SDKs. Examples and step-by-step guides are a click away.

01

REST API

Interact with your workspace data via clean, predictable REST endpoints.

Read docs
02

Authentication

Integrate securely via API tokens or standard email / password exchange.

Auth guide
03

Agents

Build autonomous AI agents that interact with your channels and data.

Agent docs
04

Webhooks

Listen to events in real-time to trigger external automation.

Webhook setup
Developer experience

Simple, predictable, powerful.

Whether you're scripting a quick automation in Python or building a complex internal integration, the architecture is designed to support both.

  • Standard REST patterns
  • Real-time webhooks
  • Granular permissions
polybase.ts
// List tasks
await fetch('https://api.polybase.io/v1/tasks', {
method: 'GET',
headers: {
'Authorization': `Bearer ${POLYBASE_TOKEN}`
}
}).then(r => r.json())
.then(data => console.log(`→ ${data.total} tasks`));