API Reference

Legacy Dangerous Reddit Post Submit

Legacy compatibility path for Desktop-backed Reddit post submit. Prefer execute_reddit_action for new clients. Requires OAuth with reddit:write:dangerous. Cache policy: live. Idempotency: required. Auth modes: mcp_oauth.

POST
/agent/v1/dangerously-submit-reddit-post

Legacy compatibility path for Desktop-backed Reddit post submit. Prefer execute_reddit_action for new clients. Requires OAuth with reddit:write:dangerous. Cache policy: live. Idempotency: required. Auth modes: mcp_oauth.

Authorization

mcpOAuth rankhog:read, reddit:rules:read, reddit:draft:write, reddit:write:dangerous
AuthorizationBearer <token>

In: header

Scope: rankhog:read, reddit:rules:read, reddit:draft:write, reddit:write:dangerous

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

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/agent/v1/dangerously-submit-reddit-post" \  -H "Content-Type: application/json" \  -d '{    "managedRedditAccountId": "mra_2x9rnkhdemo",    "organizationId": "org_2x9rnkhdemo",    "acknowledgement": "I understand this can publish publicly from the user\'s Reddit account.",    "body": "We replaced a long setup checklist with one guided action and saw activation improve. Curious what other teams changed that made onboarding click.",    "idempotencyKey": "dangerous-submit-2026-06-17-001",    "riskSummary": "Reviewed subreddit rules, no external link, and explicit human approval is present.",    "rulesSourceUrl": "https://www.reddit.com/r/SaaS/about/rules",    "subreddit": "SaaS",    "title": "What actually improved your SaaS activation?"  }'
{  "draftId": "act_2x9rnkhdemo",  "jobId": "job_2x9rnkhdemo",  "status": "queued_for_desktop_execution"}
{  "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",        "reddit:rules:read",        "reddit:draft:write",        "reddit:write:dangerous"      ]    },    "message": "Missing required OAuth scope: rankhog:read, reddit:rules:read, reddit:draft:write, reddit:write:dangerous."  }}

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

{  "error": {    "code": "agentic_managed_account_inactive",    "details": {      "managedAccountStatus": "setup_required"    },    "message": "This managed Reddit account must be active before browser-backed agentic tools can run."  }}

{  "error": {    "code": "agentic_rules_source_mismatch",    "details": {      "sourceUrls": [        "https://www.reddit.com/r/SaaS/about/rules"      ]    },    "message": "Dangerous Reddit submit requires a rulesSourceUrl returned by get_subreddit_rules."  }}
{  "error": {    "code": "agentic_write_rate_limited",    "details": {      "limit": 10,      "windowSeconds": 3600    },    "message": "Agentic Reddit writes are rate-limited for this workspace."  }}
{  "error": {    "code": "agentic_internal_error",    "message": "Rankhog could not complete this agentic request."  }}
{  "error": {    "code": "agentic_draft_not_created",    "message": "Agent-created Reddit draft could not be stored."  }}