**Source URL:** https://limited.veevavault.dev/regulatory/vault-api/api-reference/23.1/sandbox-vaults/retrieve-sandboxes.md

# Retrieve Sandboxes



Retrieve information about the sandbox Vaults for the authenticated Vault.

<Endpoint path="/api/{version}/objects/sandbox" method="GET"></Endpoint>

## Headers {#headers}

<FieldTable>
| Name | Description |
| --- | --- |
| `Accept` | `application/json` (default) or `application/xml` |
</FieldTable>

## Request {#request}

<CodeExample title="">
```
curl -X GET -H "Authorization: {SESSION_ID}" \
https://myvault.veevavault.com/api/v20.3/objects/sandbox

```
</CodeExample>

## Response {#response}

<CodeExample title="">
```
{
    "responseStatus": "SUCCESS",
    "data": {
        "entitlements": [
            {
                "size": "Small",
                "available": 1,
                "allowed": 1,
                "temporary": 0
            },
            {
                "size": "Large",
                "available": 0,
                "allowed": 1,
                "temporary": 0
            },
            {
                "size": "Full",
                "available": 1,
                "allowed": 1,
                "temporary": 0
            }
        ],
        "active": [
            {
                "pod": "vv1-10",
                "vault_id": 56220,
                "name": "Sandbox1",
                "type": "config",
                "size": "Large",
                "status": "active",
                "domain": "veevavault.com",
                "dns": "sandbox1.veevavault.com",
                "source_vault_id": 13803,
                "refresh_available": "2020-08-20T13:20:10.000Z",
                "created_date": "2020-08-20T13:20:10.000Z",
                "created_by": 1,
                "modified_date": "2020-08-20T13:43:10.000Z",
                "modified_by": 1,
                "release": "limited",
                "entitlements": []
            }
        ]
    }
}

```
</CodeExample>

## Response Details {#response-details}

The response contains information about the sandbox Vaults for the authenticated Vault.



---

**Previous:** [Sandbox Vaults](/regulatory/vault-api/api-reference/23.1/sandbox-vaults)  
**Next:** [Retrieve Sandbox Details by ID](/regulatory/vault-api/api-reference/23.1/sandbox-vaults/retrieve-sandbox-details-by-id)