---
title: "Raw platform responses from the latest usable or selected run"
method: GET
path: "/prompts/results"
tags: ["Runs"]
---

# Raw platform responses from the latest usable or selected run

`GET /prompts/results`

Returns enriched platform responses (one per prompt × platform) with parse state plus trusted brand mentions, citations, and attributes. Pass runId to read a specific completed run, or pair it with allowIncompleteRun=1 for live partial results. Empty array when no usable run exists.

## Query parameters

- `projectId` string, uuid, required
- `runId` string, uuid
- `topicId` string, uuid
- `promptId` string, uuid
- `platform` 'chatgpt' | 'chatgpt_app' | 'claude' | 'gemini' | 'gemini_app' | 'grok_app' | 'grok_api' | 'perplexity' | 'perplexity_app' | 'google_app' | 'deepseek' — LLM platform identifier. Newer scraper-backed ids end in `_app`; `chatgpt`, `perplexity`, and `gemini` are legacy and not returned by current runs.
- `limit` integer
- `allowIncompleteRun` '1'
- `promptAttributes` string

## Response `200`

Successful response

- object[]
  - `id` string, uuid
  - `llmPlatform` 'chatgpt' | 'chatgpt_app' | 'claude' | 'gemini' | 'gemini_app' | 'grok_app' | 'grok_api' | 'perplexity' | 'perplexity_app' | 'google_app' | 'deepseek' — LLM platform identifier. Newer scraper-backed ids end in `_app`; `chatgpt`, `perplexity`, and `gemini` are legacy and not returned by current runs.
  - `rawResponse` string
  - `promptUsed` string
  - `createdAt` string, date-time
  - `promptId` string, uuid
  - `parseState` 'pending' | 'running' | 'succeeded' | 'failed' | 'skipped'
  - `mentions` object[]
  - `citations` object[]
  - `attributes` object[]

## Other responses

- `400` — Missing or invalid request parameter.
- `401` — Missing, malformed, or revoked API key.
- `402` — Monthly included API calls for your tier are used up (code `USAGE_LIMIT`). Body includes a `limit` object — `{ limitHit, currentTier, targetTier, feature, cap, used, resetAt }` — describing the cap and the upgrade that lifts it.
- `404` — Resource not found or not owned by your account.
- `429` — Rate limit, project cap, or daily quota hit. Body includes a `code` field.
- `500` — Server error. Retry; if persistent, contact support.

## Changes

- **2026-08-12** `f8f03e555193` — 1 info
  - added the optional property `items/parseState` to the response with the `200` status
- **2026-08-04** `d307a7633c0a` — 2 info
  - added the new optional `query` request parameter `allowIncompleteRun`
  - added the new optional `query` request parameter `runId`

[Change history](https://skmtc.dev/openlens/apis/openlens-api/changes/prompts/results/get.md)

---

[API](https://skmtc.dev/openlens/apis/openlens-api.md) · [All operations](https://skmtc.dev/openlens/apis/openlens-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/openlens/openlens-api/revisions/f8f03e555193/schema)
