> For the complete documentation index, see [llms.txt](/llms.txt).
> A full single-fetch corpus is available at [llms-full.txt](/llms-full.txt).
---
title: "Get an item"
description: "Fetch a single draft item, including its input/output payload and revision history."
method: "GET"
endpoint: "/api/v1/projects/:projectId/datasets/:id/examples/:exampleId"
order: 10
group: "Draft items"
last_verified: 2026-07-27
---

<ApiEndpoint method="GET" endpoint="/api/v1/projects/:projectId/datasets/:id/examples/:exampleId" description="Fetch a single draft item, including its input/output payload and revision history.">
  <section>
    #### Response
    ```json {{ title: 'Response' }}
    {
      "success": true,
      "message": "Item retrieved successfully",
      "data": {
        "id": "7c8d9e0f-...",
        "dataset_id": "1a2b3c4d-...",
        "stable_id": "8d9e0f1a-...",
        "input": { "invoice_text": "Invoice #4471 ..." },
        "expected_output": { "vendor": "Acme Corp", "total": 1042.50 },
        "first_version": 1,
        "created_at": 1732636800000,
        "revision_number": 2,
        "split": "test"
      }
    }
    ```
  </section>
</ApiEndpoint>
