Skip to main content
const { result, error } = await unprice.ingestionEvents.status({
  project_id: "proj_123",
  limit: 50,
})

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

console.log(result)