google_ads_batch_add_keywords
Add multiple keywords to Google Ads ad groups in a single batch operation. Specify ad group ID, keyword text, match type, and bid to streamline keyword management.
Instructions
Add multiple keywords in a single batch operation.
Args: customer_id: Google Ads customer ID (10 digits, no hyphens) keywords_json: JSON array of keyword configurations
Keyword Configuration Schema:
[
{
"ad_group_id": "12345678",
"text": "keyword phrase",
"match_type": "EXACT",
"cpc_bid": 1.50
}
]Required Fields: ad_group_id, text Optional Fields: match_type (default: BROAD), cpc_bid Match Types: EXACT, PHRASE, BROAD
Returns: Batch operation result with success/failure details
Example: google_ads_batch_add_keywords( customer_id="1234567890", keywords_json='[{"ad_group_id": "12345678", "text": "running shoes", "match_type": "EXACT"}]' )
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| customer_id | Yes | ||
| keywords_json | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |