TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Meza-dev/Ghostly/llms.txt
Use this file to discover all available pages before exploring further.
GET /v1/runs endpoint returns an array of RunRecord objects for every run created by the authenticated user. Results are sorted by startedAt in descending order (most recent first). You can optionally scope the list to a single project by passing the project query parameter.
Unlike GET /v1/runs/:id, the list response omits the events array from each record to keep payloads small. Fetch individual runs when you need full assist-event history.
Authentication
Pass an API key via theX-Api-Key header or a JWT via the Authorization: Bearer <token> header.
Query Parameters
Filter results to runs associated with this project slug. When omitted, runs
from all projects are returned.
Response — 200 OK
An array ofRunRecord objects. Each object contains the same top-level fields as GET /v1/runs/:id, but without the events array.