# List NDA templates

URL: /en/docs/api/v1/nda-templates/get
Last Updated: 2026-07-30T21:15:44.951Z

## Description
No description available.

## Available Actions
- Execute GET request
- View request parameters
- View response schema
- Get code examples
- Navigate to related topics
- View step-by-step instructions
- Get best practices

## Content
### GET /api/v1/nda-templates

**List NDA templates**

Retrieve all NDA templates for the authenticated tenant

**Authentication:** Bearer token (`Authorization: Bearer <token>`)

**Responses:**

- `200` - Successful response
  - `templates` (array of NdaTemplate (object))
    - `id` (string (uuid)): Unique identifier for the template
    - `tenant` (string (uuid)): Tenant ID
    - `title` (string): Template title
    - `type` (enum: standard | bilateral | unilateral | multilateral | mutual): Agreement type
    - `content_markdown` (string): NDA content in markdown format
    - `validity_in_months` (number): Validity period in months
    - `language` (enum: en | de | fr): Template language
    - `status` (enum: draft | published | archived): Template status
    - `date_created` (string (date-time)): Creation timestamp
    - `date_updated` (string (date-time)): Last update timestamp
    - `user_created` (string): User who created the template
    - `user_updated` (string): User who last updated the template
- `401` - Unauthorized
  - `error` (string): Error message
- `500` - Internal server error
  - `error` (string): Error message

**Code samples:**

```cURL
curl -X GET https://app.orbiqhq.cloud/api/v1/nda-templates \
  -H "Authorization: Bearer $TRUST_CENTER_API_KEY"

```

