@scrapecreators/cli 1.0.16 → 1.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api-config/apis.js +10 -2
- package/package.json +1 -1
package/api-config/apis.js
CHANGED
|
@@ -7057,9 +7057,9 @@ export const apis = [
|
|
|
7057
7057
|
name: "Advertiser Search",
|
|
7058
7058
|
method: "GET",
|
|
7059
7059
|
description:
|
|
7060
|
-
"Search the Google Ad Transparency Library for advertisers to get their advertiser id",
|
|
7060
|
+
"Search the Google Ad Transparency Library for advertisers to get their advertiser id. Pass region for non-US advertisers, like AU or CA.",
|
|
7061
7061
|
fullDescription:
|
|
7062
|
-
"Searches the Google Ad Transparency Library for advertisers by name. Returns a list of matching advertisers with their name, advertiser_id, and region, plus a list of associated website domains. Use the returned advertiser_id to look up a company's ads.",
|
|
7062
|
+
"Searches the Google Ad Transparency Library for advertisers by name. Returns a list of matching advertisers with their name, advertiser_id, and region, plus a list of associated website domains. Use the returned advertiser_id to look up a company's ads. Defaults to US when region is not passed, so pass a 2-letter country code like AU or CA when searching for advertisers in another region.",
|
|
7063
7063
|
path: "/v1/google/adLibrary/advertisers/search",
|
|
7064
7064
|
params: [
|
|
7065
7065
|
{
|
|
@@ -7069,6 +7069,14 @@ export const apis = [
|
|
|
7069
7069
|
description: "The query to search for",
|
|
7070
7070
|
placeholder: "lululemon",
|
|
7071
7071
|
},
|
|
7072
|
+
{
|
|
7073
|
+
name: "region",
|
|
7074
|
+
type: "string",
|
|
7075
|
+
required: false,
|
|
7076
|
+
description:
|
|
7077
|
+
"2-letter country code to search in. Defaults to US when omitted.",
|
|
7078
|
+
placeholder: "AU",
|
|
7079
|
+
},
|
|
7072
7080
|
],
|
|
7073
7081
|
sampleResponse: {
|
|
7074
7082
|
"success": true,
|