Management section
The lower section of the page provides three management panels:| Panel title | Public route | Method |
|---|---|---|
Content Info | /v1/content/{generation_id} | GET |
Cancel Generation | /v1/content/generation/cancel/{generation_id} | POST |
Delete Content | /v1/content/{generation_id} | DELETE |
Shared panel structure
All three panels use the same general layout:| Area | What it contains |
|---|---|
| Header | Title, method badge, route badge, and cURL copy button |
| Send bar | A Send request button |
| Form area | One required generation_id input |
| Response area | JSON result, status badge, latency, or error |
Required input
Each management panel requires a validgeneration_id.
| Field | Value |
|---|---|
| Label | generation_id |
| Required badge | required |
| Type | string<uuid> |
| Description | Unique identifier of the generation |
| Placeholder | 00000000-0000-0000-0000-000000000000 |
Must be a valid UUID under the field.
Send behavior
The send button follows these rules:| State | Button text |
|---|---|
| API key not locked | Lock API key to send |
| Request in progress | Sending... |
| API key locked and input valid | Send request |
What each action does
Content Info
Use Content Info when you want the current generation record. The panel hint says:| Hint |
|---|
Get the full record for a single generation |
GET /v1/content/{generation_id}.
Cancel Generation
Use Cancel Generation when a generation is still in progress. The panel hint says:| Hint |
|---|
Cancel an in-progress generation |
POST /v1/content/generation/cancel/{generation_id}.
Delete Content
Use Delete Content when you want to permanently remove the record and its stored output files. The panel hint says:| Hint |
|---|
Delete a generation and permanently remove its output files from storage |
DELETE /v1/content/{generation_id}.
If the API returns 204 No Content, the page still treats the operation as successful and shows an empty JSON object in the response area.
cURL helper
Each management panel has a copy button that builds a cURL command using:| Included part | Source |
|---|---|
| HTTP method | The current panel action |
| Region API URL | The currently selected region |
| Route path | The panel route with the current generation_id or {generation_id} placeholder |
| Authorization header | Authorization: Bearer YOUR_API_KEY |