Skip to main content
PATCH
/
feeds
/
{id}
Update feed settings
curl --request PATCH \
  --url https://api.juicer.io/v1/feeds/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "queue": true,
  "allowed": "<string>",
  "disallowed": "<string>",
  "profanity": true,
  "prevent_duplicates": true
}
'
{
  "data": {
    "id": 123,
    "name": "<string>",
    "slug": "<string>",
    "sources_count": 123,
    "moderation": {
      "enabled": true,
      "allowed": "<string>",
      "disallowed": "<string>",
      "profanity_filter": true,
      "prevent_duplicates": true
    },
    "created_at": "2023-11-07T05:31:56Z",
    "updated_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

id
integer
required

Body

application/json
name
string
queue
boolean

Enable moderation queue

allowed
string

Comma-separated whitelist terms

disallowed
string

Comma-separated blacklist terms

profanity
boolean

Enable profanity filter

prevent_duplicates
boolean

Enable duplicate post prevention

deduplication_strategy
enum<string>

Which post survives when duplicates are detected. prioritize_top_source keeps the post from the highest-priority source (lowest position). distribute_across_sources keeps the post from whichever connected source is currently least represented in the feed so survivors rotate over time. Only meaningful when prevent_duplicates is true.

Available options:
prioritize_top_source,
distribute_across_sources

Response

Feed updated

data
object