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

# Ingest Status

> Read status and replay metadata for an observability ingest request

Fetches ingest status for a previously submitted request.

## Auth

* `Authorization: Bearer <jwt>` or project-scoped `X-API-Key`.

## Path Parameters

* `ingest_request_id` (UUID): Request identifier returned by `POST /api/v2/observability/ingest`.

## Response

```json theme={null}
{
  "ingest_request_id": "33333333-3333-3333-3333-333333333333",
  "idempotency_key": "trace:11111111-1111-1111-1111-111111111111",
  "schema_version": "2026-02-23",
  "status": "succeeded",
  "attempts": 2,
  "first_seen_at": "2026-02-23T10:00:00Z",
  "last_seen_at": "2026-02-23T10:00:02Z",
  "replayed_hits": 1,
  "error_reason": null,
  "result_payload": {
    "traces": 1,
    "observations": 1,
    "events": 1,
    "links": 0
  }
}
```
