> For the complete documentation index, see [llms.txt](https://docs.aquanow.io/aquanow/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.aquanow.io/aquanow/api-endpoints-or-v1.0/accounts-api/company-profile-configuration/company-profile-settings.md).

# Company profile settings

## Gets/retrieves company profile configuration&#x20;

<mark style="color:blue;">`GET`</mark> `https://api.aquanow.io/users/v1/companyProfile`

See response example for the information expected to be retrieved.

#### Headers

<table><thead><tr><th width="122">Name</th><th>Type</th><th>Description</th></tr></thead><tbody><tr><td>x-api-key<mark style="color:red;">*</mark></td><td>String</td><td><p><code>{{x-api-key}}</code></p><p>API Auth Key</p></td></tr><tr><td>x-signature<mark style="color:red;">*</mark></td><td>String</td><td><p><code>49c6260c194f4d7ed5cb917dc70b9821673246b2abc1cf28f05df6a75fd24181e00f8e57b321d15ae45db58b3bffe27a</code></p><p>Signature created using your API secret</p></td></tr><tr><td>x-nonce<mark style="color:red;">*</mark></td><td>Number</td><td><p><code>1657731573930</code></p><p>Timestamp in millisecond</p></td></tr></tbody></table>

{% tabs %}
{% tab title="200: OK Get company profile" %}
Returns a [CompanyProfileObject](/aquanow/data-objects-and-statuses/accounts-objects.md#companyprofileobject)&#x20;

```json
{
    "data": {
        "companyProfile": {
          "companyProfileName": "company_user",
          "isOnboard": true,
          "profileType": "companyProfile",
          "companyProfileEmail": "company@company.com",
          "availableOrderType": [
            {
              "orderType": "MARKET"
            }
          ],
          "emailNotificationList": {},
          "withdrawWhitelistingEnablement": false,
          "fiatWithdrawalList": {},
          "cryptoWithdrawalList": {},
          "ipWhitelist": []
        }
    }
}
```

{% endtab %}
{% endtabs %}
