---
title: "Get event details"
method: GET
path: "/v1/events/{id}"
tags: ["Events"]
---

# Get event details

`GET /v1/events/{id}`

Retrieve a single event with full details including:
- Execution metadata (eventType, outcome, explanation)
- Input/output hashes
- Causality links (parent, children, retry chain)
- Billing information (if applicable)

## Path parameters

- `id` string, required

## Response `200`

Event details

- object — Event details
  - `id` string
  - `eventType` 'USAGE' | 'API_CALL' | 'LLM_INFERENCE' | 'TOOL_CALL' | 'DATABASE' | 'FILE_IO' | 'NETWORK' | 'DECISION' | 'HUMAN_IN_LOOP' | 'MEMORY' | 'CUSTOM' | 'TOOL_CALL_START' | 'TOOL_CALL_END' | 'TOOL_CALL_ERROR' | 'TOOL_CALL_RETRY' | 'TRAINING' | 'FINE_TUNING'
  - `actionName` string
  - `outcome` 'PENDING' | 'SUCCEEDED' | 'FAILED' | 'SKIPPED' | 'RETRIED' | 'TIMEOUT' | 'CANCELLED'
  - `explanation` string, nullable
  - `idempotencyKey` string, nullable — Client-provided idempotency key
  - `customerId` string
  - `runId` string, nullable
  - `workflowId` string, nullable
  - `parentEventId` string, nullable
  - `retryOfEventId` string, nullable
  - `attemptNumber` integer
  - `createdAt` string, date-time
  - `inputHash` string, nullable
  - `outputHash` string, nullable
  - `childEvents` string[] — IDs of events caused by this one
  - `retriedBy` string, nullable — ID of retry event if this failed
  - `chargeId` string, nullable
  - `costUsdc` string, nullable
  - `usageType` string, nullable
  - `quantity` string, nullable
  - `units` string, nullable
  - `description` string, nullable
  - `metadata` object, nullable

## Other responses

- `401` — Unauthorized
- `404` — Event not found

---

[API](https://skmtc.net/usedrip/apis/drip-api.md) · [All operations](https://skmtc.net/usedrip/apis/drip-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/usedrip/drip-api/versions/2cb1567969ca/schema)
