API Reference

Get Reddit Action Execution Status

Return normalized status for a Reddit action execution, including workflow step, final Reddit permalink, and structured failure or verification-required details. Cache policy: live. Idempotency: none. Auth modes: api_key, mcp_oauth, session_bearer.

POST
/agent/v1/reddit-action-executions/status

Return normalized status for a Reddit action execution, including workflow step, final Reddit permalink, and structured failure or verification-required details. Cache policy: live. Idempotency: none. Auth modes: api_key, mcp_oauth, session_bearer.

Authorization

AuthorizationBearer <token>

Rankhog organization API key sent as Authorization: Bearer rhog_....

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/agent/v1/reddit-action-executions/status" \  -H "Content-Type: application/json" \  -d '{    "managedRedditAccountId": "mra_2x9rnkhdemo",    "organizationId": "org_2x9rnkhdemo",    "executionId": "job_2x9rnkhdemo"  }'

{  "actionType": "comment",  "createdAt": "2026-06-17T11:45:00.000Z",  "currentStepId": null,  "currentStepLabel": null,  "executionId": "job_2x9rnkhdemo",  "failedStepId": "validate_subreddit_rules",  "failure": {    "failedStepId": "validate_subreddit_rules",    "message": "The subreddit rules could not be verified before execution.",    "reasonCode": "rules_unavailable",    "remediation": "Refresh subreddit rules in Rankhog, review the planned action, then execute again with a new idempotency key.",    "retryable": true  },  "finishedAt": "2026-06-17T11:45:20.000Z",  "jobId": "job_2x9rnkhdemo",  "plannedRedditActionId": "act_2x9planned",  "redditAction": null,  "startedAt": "2026-06-17T11:45:05.000Z",  "status": "failed",  "submittedAt": null,  "updatedAt": "2026-06-17T11:45:20.000Z"}

{  "error": {    "code": "agentic_invalid_input",    "details": {      "issues": [        {          "code": "invalid_type",          "message": "Expected string, received undefined.",          "path": [            "organizationId"          ]        }      ]    },    "message": "Request body did not match the agentic capability schema."  }}

{  "error": {    "code": "agentic_unauthorized",    "message": "Authenticate before using Rankhog agentic capabilities."  }}

{  "error": {    "code": "agentic_paid_plan_required",    "details": {      "managedAccountBillingStatus": "active",      "subscriptionStatus": "past_due"    },    "message": "Rankhog agentic capabilities are available only for active or trialing paid workspaces."  }}

{  "error": {    "code": "agentic_missing_scope",    "details": {      "missingScopes": [        "rankhog:read"      ]    },    "message": "Missing required OAuth scope: rankhog:read."  }}

{  "error": {    "code": "agentic_managed_account_not_found",    "message": "Managed Reddit account not found."  }}

{  "error": {    "code": "agentic_internal_error",    "message": "Rankhog could not complete this agentic request."  }}