---
title: "Get queued article generation status or result by ID"
method: GET
path: "/api/agent/articles/{id}"
tags: ["Articles"]
---

# Get queued article generation status or result by ID

`GET /api/agent/articles/{id}`

Poll for the status of a queued article generation job. Returns processing status while the article is being generated, or the final result (success/failure) once complete.

## Path parameters

- `id` string, uuid, required

## Response `200`

Job status or completed article result

- ArticleJobStatusResponse
  - `id` string, uuid
  - `status` 'processing' | 'generated' | 'publishing' | 'published' | 'failed', required — processing — generation in progress. generated — draft, not yet published. publishing — publish pipeline triggered. published — live on blog. failed — generation or publish failed.
  - `queued` boolean
  - `topic` string
  - `message` string
  - `article_id` string
  - `title` string
  - `slug` string
  - `article_url` string, uri — URL where the article will be accessible once published. Returns 404 for draft (generated) articles until published.
  - `mode` 'standard' | 'turbo' | 'turbo+'
  - `word_count` integer
  - `credits_used` number
  - `estimated_total_credits` number
  - `reason` string
  - `error` string
  - `trust_level` string
  - `extensions` object
    - `illustrations` unknown
    - `audio` unknown
    - `competition_intelligence` boolean

## Other responses

- `401` — Unauthorized
- `404` — Not found
- `429` — Rate limit exceeded
- `500` — Internal server error

## Changes

> 28 revisions in range; 1 could not be searched.

- **2026-03-08** `7ee91cd6fa9d` — 2 warning
  - added the new `generated` enum value to the `status` response property for the response status `200`
  - added the new `publishing` enum value to the `status` response property for the response status `200`
- **2026-03-07** `dbe86d041f0a` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/citedy/apis/citedy-agent-api/changes/api/agent/articles/:id/get.md)

---

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