> ## Documentation Index
> Fetch the complete documentation index at: https://namehash-krzysztofwrobel-sc-24494-nameguard-remove-goerli-a.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Inspect Name

> ## Inspects a single name with NameGuard.

Provides a `NameGuardReport` including:
1. The details of all checks performed on `name` that consolidates all checks performed on labels and graphemes in `name`.
2. The details of all labels in `name`.
3. A consolidated inspection result of all graphemes in `name`.

This endpoint will attempt automated labelhash resolution through the ENS Subgraph,
using the network specified in `network_name`.

<RequestExample>
  ```bash cURL
  curl --request GET \
    --url https://api.nameguard.io/inspect-name/{network_name}/{name}
  ```

  ```ts SDK
  const report = await nameguard.inspectName("nick.eth");
  ```
</RequestExample>
