Backfill in-progress. Some lexicons and records may be missing or incomplete.

app.bsky.graph.getSuggestedFollowsByActor

bsky-lexicons.bsky.social

Documentation

main query

Enumerates follows similar to a given account (actor). Expected use is to recommend additional accounts immediately after following one account.

Parameters

actor string at-identifier Required

Either a DID or an AT Protocol handle.

Output

Encodingapplication/json
isFallback boolean Optional

If true, response has fallen-back to generic results, and is not scoped using relativeToDid

recId integer Optional

Snowflake for this recommendation, use when submitting recommendation events.

suggestions array Required

No description provided.

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
Either a DID or an AT Protocol handle.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "suggestions"
      ],
      "properties": {
        "recId": {
          "type": "integer",
          "description": "Snowflake for this recommendation, use when submitting recommendation events."
        },
        "isFallback": {
          "type": "boolean",
          "default": false,
          "description": "If true, response has fallen-back to generic results, and is not scoped using relativeToDid"
        },
        "suggestions": {
          "type": "array",
          "items": {
            "ref": "app.bsky.actor.defs#profileView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "actor"
    ],
    "properties": {
      "actor": {
        "type": "string",
        "format": "at-identifier"
      }
    }
  },
  "description": "Enumerates follows similar to a given account (actor). Expected use is to recommend additional accounts immediately after following one account."
}

Lexicon Garden

@