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

# tryParseChipUrl

> Like `parseChipUrl`, but returns null instead of throwing.

Like `parseChipUrl`, but returns null instead of throwing.

```ts theme={null}
import { tryParseChipUrl } from "@endstate-sdk/reader";
```

```ts theme={null}
tryParseChipUrl(url: string): ChipUrl | null
```

## Example

```ts theme={null}
const chip = tryParseChipUrl(url); // null instead of throwing
```
