> ## 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 Namehash GET

> ## Inspects the name associated with a namehash.

NameGuard will attempt to resolve the name associated with the `namehash` through the ENS Subgraph,
using the network specified in `network_name`.

If this resolution succeeds then NameGuard will generate and return a `NameGuardReport` for the name.

If this resolution fails then NameGuard will return an error.

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

  ```ts SDK
  const report = await nameguard.inspectNamehash("0x...");
  ```
</RequestExample>
