Skip to main content
POST
/
feeds
Create a new feed
curl --request POST \
  --url https://api.juicer.io/v1/feeds \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "My Brand Feed"
}
'
{
  "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.

Body

application/json
name
string
required

Feed name

Example:

"My Brand Feed"

Response

Feed created

data
object