**Source URL:** https://limited.veevavault.dev/safety/vault-api/api-reference/21.3/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": [
            {
                "type": "config",
                "available": 4,
                "allowed": 3,
                "temporary": 3
            }
        ],
        "active": [
            {
                "pod": "vv1-10",
                "vault_id": 56220,
                "name": "Sandbox1",
                "type": "config",
                "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": [
                    {
                        "type": "config",
                        "available": 1,
                        "allowed": 0,
                        "temporary": 1
                    }
                ]
            }
        ]
    }
}

```
</CodeExample>

## Response Details {#response-details}

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



---

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