polybase Developers

Build powerful integrations, automate workflows, and extend the polybase platform using our REST API and predictable webhooks.

Getting Started

REST API

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

Read Docs

Authentication

Securely integrate using API tokens or standard email/password exchange.

Auth Guide

Agents

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

Agent Docs

Webhooks

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

Webhook Setup

Simple yet Powerful

Our architecture is designed to be accessible. Whether you are scripting a quick automation in Python or building a complex integration, Polybase is ready.

  • Standard REST Patterns
  • Real-time Webhooks
  • Granular Permissions
// Create a generic webhook automation listener
fetch('https://api.polybase.io/api/collections/tasks/records', {
  method: 'GET',
  headers: {
    'Authorization': `Bearer ${TOKEN}`
  }
})
  .then(res => res.json())
  .then(data => console.log(`Found ${data.totalItems} tasks`));