is.currents.feed.searchSaves

currents.is

Documentation

Search saves by text query across all actors. Auth is optional; if provided, viewer-specific state is included.

main query

Search saves by text query across all actors. Auth is optional; if provided, viewer-specific state is included.

Parameters

cursor string Optional

No description available.

excludeSaved boolean Optional

If true and the request is authenticated, exclude saves the viewer has already saved (matched by blob CID). Ignored for unauthenticated requests.

limit integer Optional

No description available.

q string Required

Full-text search query.

Output

Encodingapplication/json
cursor string Optional

No description available.

saves 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
If true and the request is authenticated, exclude saves the viewer has already saved (matched by blob CID). Ignored for unauthenticated requests.
Full-text search query.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "saves"
      ],
      "properties": {
        "saves": {
          "type": "array",
          "items": {
            "ref": "is.currents.feed.defs#saveView",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "q"
    ],
    "properties": {
      "q": {
        "type": "string",
        "maxLength": 2048,
        "description": "Full-text search query."
      },
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      },
      "excludeSaved": {
        "type": "boolean",
        "default": false,
        "description": "If true and the request is authenticated, exclude saves the viewer has already saved (matched by blob CID). Ignored for unauthenticated requests."
      }
    }
  },
  "description": "Search saves by text query across all actors. Auth is optional; if provided, viewer-specific state is included."
}

Lexicon Garden

@