Pull Requests
A single review pass over a pull request.
Base path /api/v1/reviews on https://ionwarp.com. Authenticate with Authorization: Bearer $DASH_API_KEY and name the project with the Project-ID header. Writes are validated in declared mode; an operation this resource does not declare answers 405 operation_not_supported.
List pull requests
GET /api/v1/reviews
curl "https://ionwarp.com/api/v1/reviews" \
-H "Authorization: Bearer $DASH_API_KEY" \
-H "Project-ID: pr_acme"Show me the recent reviews on this repodata_query {
"collection": "reviews"
}Returns a paginated list of review objects, newest first.
{
"object": "list",
"data": [
{
"object": "review",
"id": "obj_123",
"title": "PR #630 — full review",
"created_at": "2026-07-25T12:00:00.000Z",
"updated_at": "2026-07-25T12:00:00.000Z"
}
],
"has_more": false,
"next_cursor": null
}Parameters
| Parameter | Type | Kind | Description |
|---|---|---|---|
q | string | search | Free-text search across title. |
limit | number | page | Rows to return, 1–100. Defaults to 20. |
cursor | string | page | next_cursor from the previous page. |
Retrieve a review
GET /api/v1/reviews/learning-tests-run-under-bun
curl "https://ionwarp.com/api/v1/reviews/learning-tests-run-under-bun" \
-H "Authorization: Bearer $DASH_API_KEY" \
-H "Project-ID: pr_acme"Open the review {id}data_get {
"collection": "reviews",
"object_id": "learning-tests-run-under-bun"
}Returns the review object.
{
"object": "review",
"id": "obj_123",
"title": "PR #630 — full review",
"created_at": "2026-07-25T12:00:00.000Z",
"updated_at": "2026-07-25T12:00:00.000Z"
}Parameters
| Parameter | Type | Kind | Description |
|---|---|---|---|
id | string | path | The review's id or slug. |
What comes back (read-only)
Every review carries the envelope below. The fields under it are computed or stamped by the platform — they are returned, never sent.
| Field | Type | Description |
|---|---|---|
object | string | Always review. |
id | string | Stable object id. Also accepted in place of slug on any path. |
slug | string | URL-safe name, unique within the collection. |
created_at | string | ISO-8601 timestamp of the first write. |
updated_at | string | ISO-8601 timestamp of the most recent write. The cursor sorts on this. |
title | string | Name of the review pass. |
Errors
Failures use { error: { type, code, message, param } }. The full code table is generated at Error Codes.