Skip to main content
GET
/
data
/
posts
Look up posts for a handle, hashtag, or other term
curl --request GET \
  --url https://api.juicer.io/v1/data/posts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "platform": "<string>",
      "platform_id": "<string>",
      "url": "<string>",
      "post_created_at": "2023-11-07T05:31:56Z",
      "message": "<string>",
      "like_count": 123,
      "comment_count": 123,
      "share_count": 123,
      "view_count": 123,
      "quote_count": 123,
      "bookmark_count": 123,
      "impression_count": 123,
      "tagged_users": "<string>",
      "poster": {
        "display_name": "<string>",
        "name": "<string>",
        "url": "<string>",
        "image": "<string>",
        "platform_id": "<string>"
      },
      "media": [
        {
          "url": "<string>",
          "preview_image_url": "<string>",
          "width": 123,
          "height": 123,
          "alt_text": "<string>",
          "platform_id": "<string>"
        }
      ],
      "referenced_post": {
        "poster": {
          "display_name": "<string>",
          "name": "<string>",
          "url": "<string>",
          "image": "<string>",
          "platform_id": "<string>"
        },
        "message": "<string>",
        "url": "<string>",
        "platform_id": "<string>",
        "post_created_at": "2023-11-07T05:31:56Z",
        "media": [
          {
            "url": "<string>",
            "preview_image_url": "<string>",
            "width": 123,
            "height": 123,
            "alt_text": "<string>",
            "platform_id": "<string>"
          }
        ]
      },
      "reshared_by": {
        "display_name": "<string>",
        "name": "<string>",
        "url": "<string>",
        "image": "<string>",
        "platform_id": "<string>"
      }
    }
  ],
  "meta": {
    "total_results": 123,
    "platforms": [
      {
        "platform": "<string>",
        "success": true,
        "count": 123,
        "next_cursor": "<string>",
        "has_more": true,
        "message": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key prefixed with jcr_. To obtain a key programmatically (no dashboard required), see POST /v1/authorize.

Query Parameters

term
string
required

The term to look up (handle, hashtag, or keyword), interpreted per term_type

Example:

"@nasa"

platforms
string
required

Comma-separated list of platforms to query. See the table above for the platforms this endpoint supports.

Example:

"Instagram,YouTube"

term_type
enum<string>

How to interpret term. When omitted it is auto-detected (#-prefixed → hashtag, otherwise username). Applied to every requested platform; a platform that doesn't support the given value returns an invalid_term_type error in meta.platforms. See the table above for valid values per platform.

Available options:
username,
hashtag,
channel,
mentions
Example:

"channel"

cursor
string

Opaque pagination cursor(s) from a prior response's meta.platforms[].next_cursor. Comma-separate multiple cursors to continue several platforms at once. Each cursor encodes its own platform; cursors are matched to the platforms named in platforms, and a malformed cursor is reported as an invalid_cursor entry in meta.platforms without affecting the others. Omit on the first page.

Response

Posts fetched successfully

data
object[]
required
meta
object
required