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

# parse

> High-level address parsing.

The `parse` function identifies the type of address and extracts any embedded data.

## Usage

<CodeGroup>
  ```typescript TypeScript theme={null}
  import { parse } from 'stellar-address-kit';

  const result = parse("MA7Q...QD");
  // { type: 'MUXED', baseAddress: 'GA7Q...', id: '123' }
  ```

  ```dart Dart theme={null}
  // Dart includes a parseOrThrow variant for convenience
  final result = parseOrThrow("MA7Q...QD");
  ```
</CodeGroup>

## Supported Types

* `CLASSIC` (G...)
* `MUXED` (M...)
* `CONTRACT` (C...)
