**Source URL:** https://limited.veevavault.dev/medical/vault-api/api-reference/22.3/domain-information/retrieve-domains.md

# Retrieve Domains

Non-domain Admins can use this request to retrieve a list of all their domains, including the domain of the current Vault. You can use this data as a valid `domain` value when [creating a sandbox Vault](/vault-api/api-reference/22.3/sandbox-vaults/create-or-refresh-sandbox).

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

## Headers {#headers}

<FieldTable>
| Name | Description |
| --- | --- |
| `Content-Type` | `application/x-www-form-urlencoded` |
| `Accept` | `application/json` (default) or `application/xml` |
</FieldTable>

## Request {#request}

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

```
</CodeExample>

## Response {#response}

<CodeExample title="">
```
{
    "responseStatus": "SUCCESS",
    "responseMessage": "Success",
    "domains": [
        {
            "name": "veepharm.com",
            "type": "Production"
        },
        {
            "name": "veepharm-sbx.com",
            "type": "Sandbox"
        }
    ]
}

```
</CodeExample>

---

**Previous:** [Retrieve Domain Information](/medical/vault-api/api-reference/22.3/domain-information/retrieve-domain-information)  
**Next:** [Vault Query Language (VQL)](/medical/vault-api/api-reference/22.3/vault-query-language-vql)