ReddGrowReddGrow Docs
API v1Guides

Managing Drafts

Approve, skip, and list your AI-generated drafts via API

Managing Drafts

Drafts are AI-generated Reddit comments. Use the Managed API to build automated approval workflows.

Endpoints

MethodPathDescription
GET/v1/draftsList drafts with filters
GET/v1/drafts/:idGet draft by ID
POST/v1/drafts/:id/approveApprove a draft for posting
POST/v1/drafts/:id/skipSkip a draft

Example: List pending drafts

curl -H "x-api-key: rg_..." \
  "https://api.reddgrow.ai/v1/drafts?status=pending&limit=10"

Example: Approve a draft

curl -X POST -H "x-api-key: rg_..." \
  "https://api.reddgrow.ai/v1/drafts/42/approve"

Example: Skip a draft

curl -X POST -H "x-api-key: rg_..." \
  "https://api.reddgrow.ai/v1/drafts/42/skip"

Both approve and skip return the updated draft object with the new status field.