Get Generation Status
gamma_get_statusCheck the status of a Gamma generation. Returns URL and title once completed.
Instructions
Check the status of a Gamma generation.
Use this tool to check if a previously started generation has completed. Generations typically take 30 seconds to 2 minutes depending on complexity.
PARAMETERS:
generationId (required): The ID returned from gamma_generate
waitForCompletion: If true, polls until complete (max 5 minutes)
RETURNS:
status: pending, completed, or failed
url: Link to view content (when completed)
title: Content title
creditsUsed: Credits consumed
EXAMPLE: { generationId: "gen_abc123", waitForCompletion: true }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| generationId | Yes | The generation ID returned from gamma_generate | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for structured data | markdown |
| waitForCompletion | No | If true, poll until generation completes (up to 5 minutes). If false, return current status immediately. |