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
| Method | Path | Description |
|---|---|---|
| GET | /v1/drafts | List drafts with filters |
| GET | /v1/drafts/:id | Get draft by ID |
| POST | /v1/drafts/:id/approve | Approve a draft for posting |
| POST | /v1/drafts/:id/skip | Skip 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.