> 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/002_ten_dlc/009__get_brand.md).

# Get 10DLC Brand

GraphQL endpoint: `/company`

Get a single 10DLC Brand the company has access to.

The company has access to their own brands as well as any other brands from companies that have authorized 10DLC actions to the company.

## Query

```graphql
query($id: ID!) {
  tenDlcBrand(id: $id) {
    id
    brandId
    companyId
    displayName
    companyName
    entityType
    status
    phone
    email
    street
    city
    state
    postalCode
    country
    insertedAt
    updatedAt
    ownershipType
  }
}

```

## Variables

```json
{
  "id": "00000000-0000-4000-8000-000000000002"
}
```

## Response

```json
{
  "data": {
    "tenDlcBrand": {
      "brandId": "BAXKPHB",
      "city": "San Francisco",
      "companyId": "00000000-0000-4000-8000-000000000001",
      "companyName": "Test Company Inc",
      "country": "US",
      "displayName": "Test Brand",
      "email": "test@example.com",
      "entityType": "PRIVATE_PROFIT",
      "id": "00000000-0000-4000-8000-000000000002",
      "insertedAt": "2026-01-15T09:00:00",
      "ownershipType": "DIRECT",
      "phone": "+14155551234",
      "postalCode": "94105",
      "state": "CA",
      "status": "DRAFT",
      "street": "123 Main St",
      "updatedAt": "2026-01-15T09:00:00"
    }
  }
}
```
