> ## 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.

# Fake .eth ENS name check with fields

> ## Performs a fake .eth ENS name check based on given NFT metadata.

This endpoint checks if the metadata of an NFT looks like a fake .eth ENS name.

<RequestExample>
  ```bash cURL
  curl --request POST \
    --url https://api.nameguard.io/fake-eth-name-check \
    --header 'Content-Type: application/json' \
    --data '{
    "network_name": "mainnet"
    "contract_address": "0x495f947276749ce646f68ac8c248420045cb7b5e"
    "token_id": "61995921128521442959106650131462633744885269624153038309795231243542768648193"
    "fields": {"title": "nick.eth"}
  }'
  ```

  ```ts SDK
  const contractAddress = "";
  const tokenId = "";

  const report = await nameguard.fakeEthNameCheck(contractAddress, tokenId, {
    title: "..."
  });
  ```
</RequestExample>
