---
title: "Get Response Streaming Status"
method: GET
path: "/api/v1/response-streaming/status"
tags: ["Basics"]
---

# Get Response Streaming Status

`GET /api/v1/response-streaming/status`

Returns the state and queue progress of a website's response-streaming run. By default reports the latest run; pass `workflow_id` to read a specific one. When no run has ever been started, `state` is `idle` and the config/progress fields are zeroed or null.

## Query parameters

- `website_id` string, uuid, required
- `workflow_id` string

## Response `200`

Current run state and progress

- object
  - `state` 'idle' | 'running' | 'completed' | 'failed' | 'cancelled', required
  - `workflow_id` string, nullable, required
  - `created_at` string, nullable
  - `updated_at` string, nullable
  - `is_scheduled` boolean, nullable
  - `config` object, required
    - `mode` 'all_prompts' | 'selected_prompts', nullable, required
    - `selected_prompt_count` integer, nullable, required
    - `models` object, nullable, required
    - `prompt_variations` integer, nullable, required
    - `use_personas` boolean, nullable, required
    - `use_locations` boolean, nullable, required
    - `only_locations` boolean, nullable, required
  - `progress` object, required
    - `pending` integer, required
    - `processing` integer, required
    - `completed` integer, required
    - `failed` integer, required
    - `total` integer, required
    - `percentage` number, required

## Other responses

- `400` — Bad request - Invalid parameters
- `401` — Unauthorized - Invalid or missing API key
- `403` — Forbidden - You don't have access to this website
- `429` — Too many requests - Rate limit exceeded. Retry after a short delay.
- `500` — Internal server error

---

[API](https://skmtc.net/athenahq/apis/athenahq-api.md) · [All operations](https://skmtc.net/athenahq/apis/athenahq-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/athenahq/athenahq-api/revisions/6c5d71622cb9/schema)
