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

# Nerd Score

`POST` `/nerdscore`

See how much of a nerd a person is via username

## Headers

| Name   | Value                |
| ------ | -------------------- |
| apikey | 28-Character API Key |

## Body

| Name | Type     | Description                                |
| ---- | -------- | ------------------------------------------ |
| user | string\* | Username of the user you want to check for |

## Response

<Tabs>
  <Tab title="200: OK">
    ```json theme={null}
    {
      "user": "Eddy",
      "score": 87,
      "rating": "Certified Geek"
    }
    ```
  </Tab>

  <Tab title="400: Bad Request">
    **Error**\
    You didn't provide a valid:

    * user

    Check `response.error`
  </Tab>

  <Tab title="401: Unauthorized">
    **Error**\
    Missing or invalid apikey.
  </Tab>

  <Tab title="429: Too Many Requests">
    You sent too many requests too quickly. Try again later.
  </Tab>
</Tabs>
