Skip to main content
GET
/
feeds
/
{id}
Get feed details
curl --request GET \
  --url https://api.juicer.io/v1/feeds/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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",
    "sources": [
      {
        "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

id
integer
required

Query Parameters

include
string

Comma-separated list of relations to embed. Supported: sources

Example:

"sources"

Response

Feed details (with optional embedded sources)

data
object