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

# Name Color

`POST` `/namecolor`

See what color a persons username is

## Headers

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

## Body

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

## Response

<Tabs>
  <Tab title="200: OK">
    ```json theme={null}
    {
      "name": "Jake",
      "hex": "#4f0e55",
      "rgb": {
        "r": 79,
        "g": 14,
        "b": 85
      },
      "shade": "dark",
      "image": "https://singlecolorimage.com/get/4f0e55/300x300"
    }
    ```
  </Tab>

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

    * name

    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>
