appBskyActorGetProfiles function

Future<XRPCResponse<ActorGetProfilesOutput>> appBskyActorGetProfiles({
  1. required List<String> actors,
  2. required ServiceContext $ctx,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Get detailed profile views of multiple actors.

Implementation

Future<XRPCResponse<ActorGetProfilesOutput>> appBskyActorGetProfiles({
  required List<String> actors,
  required ServiceContext $ctx,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await $ctx.get(
  ns.appBskyActorGetProfiles,
  headers: $headers,
  parameters: {...?$unknown, 'actors': actors},
  to: const ActorGetProfilesOutputConverter().fromJson,
);