PokeePokee Enterprise API

Overview

A REST API for running long-form agent-driven workflows in a dedicated, persistent sandbox.

The Pokee Enterprise Responses API lets you run long-form, agent-driven workflows inside a dedicated, persistent sandbox. Each tenant gets a private workspace, a stable bearer token, and a set of HTTP endpoints for sessions, files, and streaming messages.

Your endpoint looks like:

https://your-tenant.enterprise.pokee.ai

Endpoints

PathMethodsPurpose
/healthGETLiveness check (no auth)
/v1/sessionsPOSTCreate a session
/v1/sessionsGETList sessions
/v1/sessionsDELETEBulk-delete by status / age
/v1/sessions/{id}GETGet session details
/v1/sessions/{id}DELETEDestroy a session
/v1/sessions/{id}/messagesPOSTSend a message (streams response)
/v1/sessions/{id}/filesGETList files in workspace
/v1/sessions/{id}/files/{path}GETDownload a file
/v1/sessions/{id}/files/{path}PUTUpload a file
/v1/sessions/{id}/files/{path}DELETEDelete a file
/v1/usageGETRolling usage + credit balance

All endpoints except /health require an Authorization: Bearer ${POKEE_KEY} header. Errors come back as JSON {"error": "<name>", "message": "<detail>"} with the HTTP status code matching the failure class (400 / 401 / 402 / 403 / 404 / 409 / 416 / 429 / 500 / 503).

What's next

On this page