Skip to main content
POST
/
feeds
/
{feed_id}
/
posts
/
bulk
Bulk moderate posts
curl --request POST \
  --url https://api.juicer.io/v1/feeds/{feed_id}/posts/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "post_ids": [
    123
  ],
  "excluded_post_ids": [
    123
  ]
}
'
{
  "error": {
    "code": "feed_limit_reached",
    "message": "Your Free plan allows 1 feed(s). Upgrade to create more.",
    "details": {
      "name": [
        "can't be blank"
      ]
    },
    "action": {
      "current_plan": "small",
      "current_plan_display_name": "Free",
      "required_plan": "large",
      "required_plan_display_name": "Pro",
      "upgrade_url": "<string>",
      "expires_at": "2023-11-07T05:31:56Z"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.juicer.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key prefixed with jcr_. To obtain a key programmatically (no dashboard required), see POST /v1/authorize.

Path Parameters

feed_id
integer
required

Body

application/json
action_type
enum<string>
required
Available options:
approve,
reject,
soft_delete,
hard_delete
post_ids
integer[]

Specific post IDs to moderate

tab
enum<string>

Moderate all posts in this tab (alternative to post_ids)

Available options:
public,
moderation_queue,
trash
excluded_post_ids
integer[]

Post IDs to exclude when using tab

Response

Bulk moderation applied