<!--
{
  "availability" : [
    "Apple Ads Platform API: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple-Ads-Platform-API",
  "identifier" : "/documentation/Apple-Ads-Platform-API/GET-keywords-_id_",
  "metadataVersion" : "0.1.0",
  "role" : "Web Service Endpoint",
  "symbol" : {
    "kind" : "Web Service Endpoint",
    "modules" : [
      "Apple Ads Platform API"
    ],
    "preciseIdentifier" : "rest:apple-ads-platform-api:get:keywords-{}"
  },
  "title" : "Get a Keyword"
}
-->

# Get a Keyword

Retrieve a single keyword by its unique identifier.

## Discussion

This endpoint retrieves a single keyword by its ID. The response includes all keyword fields plus `displayStatus`, which reflects the combined delivery state of the keyword, its ad group, and its campaign.

Deleted keywords remain retrievable and only the query endpoint supports listing multiple records.

|Constraint                                  |Detail                                                                                                                   |
|--------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
|Deleted keywords are returned               |A deleted keyword is returned with `deleted: true`. The record is not removed from GET by ID responses.                  |
|Deleted keywords excluded from query results|`POST /keywords/query` omits deleted keywords by default. Add a `deleted EQUALS true` filter to retrieve deleted records.|
|Use query endpoint for listing              |`GET /keywords/{id}` returns a single record. Use `POST /keywords/query` to filter and list multiple keywords.           |
|`adGroupId` and `campaignId` always returned|The parent hierarchy IDs are always present in the response.                                                             |

## Payload Examples

**Get Keyword:**

### Request

Retrieves a single keyword by its unique identifier.

```
GET https://api.ads.apple.com/v1/keywords/888999000
```

### Response

```json
{
 "result": {
   "id": 888999000,
   "adAccountId": 123456789,
   "campaignId": 444555666,
   "adGroupId": 555666777,
   "text": "photo editor",
   "matchType": "EXACT",
   "bid": {
     "amount": "2.50",
     "currency": "USD"
   },
   "status": "ENABLED",
   "displayStatus": "RUNNING",
   "deleted": false,
   "creationTime": "2025-01-10T08:00:00.000",
   "modificationTime": "2025-01-10T08:00:00.000"
 }
}
```

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)