Skip to main content
POST
/
feeds
/
{feed_id}
/
sources
Add a source to a feed
curl --request POST \
  --url https://api.juicer.io/v1/feeds/{feed_id}/sources \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "platform": "Instagram",
  "term": "nasa",
  "term_type": "username",
  "options": {
    "retweets": "<string>",
    "replies": "<string>",
    "only_reels": "<string>",
    "only_posts": "<string>"
  }
}
'
{
  "data": {
    "id": 123,
    "platform": "<string>",
    "term": "<string>",
    "term_type": "<string>",
    "name": "<string>",
    "options": {},
    "syncable": true,
    "unsyncable_reason": "<string>",
    "synced_at": "2023-11-07T05:31:56Z",
    "created_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
platform
string
required

Social media platform (use GET /platforms to see options)

Example:

"Instagram"

term
string
required

Username, hashtag, or URL

Example:

"nasa"

term_type
string
required

Type of search term (use GET /platforms to see valid types per platform)

Example:

"username"

options
object

Platform-specific options

Response

Source created

data
object