> ## Documentation Index
> Fetch the complete documentation index at: https://cobo.com/developers/llms.txt
> Use this file to discover all available pages before exploring further.

# Get TSS key share groups

> This operation retrieves detailed information about the specified TSS key share groups.

<Tip>
  Try [Cobo WaaS Skill](/v2/guides/overview/cobo-waas-skill) in your AI coding assistant (Claude Code, Cursor, etc.). Describe your needs in natural language to auto-generate production-ready SDK code and debug faster 🚀
</Tip>

<CodeGroup>
  ```Swift iOS theme={null}
  public func getTSSKeyShareGroups(tssKeyShareGroupIDs: [String]) throws -> [TSSKeyShareGroup]
  ```

  ```Dart Flutter theme={null}
  Future<List<TSSKeyShareGroup>> getTSSKeyShareGroups(List<String> tssKeyShareGroupIDs) async 
  ```
</CodeGroup>

<RequestExample>
  ```Swift iOS theme={null}
  let tssKeyShareGroupIDs = ["gjRIvhmnDfpcGrzjOABE"]

  do {
      if let groups = try sdkInstance?.getTSSKeyShareGroups(tssKeyShareGroupIDs: tssKeyShareGroupIDs) {
          for group in groups {
              print("\(group)\n")
          }
      } else {
          print("No TSS key share groups found")
      }
  } catch {
      print("Error: \(error)")
  }
  ```

  ```Dart Flutter theme={null}
  final List<String> tssKeyShareGroupIDs = ["gjRIvhmnDfpcGrzjOABE"];

  try {
      final groups = await sdkInstance?.getTSSKeyShareGroups(tssKeyShareGroupIDs: tssKeyShareGroupIDs);
      for (final group in groups) {
          print("$group\n");
      }
  } catch (error) {
      print("Error: $error");
  }
  ```
</RequestExample>

## Parameters

<ParamField path="tssKeyShareGroupIDs" type="string[]">
  The list of IDs for the TSS key share groups to be retrieved.
</ParamField>

## Response

<ResponseField name="tssKeyShareGroups" type="object[]">
  The list of retrieved TSS key share groups.

  <Expandable title="child attributes">
    <Snippet file="ucw_tss_key_share_group_snippet.mdx" />
  </Expandable>
</ResponseField>
