Skip to main content
GET
/
v2
/
sandcastles
/
{id}
Get Sandcastle Status
curl --request GET \
  --url https://app.textql.com/v2/sandcastles/{id} \
  --header 'Authorization: Bearer <token>'
{
  "memory_usage": "<string>",
  "dataframes": [
    {
      "name": "<string>",
      "num_rows": 123,
      "num_cols": 123,
      "memory_usage_bytes": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

API key or JWT token

Path Parameters

id
string
required

Sandbox ID

Response

Sandbox status

status
enum<string>

Point-in-time liveness for this sandbox. stale and unknown are list-only states (see SandboxSummary); this endpoint reports only running or stopped.

Available options:
running,
stopped
memory_usage
string

Human-readable memory usage (only when running)

dataframes
object[]

Loaded dataframes (only when running)