> ## 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 UCW SDK information

> This operation retrieves detailed information about the UCW SDK.

<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 getSDKInfo() throws -> SDKInfo
  ```

  ```Dart Flutter theme={null}
  Future<SDKInfo> getSDKInfo() async
  ```
</CodeGroup>

<RequestExample>
  ```Swift iOS theme={null}
  do {
      let sdkInfo = try getSDKInfo()
      print("\(sdkInfo)")
  } catch {
      print("Error: \(error)")
  }
  ```

  ```Dart Flutter theme={null}
  try {
      final sdkInfo = await getSDKInfo();
      print("$sdkInfo");
  } catch (error) {
      print("Error: $error");
  }
  ```
</RequestExample>

## Response

<ResponseField name="sdkInfo" type="object">
  Detailed information about the UCW SDK.

  <Expandable title="child attributes">
    <ResponseField name="version" type="string">
      The version of the UCW SDK.
    </ResponseField>
  </Expandable>
</ResponseField>
