# Templates API Reference

> Source: https://centric-api-docs.certn.co/#templates

## Endpoints

| Method | Path | Description |
|--------|------|-------------|
| `GET` | `/api/public/templates/credential-verification/` |  |
| `GET` | `/api/public/templates/credit-report/` |  |
| `GET` | `/api/public/templates/criminal-record/` |  |
| `GET` | `/api/public/templates/employment-verification/` |  |

### GET /api/public/templates/credential-verification/

#### Parameters

| Name | In | Type | Required | Description |
|------|-----|------|----------|-------------|
| `page` | query | integer | No | A page number within the paginated result set. |
| `page_size` | query | integer | No | Number of results to return per page. Defaults to 10, maximum 100. |

#### Example Request

```bash
curl -X GET "https://api.sandbox.certn.co/api/public/templates/credential-verification/" \
  -H "Authorization: Api-Key YOUR_API_KEY"
```

### GET /api/public/templates/credit-report/

#### Parameters

| Name | In | Type | Required | Description |
|------|-----|------|----------|-------------|
| `page` | query | integer | No | A page number within the paginated result set. |
| `page_size` | query | integer | No | Number of results to return per page. Defaults to 10, maximum 100. |

#### Example Request

```bash
curl -X GET "https://api.sandbox.certn.co/api/public/templates/credit-report/" \
  -H "Authorization: Api-Key YOUR_API_KEY"
```

### GET /api/public/templates/criminal-record/

#### Parameters

| Name | In | Type | Required | Description |
|------|-----|------|----------|-------------|
| `page` | query | integer | No | A page number within the paginated result set. |
| `page_size` | query | integer | No | Number of results to return per page. Defaults to 10, maximum 100. |

#### Example Request

```bash
curl -X GET "https://api.sandbox.certn.co/api/public/templates/criminal-record/" \
  -H "Authorization: Api-Key YOUR_API_KEY"
```

### GET /api/public/templates/employment-verification/

#### Parameters

| Name | In | Type | Required | Description |
|------|-----|------|----------|-------------|
| `page` | query | integer | No | A page number within the paginated result set. |
| `page_size` | query | integer | No | Number of results to return per page. Defaults to 10, maximum 100. |

#### Example Request

```bash
curl -X GET "https://api.sandbox.certn.co/api/public/templates/employment-verification/" \
  -H "Authorization: Api-Key YOUR_API_KEY"
```

---

*See the [interactive documentation](https://centric-api-docs.certn.co/#templates) for more details.*