> ## Documentation Index
> Fetch the complete documentation index at: https://docs.unprice.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Ingestion event status

> Inspect recent ingestion events and failures.

```ts theme={null}
const { result, error } = await unprice.ingestionEvents.status({
  project_id: "proj_123",
  limit: 50,
})

if (error) {
  throw new Error(error.message)
}

console.log(result)
```
