Skip to content

API Overview

Shipbox provides a RESTful API for managing sandboxes and credits programmatically.

Base URL

All API requests should be made to:

https://api.shipbox.dev/v1

Authentication

All requests require a Bearer token in the Authorization header.

Terminal window
curl -H "Authorization: Bearer YOUR_TOKEN" \
https://api.shipbox.dev/v1/sessions

You can find your token in the Settings panel or use the Supabase Auth library.

Response Format

All responses are returned as JSON.

{
"id": "sb-123",
"status": "active",
"createdAt": "2026-01-11T23:00:00Z"
}