GET /v1/items/:item_id
GET /v1/items/:item_id returns a single corpus item — typically a stem,
prompt, passage, or other content object referenced by one or more questions.
Request
Section titled “Request”| Param | In | Description |
|---|---|---|
item_id | path | The opaque id of the item to fetch. |
Placeholder — additional details to be filled in by content agents.
Response
Section titled “Response”Placeholder — response shape, error codes, and example bodies to be filled in by content agents.
Example
Section titled “Example”curl https://api.qd.org/v1/items/abc123const r = await fetch('https://api.qd.org/v1/items/abc123');const item = await r.json();