community.gifthood.actor.getProfiles

gifthood.community

Documentation

Batch-hydrate display identities (name + avatar) for a set of accounts. Mirrors app.bsky.actor.getProfiles; resolution is server-side and public.

main query

Batch-hydrate display identities (name + avatar) for a set of accounts. Mirrors app.bsky.actor.getProfiles; resolution is server-side and public.

Parameters

actors array of string Required

DIDs to hydrate. Capped at 100 to bound the worst-case Bluesky-fallback fan-out (a full feed page's posters).

Output

Encodingapplication/json
profiles 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
DIDs to hydrate. Capped at 100 to bound the worst-case Bluesky-fallback fan-out (a full feed page's posters).
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "profiles"
      ],
      "properties": {
        "profiles": {
          "type": "array",
          "items": {
            "ref": "community.gifthood.actor.defs#profileViewBasic",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "actors"
    ],
    "properties": {
      "actors": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "did"
        },
        "maxLength": 100,
        "minLength": 1,
        "description": "DIDs to hydrate. Capped at 100 to bound the worst-case Bluesky-fallback fan-out (a full feed page's posters)."
      }
    }
  },
  "description": "Batch-hydrate display identities (name + avatar) for a set of accounts. Mirrors app.bsky.actor.getProfiles; resolution is server-side and public."
}

Lexicon Garden

@