---
title: Errors module
description: Exception capture, fingerprinting, grouping, and triage for Cuitty services.
section: Modules
order: 10
updatedAt: 2026-05-07
slug: modules/errors
---
# Errors module

The errors module captures exceptions, computes a stable fingerprint, groups related occurrences, and exposes grouped reads for triage.

## What it captures

- Exception name, message, and stack trace
- Release, environment, service, and request context
- Fingerprint and group status
- First seen, last seen, and occurrence counts

## Capture

```
POST /api/errors/capture
```

Unknown fields are kept in metadata so SDKs can ship richer context without a schema migration for every framework.

## Reads

| Endpoint | Returns |
| --- | --- |
| `GET /api/errors/status` | Module health |
| `GET /api/errors/groups?project_id=...` | Grouped exceptions |
| `GET /api/errors/groups/{fingerprint}` | Group detail and recent occurrences |

Product page: [Errors](/product/modules/errors).