Batch-hydrate display identities (name + avatar) for a set of accounts. Mirrors app.bsky.actor.getProfiles; resolution is server-side and public.
Parameters
Output
Encoding
application/jsonprofiles
array
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
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."
}