# endpoint-not-found

<Badge variant="warning">404 Not Found</Badge> <Badge variant="muted">endpoint-not-found</Badge>

| Field | Value |
|---|---|
| **Type URI** | `https://docs.kordiam.app/docs/errors/endpoint-not-found` |
| **HTTP Status** | `404 Not Found` |

## Description

No API endpoint matches the requested HTTP method and path.

## Response Example

```json
{
  "type": "https://docs.kordiam.app/docs/errors/endpoint-not-found",
  "title": "Endpoint Not Found",
  "status": 404,
  "detail": "No API endpoint matches GET /api/v2/absences1/999",
  "instance": "/api/v2/absences1/999",
  "traceId": "abc-123-def"
}
```

## Common Causes

- A typo in the URL path, such as `/api/v2/element` instead of `/api/v2/elements`
- Calling an endpoint that is not implemented
- Using the wrong API version path

## How to Fix

Check the HTTP method and endpoint path against the API reference. The response does not include endpoint suggestions or a list of available routes.
