List All the Keywords in an Ad Group

List all the keywords that are part of an ad group. You can download list of all keywords added to an Ad group by specifying the request parameters

📘

URL: ​GET/api/v1/keywords

Request Parameters

ParameterNotesTypeRequiredPossible Values
advertiserId ID of the advertiserintegerYUnique numeric identifier
Filter[adgroupId]It will filter and return response for specific adgroupIds listed.

If not specified, it will return list of all keywords in the advertiser account
integerYAppropriate ad group IDs
startIndexYou can use this parameter to fetch specific number of keywords from a list. This indicates the starting position of the list

Note: To return the first ten keywords set startIndex=0 and count=10
integerNInteger value
countYou can use this parameter in combination with startIndex to fetch specific number of keywords from a list.

Note: To return the first ten keywords set startIndex=0 and count=10
integerNInteger value
Filter[lastModifiedDate]Provide a date to fetch the details of only those keywords which were created/modified on or after the date specifieddateN Date should be in format:   yyyy-MM-dd'T'HH:mm:ss.SSSXXX

Headers

Header NameDescriptionRequiredValues
AuthorizationThe token will provide you the access to the API. It is same for all advertisers you access through the API.YPlease utilize the generated auth_token shared with you at the time of partner onboarding from the Getting Started Guide
WM_CONSUMER.IDWe will provide you the consumer ID to access the API. It is same for all advertisers you access through the API.   YPlease use the generated ConsumerId shared with you at the time of partner onboarding. Refer to the Getting Started Guide for more information
WM_SEC.AUTH_SIGNATUREAuth signature as an API key.YUse the signature generator code from Getting Started Guide to generate this value
WM_SEC.KEY_VERSIONWe will provide you with the KEY VERSION to access the API. It is same for all advertisers you access through the API.Y1
WM_CONSUMER.intimestampTimestamp for which the auth signature is generated. Use Unix epoch format for the timestamp.YUse the signature generator code from Getting Started Guide to generate this value

Sample Request

curl -X GET \ 'https://developer.api.us.stg.walmart.com/api-proxy/service/display/api/v1/api/v1/keywords' \  --header 'Content-Type: application/json' \  --header 'Authorization: Bearer <auth_token>' --header 'WM_SEC.AUTH_SIGNATURE: **************' \  --header 'WM_SEC.KEY_VERSION: 1' \  --header 'WM_CONSUMER.ID: adfwe-v23-faasd2r-afs-asdfqeff' \  --header 'WM_CONSUMER.intimestamp: 1565309779' --data '{ "advertiserId": 1, "Filter[adgroupId]": 1, "Filter[lastModifiedDate]": "2023-12-01T12:00:00Z ", "startIndex": 0, "count": 0 }'

Response

Element  Description Type 
adGroupId ID of the ad group that is part of the above campaign integer 
totalResults Total number of rows returned in the response integer 
keywords Elements of array: 
  • keywordText: Text that defines the keyword
    • Data type: string
  • matchType: Matching criteria for the keywords
    • Data type: string
    • Values: EXACT, BROAD
  • isExcluded: Signifies whether a keyword is excluded
    • Data type: string
    • Values: true, false
  • reviewStatus: Specific phase of review status
    • Data type: string
    • Values: APPROVED, REJECTED, PENDING REVIEW
string 

Sample Response

{     "totalResults": 5,     "adGroupId": 1,     "keywords": [         {             "keywordText": "test keyword 1",             "matchType": "BROAD",             "isExcluded": false,             "reviewStatus": "PENDING REVIEW"         },         {             "keywordText": "test keyword 2",             "matchType": "EXACT",             "isExcluded": false,             "reviewStatus": "PENDING REVIEW"         },         {             "keywordText": "test keyword 3",             "matchType": "BROAD",             "isExcluded": false,             "reviewStatus": "PENDING REVIEW"         },         {             "keywordText": "test keyword 4",             "matchType": "BROAD",             "isExcluded": false,             "reviewStatus": "PENDING REVIEW"         },         {             "keywordText": "test keyword negative 1",             "matchType": "BROAD",             "isExcluded": true         }     ] } 

Note: The 'reviewStatus' field is not applicable for negative keywords and they can be regarded as automatically approved