social.clippr.feed.getProfileClips

clippr.social

Documentation

Get a view of a profile's reverse-chronological clips feed. Does not require auth.

main query

Get a view of a profile's reverse-chronological clips feed. Does not require auth.

Parameters

actor string at-identifier Required

An actor to get feed data from

cursor string Optional

A parameter to paginate results

filter string Optional

What types to include in response

limit integer Optional

How many results to return with the query

Output

Encodingapplication/json
cursor string Optional

No description available.

feed array Required

No description available.

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
An actor to get feed data from
A parameter to paginate results
What types to include in response
How many results to return with the query
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "feed"
      ],
      "properties": {
        "feed": {
          "type": "array",
          "items": {
            "ref": "social.clippr.feed.defs#clipView",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "actor"
    ],
    "properties": {
      "actor": {
        "type": "string",
        "format": "at-identifier",
        "description": "An actor to get feed data from"
      },
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1,
        "description": "How many results to return with the query"
      },
      "cursor": {
        "type": "string",
        "description": "A parameter to paginate results"
      },
      "filter": {
        "type": "string",
        "default": "all_clips",
        "description": "What types to include in response",
        "knownValues": [
          "all_clips",
          "tagged_clips",
          "untagged_clips"
        ]
      }
    }
  },
  "description": "Get a view of a profile's reverse-chronological clips feed. Does not require auth."
}

Lexicon Garden

@