Skip to main content
GET
/
feeds
/
{feed_id}
/
sources
List sources for a feed
curl --request GET \
  --url https://api.juicer.io/v1/feeds/{feed_id}/sources \
  --header 'Authorization: Bearer <token>'
{
  "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"
    }
  ],
  "meta": {
    "page": 123,
    "per_page": 123,
    "total_count": 123,
    "total_pages": 123
  }
}

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

Query Parameters

page
integer
default:1
per_page
integer
default:25
Required range: x <= 100

Response

Sources listed

data
object[]
meta
object