> 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/001__list_api_keys.md).

# List 10DLC Api Keys

GraphQL endpoint: `/company`

List all 10DLC API keys that the company can use.

## Query

```graphql
query ($apiKeyType: TenDlcApiKeyType) {
  tenDlcApiKeys(apiKeyType: $apiKeyType) {
    name
    apiKeyId
    apiKeySecret
    companyId
    company {
      id
      legalName
      brandName
      profileName
    }
    insertedAt
    updatedAt
  }
}

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "tenDlcApiKeys": [
      {
        "apiKeyId": "test_key_4XSQDLDIGBQOPPVM",
        "apiKeySecret": "test_secret_7456NSLFUA7CQUOIHCX7T5CIBUUQ2P2W",
        "company": {
          "brandName": "1brand-name",
          "id": "00000000-0000-4000-8000-000000000001",
          "legalName": "2legal-name",
          "profileName": "3profile-name"
        },
        "companyId": "00000000-0000-4000-8000-000000000001",
        "insertedAt": "2026-01-15T09:00:00",
        "name": "Owned Key 1",
        "updatedAt": "2026-01-15T09:00:00"
      },
      {
        "apiKeyId": "test_key_LUE5NPJLGQ5JKZSV",
        "apiKeySecret": "test_secret_7H5LRAEDMEDMN4HL7G6GCXTDOIJNPRS5",
        "company": {
          "brandName": "1brand-name",
          "id": "00000000-0000-4000-8000-000000000001",
          "legalName": "2legal-name",
          "profileName": "3profile-name"
        },
        "companyId": "00000000-0000-4000-8000-000000000001",
        "insertedAt": "2026-01-15T09:00:00",
        "name": "Owned Key 2",
        "updatedAt": "2026-01-15T09:00:00"
      },
      {
        "apiKeyId": "test_key_M6HJBCO5OU3MJS3L",
        "apiKeySecret": "test_secret_YC55ZBFO5HEPDAVSSP4ONI6AGBLYJCV6",
        "company": {
          "brandName": "1brand-name",
          "id": "00000000-0000-4000-8000-000000000001",
          "legalName": "2legal-name",
          "profileName": "3profile-name"
        },
        "companyId": "00000000-0000-4000-8000-000000000001",
        "insertedAt": "2026-01-15T09:00:00",
        "name": "Owned Key 3",
        "updatedAt": "2026-01-15T09:00:00"
      },
      {
        "apiKeyId": "test_key_JG3IIBCT3AL3Q7QD",
        "apiKeySecret": "test_secret_FBQUWUFAYUHZB3HZABFTXHGR5Y4ISB6Q",
        "company": {
          "brandName": "4brand-name",
          "id": "00000000-0000-4000-8000-000000000002",
          "legalName": "Shared From Co",
          "profileName": "5profile-name"
        },
        "companyId": "00000000-0000-4000-8000-000000000002",
        "insertedAt": "2026-01-15T09:00:00",
        "name": "Shared Key",
        "updatedAt": "2026-01-15T09:00:00"
      }
    ]
  }
}
```
