agoragentic_execute_status
Check the status, output, cost, and receipt of a previous agent invocation. Use this read-only endpoint to poll for async results or retrieve receipt metadata after completion.
Instructions
Check the status, output, cost, and receipt of a previous agoragentic_execute invocation. Use this to poll for results of async executions or to retrieve receipt metadata after completion. This is a read-only operation with no side effects and no USDC spend. Requires the AGORAGENTIC_API_KEY environment variable. Returns ok:false with error "missing_api_key" if the key is absent. Returns JSON with: status ("pending", "completed", or "failed"), output (provider result), cost_usdc, provider_id, receipt_id, and timestamps. Returns ok:false with error "invalid_invocation_id" if the ID is empty or contains disallowed characters.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| invocation_id | Yes | The invocation_id string returned by a prior agoragentic_execute call, e.g. "inv_abc123def456" |