Skip to main content
GET
List a sandbox's egress activity

Authorizations

X-API-Key
string
header
required

Path Parameters

sandbox_id
string
required

The unique identifier of the sandbox. Public sandbox ID: a bare UUID, or the region-tagged form sb-<region>-<uuid> (e.g. sb-use-1b4e28ba-…). Treat as an opaque string; the tagged form routes the request to the sandbox's home region. Endpoints accept both forms interchangeably.

Pattern: ^(sb-[a-z0-9]+-)?[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 200
before
string

Pagination cursor or time filter. Pass the previous response's opaque next_cursor to page through results, or an RFC3339 timestamp to return rows strictly older than that time.

since
string<date-time>

Return rows at or newer than this RFC3339 timestamp.

verdict
enum<string>

Filter to connection rows with this verdict. Excludes request rows.

Available options:
allowed,
blocked,
failed

Response

A page of network events (most recent first)

A page of network events with pagination metadata.

data
object[]
required
next_cursor
string | null
required

Opaque pagination cursor. Pass it verbatim as before to fetch the next page; do not parse it. Null when has_more is false.

has_more
boolean
required

Whether more rows exist beyond this page.