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

# List ingest jobs handlers

> **Required scope:** read

**Required scope:** `read`

### Response

`IngestJobListResponse`

<ResponseField name="data" type="IngestJobResponse[]" required>
  <Expandable title="IngestJobResponse">
    <ResponseField name="completed_at" type="integer (int64)" />

    <ResponseField name="created_at" type="integer (int64)" required />

    <ResponseField name="entity_ids" type="string[]" />

    <ResponseField name="errors" type="string[]" />

    <ResponseField name="evidence_ids" type="string[]" />

    <ResponseField name="file_id" type="string" />

    <ResponseField name="id" type="string" required />

    <ResponseField name="object" type="string" required />

    <ResponseField name="rule_ids" type="string[]" />

    <ResponseField name="status" type="string" required />

    <ResponseField name="summary" type="IngestJobSummary" required>
      <Expandable title="IngestJobSummary">
        <ResponseField name="entities_created" type="integer" required />

        <ResponseField name="evidence_nodes_created" type="integer" required />

        <ResponseField name="files_processed" type="integer" required />

        <ResponseField name="rules_created" type="integer" required />

        <ResponseField name="source_id" type="string" />

        <ResponseField name="triples_created" type="integer" required />
      </Expandable>
    </ResponseField>

    <ResponseField name="warnings" type="string[]" />
  </Expandable>
</ResponseField>

<ResponseField name="object" type="string" required />

### Status codes

| Code  | Meaning                                            |
| ----- | -------------------------------------------------- |
| `200` | Ingest jobs                                        |
| `401` | Unauthorized — missing or invalid credentials      |
| `403` | Forbidden — the key/token lacks the required scope |
| `429` | Rate limited — see Retry-After / X-RateLimit-Reset |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.nsr.stateset.com/v1/ingest/jobs' \
    --header 'X-API-Key: YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": [
      {
        "completed_at": 1,
        "created_at": 1,
        "entity_ids": [],
        "errors": [],
        "evidence_ids": [],
        "file_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "object": "string",
        "rule_ids": [],
        "status": "pending",
        "summary": {
          "entities_created": null,
          "evidence_nodes_created": null,
          "files_processed": null,
          "rules_created": null,
          "source_id": null,
          "triples_created": null
        },
        "warnings": []
      }
    ],
    "object": "string"
  }
  ```
</ResponseExample>
