---
title: "Get Stripe sandbox"
method: GET
path: "/api/apps/{app_id}/payments/stripe/sandbox"
---

# Get Stripe sandbox

`GET /api/apps/{app_id}/payments/stripe/sandbox`

<Info>This API is in beta. Endpoints, fields, and behavior may still change, so avoid depending on it in production.</Info>

Returns the stored [Stripe sandbox](/developers/references/apps-api/sections/payments-stripe#from-sandbox-to-live), or `null` if none exists.

Use this when you need the sandbox's own fields, such as its Stripe ID or exact expiration time, rather than the summary [Get Stripe integration status](/api-reference/get-stripe-integration-status) reports.

This read does not refresh the sandbox's state from Stripe. Call [Get Stripe onboarding link](/api-reference/get-stripe-onboarding-link) instead if you need it refreshed.

Requires read access to the app.

## Path parameters

- `app_id` string, required — ID of the Base44 app.

## Response `200`

Successful Response

- SandboxStatusResponse — Sandbox status response.
  - `app_id` string, required — ID of the Base44 app.
  - `status` string, required — Stored sandbox status. Either `unclaimed`, `claimed`, or `expired`.
  - `claimable_sandbox_id` string, required — Stripe claimable sandbox ID.
  - `claim_url` string, nullable, required — Onboarding link, or `null` when none is stored or you are a workspace viewer. Treat this link as a credential.
  - `stripe_account_id` string, required — Stripe account ID for the sandbox.
  - `is_claimable` boolean, required — Whether the sandbox is unclaimed, has not expired, and has a stored claim link.
  - `expires_at` string, nullable, required — Sandbox expiration as a UTC timestamp in ISO 8601 format, or `null` when no expiration is stored.

## Other responses

- `401` — Missing or invalid credentials.
- `403` — The credential is not permitted or you don't have the required app access. A missing app also fails the app access check.
- `404` — The app is outside the credential's granted workspace.
- `409` — The workspace requires an unlocked SSO session.

## Changes

- **2026-09-15** `ca10c5ce328c` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/base44/apis/base44-app-management-api/changes/api/apps/:app_id/payments/stripe/sandbox/get.md)

---

[API](https://skmtc.dev/base44/apis/base44-app-management-api.md) · [All operations](https://skmtc.dev/base44/apis/base44-app-management-api/llms.txt) · [OpenAPI document](https://skmtc.dev/base44/apis/base44-app-management-api/revisions/5e69adeb8667?raw)
