**Source URL:** https://limited.veevavault.dev/regulatory/vault-api/api-reference/26.1/binders/binder-templates/retrieve-binder-template-collection

# Retrieve Binder Template Collection

Retrieve the collection of all binder templates in your Vault.

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

## Headers

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

## Request

<CodeExample title="">
```bash
curl -X GET -H "Authorization: {SESSION_ID}" \
https://myvault.veevavault.com/api/v15.0/objects/binders/templates
```
</CodeExample>

## Response

<CodeExample title="">
```json
{
   "responseStatus":"SUCCESS",
   "data":[
      {
         "name__v": "study_site_level_file_tmf_rm_30__c",
         "label__v": "Study Site Level File TMF RM 2.0",
         "active__v": true,
         "type__v": "trial_master_file__v",
         "subtype__v": null,
         "classification__v": null,
         "filing_model__v": "0MO000000000101"
      },
      {
         "name__v": "study_site_level_file_tmf_rm_20__c",
         "label__v": "Study Site Level File TMF RM 2.0",
         "active__v": "true",
         "type__v": "site_master_file__v",
         "subtype__v": null,
         "classification__v": null,
         "filing_model__v": "0MO000000000102"
      }
   ]
}
```
</CodeExample>

## Response Details

The response lists all binder templates which have been added to the Vault. Shown above, two binder templates exist in our Vault. Both exist at the document type level and are intended for use with the `compliance_package__v` type. For information about the document template metadata, refer to the "Retrieve Binder Template Attributes" response below.

---

**Previous:** [Retrieve Binder Template Node Metadata](/regulatory/vault-api/api-reference/26.1/binders/binder-templates/retrieve-binder-template-node-metadata)  
**Next:** [Retrieve Binder Template Attributes](/regulatory/vault-api/api-reference/26.1/binders/binder-templates/retrieve-binder-template-attributes)