Skip to main content
GET
/
users
/
{id}
Fetch a single user
curl --request GET \
  --url https://api.juicer.io/v1/users/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 123,
    "email": "jsmith@example.com",
    "invitation_accepted": true,
    "invitation_pending": true,
    "feed_ids": [
      123
    ],
    "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

Response

User fetched

data
object