> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/api-reference/002_company/001_profile/002__get_current_company.md).

# Get Current Company Profile

GraphQL endpoint: `/company`

Retrieves the authenticated company's own profile information for the current session.

## Query

```graphql
query {
  currentCompany {
    id
    profileName
    documentRepositoryEmailAddress
    legalName
    brandName
    logoUrl
    verified
    aboutUs
  }
}

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "currentCompany": {
      "aboutUs": "about us content",
      "brandName": "1brand-name",
      "documentRepositoryEmailAddress": "2profile-name@parse.tnid.test",
      "id": "00000000-0000-4000-8000-000000000001",
      "legalName": "3legal-name",
      "logoUrl": "http://localhost:4566/logo_url?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SOME_RANDOM_ACCESS_KEY%2F20260115%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260115T090000Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&X-Amz-Signature=0000000000000000000000000000000000000000000000000000000000000000",
      "profileName": "2profile-name",
      "verified": true
    }
  }
}
```
