dataforseo-client 1.0.25 → 1.0.27
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/CHANGELOG.md +4 -0
- package/README.md +1 -0
- package/main.d.ts +1088 -824
- package/main.js +968 -746
- package/main.js.map +1 -1
- package/main.ts +240229 -0
- package/package.json +1 -1
- package/tsconfig.json +0 -111
package/main.d.ts
CHANGED
|
@@ -5481,7 +5481,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
5481
5481
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
5482
5482
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
5483
5483
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
5484
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘site:’,
|
|
5484
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘site:’, the charge per task will be multiplied by 5
|
|
5485
5485
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
5486
5486
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
5487
5487
|
keyword?: string;
|
|
@@ -5684,7 +5684,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
5684
5684
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
5685
5685
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
5686
5686
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
5687
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘site:’,
|
|
5687
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘site:’, the charge per task will be multiplied by 5
|
|
5688
5688
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
5689
5689
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
5690
5690
|
keyword?: string;
|
|
@@ -6151,6 +6151,8 @@ export declare class PaidSerpElementItem extends BaseSerpElementItem implements
|
|
|
6151
6151
|
title?: string | undefined;
|
|
6152
6152
|
/** domain name of the reference */
|
|
6153
6153
|
domain?: string | undefined;
|
|
6154
|
+
/** name of the website in SERP */
|
|
6155
|
+
website_name?: string | undefined;
|
|
6154
6156
|
/** breadcrumb in SERP */
|
|
6155
6157
|
breadcrumb?: string | undefined;
|
|
6156
6158
|
/** indicates whether the element contains an image */
|
|
@@ -6179,12 +6181,13 @@ if there are none, equals null */
|
|
|
6179
6181
|
/** pricing details
|
|
6180
6182
|
contains the pricing details of the product or service featured in the result */
|
|
6181
6183
|
price?: PriceInfo | undefined;
|
|
6184
|
+
/** the item’s rating
|
|
6185
|
+
the popularity rate based on reviews and displayed in SERP */
|
|
6186
|
+
rating?: RatingInfo | undefined;
|
|
6182
6187
|
/** rectangle parameters
|
|
6183
6188
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
6184
6189
|
equals null if calculate_rectangles in the POST request is not set to true */
|
|
6185
6190
|
rectangle?: Rectangle | undefined;
|
|
6186
|
-
/** website name in SERP */
|
|
6187
|
-
website_name?: string | undefined;
|
|
6188
6191
|
[key: string]: any;
|
|
6189
6192
|
constructor(data?: IPaidSerpElementItem);
|
|
6190
6193
|
init(_data?: any): void;
|
|
@@ -6196,6 +6199,8 @@ export interface IPaidSerpElementItem extends IBaseSerpElementItem {
|
|
|
6196
6199
|
title?: string | undefined;
|
|
6197
6200
|
/** domain name of the reference */
|
|
6198
6201
|
domain?: string | undefined;
|
|
6202
|
+
/** name of the website in SERP */
|
|
6203
|
+
website_name?: string | undefined;
|
|
6199
6204
|
/** breadcrumb in SERP */
|
|
6200
6205
|
breadcrumb?: string | undefined;
|
|
6201
6206
|
/** indicates whether the element contains an image */
|
|
@@ -6224,12 +6229,13 @@ if there are none, equals null */
|
|
|
6224
6229
|
/** pricing details
|
|
6225
6230
|
contains the pricing details of the product or service featured in the result */
|
|
6226
6231
|
price?: PriceInfo | undefined;
|
|
6232
|
+
/** the item’s rating
|
|
6233
|
+
the popularity rate based on reviews and displayed in SERP */
|
|
6234
|
+
rating?: RatingInfo | undefined;
|
|
6227
6235
|
/** rectangle parameters
|
|
6228
6236
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
6229
6237
|
equals null if calculate_rectangles in the POST request is not set to true */
|
|
6230
6238
|
rectangle?: Rectangle | undefined;
|
|
6231
|
-
/** website name in SERP */
|
|
6232
|
-
website_name?: string | undefined;
|
|
6233
6239
|
[key: string]: any;
|
|
6234
6240
|
}
|
|
6235
6241
|
export declare class OrganicSerpElementItem extends BaseSerpElementItem implements IOrganicSerpElementItem {
|
|
@@ -6677,7 +6683,7 @@ export declare class KnowledgeGraphImagesElement implements IKnowledgeGraphImage
|
|
|
6677
6683
|
type?: string | undefined;
|
|
6678
6684
|
/** relevant URL in SERP */
|
|
6679
6685
|
url?: string | undefined;
|
|
6680
|
-
/** domain in SERP of the
|
|
6686
|
+
/** domain in SERP of the ad element */
|
|
6681
6687
|
domain?: string | undefined;
|
|
6682
6688
|
/** alt tag of the image */
|
|
6683
6689
|
alt?: string | undefined;
|
|
@@ -6697,7 +6703,7 @@ export interface IKnowledgeGraphImagesElement {
|
|
|
6697
6703
|
type?: string | undefined;
|
|
6698
6704
|
/** relevant URL in SERP */
|
|
6699
6705
|
url?: string | undefined;
|
|
6700
|
-
/** domain in SERP of the
|
|
6706
|
+
/** domain in SERP of the ad element */
|
|
6701
6707
|
domain?: string | undefined;
|
|
6702
6708
|
/** alt tag of the image */
|
|
6703
6709
|
alt?: string | undefined;
|
|
@@ -6862,8 +6868,7 @@ in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
|
|
|
6862
6868
|
example:
|
|
6863
6869
|
2019-11-15 12:57:46 +00:00 */
|
|
6864
6870
|
timestamp?: string | undefined;
|
|
6865
|
-
/**
|
|
6866
|
-
if there are none, equals null */
|
|
6871
|
+
/** table element */
|
|
6867
6872
|
table?: Table | undefined;
|
|
6868
6873
|
[key: string]: any;
|
|
6869
6874
|
constructor(data?: IKnowledgeGraphExpandedElement);
|
|
@@ -6891,8 +6896,7 @@ in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
|
|
|
6891
6896
|
example:
|
|
6892
6897
|
2019-11-15 12:57:46 +00:00 */
|
|
6893
6898
|
timestamp?: string | undefined;
|
|
6894
|
-
/**
|
|
6895
|
-
if there are none, equals null */
|
|
6899
|
+
/** table element */
|
|
6896
6900
|
table?: Table | undefined;
|
|
6897
6901
|
[key: string]: any;
|
|
6898
6902
|
}
|
|
@@ -7422,7 +7426,7 @@ URL to a new search for the same keyword(s) on related sites */
|
|
|
7422
7426
|
related_search_url?: string | undefined;
|
|
7423
7427
|
/** breadcrumb in SERP */
|
|
7424
7428
|
breadcrumb?: string | undefined;
|
|
7425
|
-
/** name of the website in
|
|
7429
|
+
/** name of the website in the ad element */
|
|
7426
7430
|
website_name?: string | undefined;
|
|
7427
7431
|
/** indicates whether the element contains an image */
|
|
7428
7432
|
is_image?: boolean | undefined;
|
|
@@ -7479,7 +7483,7 @@ URL to a new search for the same keyword(s) on related sites */
|
|
|
7479
7483
|
related_search_url?: string | undefined;
|
|
7480
7484
|
/** breadcrumb in SERP */
|
|
7481
7485
|
breadcrumb?: string | undefined;
|
|
7482
|
-
/** name of the website in
|
|
7486
|
+
/** name of the website in the ad element */
|
|
7483
7487
|
website_name?: string | undefined;
|
|
7484
7488
|
/** indicates whether the element contains an image */
|
|
7485
7489
|
is_image?: boolean | undefined;
|
|
@@ -7622,7 +7626,8 @@ in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
|
|
|
7622
7626
|
example:
|
|
7623
7627
|
2019-11-15 12:57:46 +00:00 */
|
|
7624
7628
|
timestamp?: string | undefined;
|
|
7625
|
-
/** table
|
|
7629
|
+
/** results table
|
|
7630
|
+
if there are none, equals null */
|
|
7626
7631
|
table?: Table | undefined;
|
|
7627
7632
|
[key: string]: any;
|
|
7628
7633
|
constructor(data?: IPeopleAlsoAskExpandedElement);
|
|
@@ -7650,7 +7655,8 @@ in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
|
|
|
7650
7655
|
example:
|
|
7651
7656
|
2019-11-15 12:57:46 +00:00 */
|
|
7652
7657
|
timestamp?: string | undefined;
|
|
7653
|
-
/** table
|
|
7658
|
+
/** results table
|
|
7659
|
+
if there are none, equals null */
|
|
7654
7660
|
table?: Table | undefined;
|
|
7655
7661
|
[key: string]: any;
|
|
7656
7662
|
}
|
|
@@ -7869,7 +7875,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
7869
7875
|
export declare class GoogleReviewsSerpElementItem extends BaseSerpElementItem implements IGoogleReviewsSerpElementItem {
|
|
7870
7876
|
/** the number of reviews */
|
|
7871
7877
|
reviews_count?: number | undefined;
|
|
7872
|
-
/** the
|
|
7878
|
+
/** the element’s rating
|
|
7873
7879
|
the popularity rate based on reviews and displayed in SERP */
|
|
7874
7880
|
rating?: RatingInfo | undefined;
|
|
7875
7881
|
/** the identifier of a place */
|
|
@@ -7891,7 +7897,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
7891
7897
|
export interface IGoogleReviewsSerpElementItem extends IBaseSerpElementItem {
|
|
7892
7898
|
/** the number of reviews */
|
|
7893
7899
|
reviews_count?: number | undefined;
|
|
7894
|
-
/** the
|
|
7900
|
+
/** the element’s rating
|
|
7895
7901
|
the popularity rate based on reviews and displayed in SERP */
|
|
7896
7902
|
rating?: RatingInfo | undefined;
|
|
7897
7903
|
/** the identifier of a place */
|
|
@@ -8079,7 +8085,7 @@ export declare class LocalPackSerpElementItem extends BaseSerpElementItem implem
|
|
|
8079
8085
|
url?: string | undefined;
|
|
8080
8086
|
/** indicates whether the element is an ad */
|
|
8081
8087
|
is_paid?: boolean | undefined;
|
|
8082
|
-
/** the
|
|
8088
|
+
/** the element’s rating
|
|
8083
8089
|
the popularity rate based on reviews and displayed in SERP */
|
|
8084
8090
|
rating?: RatingInfo | undefined;
|
|
8085
8091
|
/** google-defined client id */
|
|
@@ -8107,7 +8113,7 @@ export interface ILocalPackSerpElementItem extends IBaseSerpElementItem {
|
|
|
8107
8113
|
url?: string | undefined;
|
|
8108
8114
|
/** indicates whether the element is an ad */
|
|
8109
8115
|
is_paid?: boolean | undefined;
|
|
8110
|
-
/** the
|
|
8116
|
+
/** the element’s rating
|
|
8111
8117
|
the popularity rate based on reviews and displayed in SERP */
|
|
8112
8118
|
rating?: RatingInfo | undefined;
|
|
8113
8119
|
/** google-defined client id */
|
|
@@ -8282,6 +8288,9 @@ URL of the page on the marketplace website where the product is hosted */
|
|
|
8282
8288
|
marketplace_url?: string | undefined;
|
|
8283
8289
|
/** URL */
|
|
8284
8290
|
url?: string | undefined;
|
|
8291
|
+
/** the item’s rating
|
|
8292
|
+
the popularity rate based on reviews and displayed in SERP */
|
|
8293
|
+
rating?: RatingInfo | undefined;
|
|
8285
8294
|
[key: string]: any;
|
|
8286
8295
|
constructor(data?: IShoppingElement);
|
|
8287
8296
|
init(_data?: any): void;
|
|
@@ -8310,6 +8319,9 @@ URL of the page on the marketplace website where the product is hosted */
|
|
|
8310
8319
|
marketplace_url?: string | undefined;
|
|
8311
8320
|
/** URL */
|
|
8312
8321
|
url?: string | undefined;
|
|
8322
|
+
/** the item’s rating
|
|
8323
|
+
the popularity rate based on reviews and displayed in SERP */
|
|
8324
|
+
rating?: RatingInfo | undefined;
|
|
8313
8325
|
[key: string]: any;
|
|
8314
8326
|
}
|
|
8315
8327
|
export declare class ShoppingSerpElementItem extends BaseSerpElementItem implements IShoppingSerpElementItem {
|
|
@@ -10453,7 +10465,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
10453
10465
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
10454
10466
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
10455
10467
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
10456
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘site:’,
|
|
10468
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘site:’, the charge per task will be multiplied by 5
|
|
10457
10469
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error */
|
|
10458
10470
|
keyword?: string;
|
|
10459
10471
|
/** full name of search engine location
|
|
@@ -10577,7 +10589,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
10577
10589
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
10578
10590
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
10579
10591
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
10580
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘site:’,
|
|
10592
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘site:’, the charge per task will be multiplied by 5
|
|
10581
10593
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error */
|
|
10582
10594
|
keyword?: string;
|
|
10583
10595
|
/** full name of search engine location
|
|
@@ -10805,7 +10817,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
10805
10817
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
10806
10818
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
10807
10819
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
10808
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘site:’,
|
|
10820
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘definition:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘site:’, the charge per task will be multiplied by 5
|
|
10809
10821
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
10810
10822
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
10811
10823
|
keyword?: string;
|
|
@@ -10980,7 +10992,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
10980
10992
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
10981
10993
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
10982
10994
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
10983
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘site:’,
|
|
10995
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘definition:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘site:’, the charge per task will be multiplied by 5
|
|
10984
10996
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
10985
10997
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
10986
10998
|
keyword?: string;
|
|
@@ -11267,7 +11279,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
11267
11279
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
11268
11280
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
11269
11281
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
11270
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’,
|
|
11282
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’, the charge per task will be multiplied by 5
|
|
11271
11283
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error */
|
|
11272
11284
|
keyword?: string;
|
|
11273
11285
|
/** full name of search engine location
|
|
@@ -11385,7 +11397,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
11385
11397
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
11386
11398
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
11387
11399
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
11388
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’,
|
|
11400
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’, the charge per task will be multiplied by 5
|
|
11389
11401
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error */
|
|
11390
11402
|
keyword?: string;
|
|
11391
11403
|
/** full name of search engine location
|
|
@@ -11577,7 +11589,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
11577
11589
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
11578
11590
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
11579
11591
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
11580
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’,
|
|
11592
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’, the charge per task will be multiplied by 5
|
|
11581
11593
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
11582
11594
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
11583
11595
|
keyword?: string;
|
|
@@ -11730,7 +11742,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
11730
11742
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
11731
11743
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
11732
11744
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
11733
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’,
|
|
11745
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’, the charge per task will be multiplied by 5
|
|
11734
11746
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
11735
11747
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
11736
11748
|
keyword?: string;
|
|
@@ -12462,7 +12474,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
12462
12474
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
12463
12475
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
12464
12476
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
12465
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’,
|
|
12477
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’, the charge per task will be multiplied by 5
|
|
12466
12478
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
12467
12479
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
12468
12480
|
keyword?: string;
|
|
@@ -12581,7 +12593,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
12581
12593
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
12582
12594
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
12583
12595
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
12584
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’,
|
|
12596
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’, the charge per task will be multiplied by 5
|
|
12585
12597
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
12586
12598
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
12587
12599
|
keyword?: string;
|
|
@@ -14026,7 +14038,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
14026
14038
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
14027
14039
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
14028
14040
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
14029
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’,
|
|
14041
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’, the charge per task will be multiplied by 5
|
|
14030
14042
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
14031
14043
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
14032
14044
|
keyword?: string;
|
|
@@ -14187,7 +14199,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
14187
14199
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
14188
14200
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
14189
14201
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
14190
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’,
|
|
14202
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’, the charge per task will be multiplied by 5
|
|
14191
14203
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
14192
14204
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
14193
14205
|
keyword?: string;
|
|
@@ -14827,7 +14839,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
14827
14839
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
14828
14840
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
14829
14841
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
14830
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’,
|
|
14842
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’, the charge per task will be multiplied by 5
|
|
14831
14843
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
14832
14844
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
14833
14845
|
keyword?: string;
|
|
@@ -14946,7 +14958,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
14946
14958
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
14947
14959
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
14948
14960
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
14949
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’,
|
|
14961
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’, the charge per task will be multiplied by 5
|
|
14950
14962
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
14951
14963
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
14952
14964
|
keyword?: string;
|
|
@@ -15175,7 +15187,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
15175
15187
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
15176
15188
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
15177
15189
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
15178
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’,
|
|
15190
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’, the charge per task will be multiplied by 5
|
|
15179
15191
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
15180
15192
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
15181
15193
|
keyword?: string;
|
|
@@ -15275,7 +15287,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
15275
15287
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
15276
15288
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
15277
15289
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
15278
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’,
|
|
15290
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’, the charge per task will be multiplied by 5
|
|
15279
15291
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
15280
15292
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
15281
15293
|
keyword?: string;
|
|
@@ -16463,7 +16475,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
16463
16475
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
16464
16476
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
16465
16477
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
16466
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’,
|
|
16478
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’, the charge per task will be multiplied by 5
|
|
16467
16479
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
16468
16480
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
16469
16481
|
keyword?: string;
|
|
@@ -16599,7 +16611,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
16599
16611
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
16600
16612
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
16601
16613
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
16602
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’,
|
|
16614
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’, the charge per task will be multiplied by 5
|
|
16603
16615
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
16604
16616
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
16605
16617
|
keyword?: string;
|
|
@@ -17236,7 +17248,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
17236
17248
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
17237
17249
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
17238
17250
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
17239
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’,
|
|
17251
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’, the charge per task will be multiplied by 5
|
|
17240
17252
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
17241
17253
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
17242
17254
|
keyword?: string;
|
|
@@ -17335,7 +17347,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
17335
17347
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
17336
17348
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
17337
17349
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
17338
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’,
|
|
17350
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’, the charge per task will be multiplied by 5
|
|
17339
17351
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
17340
17352
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
17341
17353
|
keyword?: string;
|
|
@@ -17538,7 +17550,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
17538
17550
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
17539
17551
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
17540
17552
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
17541
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’,
|
|
17553
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’, the charge per task will be multiplied by 5
|
|
17542
17554
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
17543
17555
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
17544
17556
|
keyword?: string;
|
|
@@ -17638,7 +17650,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
17638
17650
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
17639
17651
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
17640
17652
|
if you need to use the “+” character for your keyword, please specify it as “%2B”;
|
|
17641
|
-
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’,
|
|
17653
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’, the charge per task will be multiplied by 5
|
|
17642
17654
|
Note: queries containing the ‘cache:’ parameter are not supported and will return a validation error
|
|
17643
17655
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
17644
17656
|
keyword?: string;
|
|
@@ -20344,7 +20356,7 @@ export declare class FormatsElement implements IFormatsElement {
|
|
|
20344
20356
|
for example: zip, html, csv */
|
|
20345
20357
|
format?: string | undefined;
|
|
20346
20358
|
/** file size in bytes */
|
|
20347
|
-
size?:
|
|
20359
|
+
size?: number | undefined;
|
|
20348
20360
|
[key: string]: any;
|
|
20349
20361
|
constructor(data?: IFormatsElement);
|
|
20350
20362
|
init(_data?: any): void;
|
|
@@ -20358,7 +20370,7 @@ export interface IFormatsElement {
|
|
|
20358
20370
|
for example: zip, html, csv */
|
|
20359
20371
|
format?: string | undefined;
|
|
20360
20372
|
/** file size in bytes */
|
|
20361
|
-
size?:
|
|
20373
|
+
size?: number | undefined;
|
|
20362
20374
|
[key: string]: any;
|
|
20363
20375
|
}
|
|
20364
20376
|
export declare class PeriodCovered implements IPeriodCovered {
|
|
@@ -21569,24 +21581,27 @@ if you need to use the “+” character for your keyword, please specify it as
|
|
|
21569
21581
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
21570
21582
|
keyword?: string;
|
|
21571
21583
|
/** full name of search engine location
|
|
21572
|
-
|
|
21584
|
+
optional field
|
|
21573
21585
|
if you use this field, you don’t need to specify location_code or location_coordinate
|
|
21574
21586
|
you can receive the list of available locations of the search engine with their location_name by making a separate request to the https://api.dataforseo.com/v3/serp/google/ads_advertisers/locations
|
|
21575
21587
|
example:
|
|
21576
|
-
London,England,United Kingdom
|
|
21588
|
+
London,England,United Kingdom
|
|
21589
|
+
Note: if you don’t specify location_name, location_code, or location_coordinate, advertisers will be searched across all the available locations */
|
|
21577
21590
|
location_name?: string | undefined;
|
|
21578
21591
|
/** search engine location code
|
|
21579
|
-
|
|
21592
|
+
optional field
|
|
21580
21593
|
if you use this field, you don’t need to specify location_name or location_coordinate
|
|
21581
21594
|
you can receive the list of available locations of the search engines with their location_code by making a separate request to the https://api.dataforseo.com/v3/serp/google/ads_advertisers/locations
|
|
21582
21595
|
example:
|
|
21583
|
-
2840
|
|
21596
|
+
2840
|
|
21597
|
+
Note: if you don’t specify location_name, location_code, or location_coordinate, advertisers will be searched across all the available locations */
|
|
21584
21598
|
location_code?: number | undefined;
|
|
21585
21599
|
/** GPS coordinates of a location
|
|
21586
|
-
|
|
21600
|
+
optional field
|
|
21587
21601
|
if you use this field, you don’t need to specify location_name or location_code
|
|
21588
21602
|
example:
|
|
21589
|
-
52.6178549,-155.352142
|
|
21603
|
+
52.6178549,-155.352142
|
|
21604
|
+
Note: if you don’t specify location_name, location_code, or location_coordinate, advertisers will be searched across all the available locations */
|
|
21590
21605
|
location_coordinate?: string | undefined;
|
|
21591
21606
|
/** task priority
|
|
21592
21607
|
optional field
|
|
@@ -21646,24 +21661,27 @@ if you need to use the “+” character for your keyword, please specify it as
|
|
|
21646
21661
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
21647
21662
|
keyword?: string;
|
|
21648
21663
|
/** full name of search engine location
|
|
21649
|
-
|
|
21664
|
+
optional field
|
|
21650
21665
|
if you use this field, you don’t need to specify location_code or location_coordinate
|
|
21651
21666
|
you can receive the list of available locations of the search engine with their location_name by making a separate request to the https://api.dataforseo.com/v3/serp/google/ads_advertisers/locations
|
|
21652
21667
|
example:
|
|
21653
|
-
London,England,United Kingdom
|
|
21668
|
+
London,England,United Kingdom
|
|
21669
|
+
Note: if you don’t specify location_name, location_code, or location_coordinate, advertisers will be searched across all the available locations */
|
|
21654
21670
|
location_name?: string | undefined;
|
|
21655
21671
|
/** search engine location code
|
|
21656
|
-
|
|
21672
|
+
optional field
|
|
21657
21673
|
if you use this field, you don’t need to specify location_name or location_coordinate
|
|
21658
21674
|
you can receive the list of available locations of the search engines with their location_code by making a separate request to the https://api.dataforseo.com/v3/serp/google/ads_advertisers/locations
|
|
21659
21675
|
example:
|
|
21660
|
-
2840
|
|
21676
|
+
2840
|
|
21677
|
+
Note: if you don’t specify location_name, location_code, or location_coordinate, advertisers will be searched across all the available locations */
|
|
21661
21678
|
location_code?: number | undefined;
|
|
21662
21679
|
/** GPS coordinates of a location
|
|
21663
|
-
|
|
21680
|
+
optional field
|
|
21664
21681
|
if you use this field, you don’t need to specify location_name or location_code
|
|
21665
21682
|
example:
|
|
21666
|
-
52.6178549,-155.352142
|
|
21683
|
+
52.6178549,-155.352142
|
|
21684
|
+
Note: if you don’t specify location_name, location_code, or location_coordinate, advertisers will be searched across all the available locations */
|
|
21667
21685
|
location_coordinate?: string | undefined;
|
|
21668
21686
|
/** task priority
|
|
21669
21687
|
optional field
|
|
@@ -22155,28 +22173,31 @@ you can specify the maximum of 25 values in this array;
|
|
|
22155
22173
|
advertiser_ids values for this parameter can be found in the Google Ads Advertisers endpoint; */
|
|
22156
22174
|
advertiser_ids?: string[] | undefined;
|
|
22157
22175
|
/** full name of search engine location
|
|
22158
|
-
|
|
22176
|
+
optional field
|
|
22159
22177
|
if you use this field, you don’t need to specify location_code or location_coordinate
|
|
22160
22178
|
you can receive the list of available locations of the search engine with their location_name by making a separate request to the https://api.dataforseo.com/v3/serp/google/ads_search/locations
|
|
22161
22179
|
example:
|
|
22162
|
-
London,England,United Kingdom
|
|
22180
|
+
London,England,United Kingdom
|
|
22181
|
+
Note: if you don’t specify location_name, location_code, or location_coordinate, the ads will be searched across all the available locations */
|
|
22163
22182
|
location_name?: string | undefined;
|
|
22164
22183
|
/** search engine location code
|
|
22165
|
-
|
|
22184
|
+
optional field
|
|
22166
22185
|
if you use this field, you don’t need to specify location_name or location_coordinate
|
|
22167
22186
|
you can receive the list of available locations of the search engines with their location_code by making a separate request to the https://api.dataforseo.com/v3/serp/google/ads_search/locations
|
|
22168
22187
|
example:
|
|
22169
|
-
2840
|
|
22188
|
+
2840
|
|
22189
|
+
Note: if you don’t specify location_name, location_code, or location_coordinate, the ads will be searched across all the available locations */
|
|
22170
22190
|
location_code?: number | undefined;
|
|
22171
22191
|
/** GPS coordinates of a location
|
|
22172
|
-
|
|
22192
|
+
optional field
|
|
22173
22193
|
if you use this field, you don’t need to specify location_name or location_code
|
|
22174
22194
|
example:
|
|
22175
|
-
52.6178549,-155.352142
|
|
22195
|
+
52.6178549,-155.352142
|
|
22196
|
+
Note: if you don’t specify location_name, location_code, or location_coordinate, the ads will be searched across all the available locations */
|
|
22176
22197
|
location_coordinate?: string | undefined;
|
|
22177
22198
|
/** advertising platform
|
|
22178
22199
|
optional field
|
|
22179
|
-
possible values: all,
|
|
22200
|
+
possible values: all, google_play, google_maps, google_search, google_shopping, youtube
|
|
22180
22201
|
default value: all */
|
|
22181
22202
|
platform?: string | undefined;
|
|
22182
22203
|
/** ad format
|
|
@@ -22269,28 +22290,31 @@ you can specify the maximum of 25 values in this array;
|
|
|
22269
22290
|
advertiser_ids values for this parameter can be found in the Google Ads Advertisers endpoint; */
|
|
22270
22291
|
advertiser_ids?: string[] | undefined;
|
|
22271
22292
|
/** full name of search engine location
|
|
22272
|
-
|
|
22293
|
+
optional field
|
|
22273
22294
|
if you use this field, you don’t need to specify location_code or location_coordinate
|
|
22274
22295
|
you can receive the list of available locations of the search engine with their location_name by making a separate request to the https://api.dataforseo.com/v3/serp/google/ads_search/locations
|
|
22275
22296
|
example:
|
|
22276
|
-
London,England,United Kingdom
|
|
22297
|
+
London,England,United Kingdom
|
|
22298
|
+
Note: if you don’t specify location_name, location_code, or location_coordinate, the ads will be searched across all the available locations */
|
|
22277
22299
|
location_name?: string | undefined;
|
|
22278
22300
|
/** search engine location code
|
|
22279
|
-
|
|
22301
|
+
optional field
|
|
22280
22302
|
if you use this field, you don’t need to specify location_name or location_coordinate
|
|
22281
22303
|
you can receive the list of available locations of the search engines with their location_code by making a separate request to the https://api.dataforseo.com/v3/serp/google/ads_search/locations
|
|
22282
22304
|
example:
|
|
22283
|
-
2840
|
|
22305
|
+
2840
|
|
22306
|
+
Note: if you don’t specify location_name, location_code, or location_coordinate, the ads will be searched across all the available locations */
|
|
22284
22307
|
location_code?: number | undefined;
|
|
22285
22308
|
/** GPS coordinates of a location
|
|
22286
|
-
|
|
22309
|
+
optional field
|
|
22287
22310
|
if you use this field, you don’t need to specify location_name or location_code
|
|
22288
22311
|
example:
|
|
22289
|
-
52.6178549,-155.352142
|
|
22312
|
+
52.6178549,-155.352142
|
|
22313
|
+
Note: if you don’t specify location_name, location_code, or location_coordinate, the ads will be searched across all the available locations */
|
|
22290
22314
|
location_coordinate?: string | undefined;
|
|
22291
22315
|
/** advertising platform
|
|
22292
22316
|
optional field
|
|
22293
|
-
possible values: all,
|
|
22317
|
+
possible values: all, google_play, google_maps, google_search, google_shopping, youtube
|
|
22294
22318
|
default value: all */
|
|
22295
22319
|
platform?: string | undefined;
|
|
22296
22320
|
/** ad format
|
|
@@ -22887,6 +22911,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
22887
22911
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
22888
22912
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
22889
22913
|
if you need to use the “+” character for your keyword, please specify it as “%2B”
|
|
22914
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’ the charge per task will be multiplied by 5
|
|
22890
22915
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
22891
22916
|
keyword?: string;
|
|
22892
22917
|
/** task priority
|
|
@@ -23052,6 +23077,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
23052
23077
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
23053
23078
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
23054
23079
|
if you need to use the “+” character for your keyword, please specify it as “%2B”
|
|
23080
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’ the charge per task will be multiplied by 5
|
|
23055
23081
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
23056
23082
|
keyword?: string;
|
|
23057
23083
|
/** task priority
|
|
@@ -24001,6 +24027,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
24001
24027
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
24002
24028
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
24003
24029
|
if you need to use the “+” character for your keyword, please specify it as “%2B”
|
|
24030
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’ the charge per task will be multiplied by 5
|
|
24004
24031
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
24005
24032
|
keyword?: string;
|
|
24006
24033
|
/** task priority
|
|
@@ -24138,6 +24165,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
24138
24165
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
24139
24166
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
24140
24167
|
if you need to use the “+” character for your keyword, please specify it as “%2B”
|
|
24168
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’ the charge per task will be multiplied by 5
|
|
24141
24169
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
24142
24170
|
keyword?: string;
|
|
24143
24171
|
/** task priority
|
|
@@ -24293,7 +24321,8 @@ answer_box, carousel, events, featured_snippet, hotels_pack, images, jobs, local
|
|
|
24293
24321
|
se_results_count?: number | undefined;
|
|
24294
24322
|
/** the number of results returned in the items array */
|
|
24295
24323
|
items_count?: number | undefined;
|
|
24296
|
-
/** items
|
|
24324
|
+
/** additional items present in the element
|
|
24325
|
+
if there are none, equals null */
|
|
24297
24326
|
items?: (BaseSerpElementItem | undefined)[] | undefined;
|
|
24298
24327
|
[key: string]: any;
|
|
24299
24328
|
constructor(data?: ISerpBingOrganicLiveAdvancedResultInfo);
|
|
@@ -24336,7 +24365,8 @@ answer_box, carousel, events, featured_snippet, hotels_pack, images, jobs, local
|
|
|
24336
24365
|
se_results_count?: number | undefined;
|
|
24337
24366
|
/** the number of results returned in the items array */
|
|
24338
24367
|
items_count?: number | undefined;
|
|
24339
|
-
/** items
|
|
24368
|
+
/** additional items present in the element
|
|
24369
|
+
if there are none, equals null */
|
|
24340
24370
|
items?: (BaseSerpElementItem | undefined)[] | undefined;
|
|
24341
24371
|
[key: string]: any;
|
|
24342
24372
|
}
|
|
@@ -24647,6 +24677,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
24647
24677
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
24648
24678
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
24649
24679
|
if you need to use the “+” character for your keyword, please specify it as “%2B”
|
|
24680
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’ the charge per task will be multiplied by 5
|
|
24650
24681
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
24651
24682
|
keyword?: string;
|
|
24652
24683
|
/** task priority
|
|
@@ -24772,6 +24803,7 @@ you can specify up to 700 characters in the keyword field
|
|
|
24772
24803
|
all %## will be decoded (plus character ‘+’ will be decoded to a space character)
|
|
24773
24804
|
if you need to use the “%” character for your keyword, please specify it as “%25”;
|
|
24774
24805
|
if you need to use the “+” character for your keyword, please specify it as “%2B”
|
|
24806
|
+
if this field contains such parameters as ‘allinanchor:’, ‘allintext:’, ‘allintitle:’, ‘allinurl:’, ‘define:’, ‘filetype:’, ‘id:’, ‘inanchor:’, ‘info:’, ‘intext:’, ‘intitle:’, ‘inurl:’, ‘link:’, ‘related:’, ‘site:’ the charge per task will be multiplied by 5
|
|
24775
24807
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
24776
24808
|
keyword?: string;
|
|
24777
24809
|
/** task priority
|
|
@@ -36406,7 +36438,7 @@ optional field
|
|
|
36406
36438
|
you can add several filters at once (8 filters maximum)
|
|
36407
36439
|
you should set a logical operator and, or between the conditions
|
|
36408
36440
|
the following operators are supported:
|
|
36409
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
36441
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like, not_like
|
|
36410
36442
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
36411
36443
|
note that you can not filter the results by relevance
|
|
36412
36444
|
example:
|
|
@@ -36531,7 +36563,7 @@ optional field
|
|
|
36531
36563
|
you can add several filters at once (8 filters maximum)
|
|
36532
36564
|
you should set a logical operator and, or between the conditions
|
|
36533
36565
|
the following operators are supported:
|
|
36534
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
36566
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like, not_like
|
|
36535
36567
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
36536
36568
|
note that you can not filter the results by relevance
|
|
36537
36569
|
example:
|
|
@@ -36589,6 +36621,28 @@ export interface IMonthlySearches {
|
|
|
36589
36621
|
search_volume?: number | undefined;
|
|
36590
36622
|
[key: string]: any;
|
|
36591
36623
|
}
|
|
36624
|
+
export declare class SearchVolumeTrend implements ISearchVolumeTrend {
|
|
36625
|
+
/** search volume change in percent compared to the previous month */
|
|
36626
|
+
monthly?: number | undefined;
|
|
36627
|
+
/** search volume change in percent compared to the previous quarter */
|
|
36628
|
+
quarterly?: number | undefined;
|
|
36629
|
+
/** search volume change in percent compared to the previous year */
|
|
36630
|
+
yearly?: number | undefined;
|
|
36631
|
+
[key: string]: any;
|
|
36632
|
+
constructor(data?: ISearchVolumeTrend);
|
|
36633
|
+
init(_data?: any): void;
|
|
36634
|
+
static fromJS(data: any): SearchVolumeTrend;
|
|
36635
|
+
toJSON(data?: any): any;
|
|
36636
|
+
}
|
|
36637
|
+
export interface ISearchVolumeTrend {
|
|
36638
|
+
/** search volume change in percent compared to the previous month */
|
|
36639
|
+
monthly?: number | undefined;
|
|
36640
|
+
/** search volume change in percent compared to the previous quarter */
|
|
36641
|
+
quarterly?: number | undefined;
|
|
36642
|
+
/** search volume change in percent compared to the previous year */
|
|
36643
|
+
yearly?: number | undefined;
|
|
36644
|
+
[key: string]: any;
|
|
36645
|
+
}
|
|
36592
36646
|
export declare class KeywordInfo implements IKeywordInfo {
|
|
36593
36647
|
/** search engine type */
|
|
36594
36648
|
se_type?: string | undefined;
|
|
@@ -36626,6 +36680,9 @@ you can download the full list of possible categories */
|
|
|
36626
36680
|
/** monthly searches
|
|
36627
36681
|
represents the (approximate) number of searches on this keyword idea (as available for the past twelve months), targeted to the specified geographic locations */
|
|
36628
36682
|
monthly_searches?: (MonthlySearches | undefined)[] | undefined;
|
|
36683
|
+
/** search volume trend changes
|
|
36684
|
+
represents search volume change in percent compared to the previous period */
|
|
36685
|
+
search_volume_trend?: SearchVolumeTrend | undefined;
|
|
36629
36686
|
[key: string]: any;
|
|
36630
36687
|
constructor(data?: IKeywordInfo);
|
|
36631
36688
|
init(_data?: any): void;
|
|
@@ -36669,6 +36726,9 @@ you can download the full list of possible categories */
|
|
|
36669
36726
|
/** monthly searches
|
|
36670
36727
|
represents the (approximate) number of searches on this keyword idea (as available for the past twelve months), targeted to the specified geographic locations */
|
|
36671
36728
|
monthly_searches?: (MonthlySearches | undefined)[] | undefined;
|
|
36729
|
+
/** search volume trend changes
|
|
36730
|
+
represents search volume change in percent compared to the previous period */
|
|
36731
|
+
search_volume_trend?: SearchVolumeTrend | undefined;
|
|
36672
36732
|
[key: string]: any;
|
|
36673
36733
|
}
|
|
36674
36734
|
export declare class KeywordInfoNormalizedWithInfo implements IKeywordInfoNormalizedWithInfo {
|
|
@@ -36677,6 +36737,9 @@ in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00” */
|
|
|
36677
36737
|
last_updated_time?: string | undefined;
|
|
36678
36738
|
/** monthly average clickstream search volume rate */
|
|
36679
36739
|
search_volume?: number | undefined;
|
|
36740
|
+
/** keyword info is normalized
|
|
36741
|
+
if true, values are normalized with Bing data */
|
|
36742
|
+
is_normalized?: boolean | undefined;
|
|
36680
36743
|
/** monthly clickstream search volume rates
|
|
36681
36744
|
array of objects with clickstream search volume rates in a certain month of a year */
|
|
36682
36745
|
monthly_searches?: (MonthlySearches | undefined)[] | undefined;
|
|
@@ -36692,6 +36755,9 @@ in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00” */
|
|
|
36692
36755
|
last_updated_time?: string | undefined;
|
|
36693
36756
|
/** monthly average clickstream search volume rate */
|
|
36694
36757
|
search_volume?: number | undefined;
|
|
36758
|
+
/** keyword info is normalized
|
|
36759
|
+
if true, values are normalized with Bing data */
|
|
36760
|
+
is_normalized?: boolean | undefined;
|
|
36695
36761
|
/** monthly clickstream search volume rates
|
|
36696
36762
|
array of objects with clickstream search volume rates in a certain month of a year */
|
|
36697
36763
|
monthly_searches?: (MonthlySearches | undefined)[] | undefined;
|
|
@@ -37282,7 +37348,7 @@ optional field
|
|
|
37282
37348
|
you can add several filters at once (8 filters maximum)
|
|
37283
37349
|
you should set a logical operator and, or between the conditions
|
|
37284
37350
|
the following operators are supported:
|
|
37285
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like,not_like
|
|
37351
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like,not_like
|
|
37286
37352
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
37287
37353
|
example:
|
|
37288
37354
|
["keyword_data.keyword_info.search_volume",">",0]
|
|
@@ -37419,7 +37485,7 @@ optional field
|
|
|
37419
37485
|
you can add several filters at once (8 filters maximum)
|
|
37420
37486
|
you should set a logical operator and, or between the conditions
|
|
37421
37487
|
the following operators are supported:
|
|
37422
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like,not_like
|
|
37488
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like,not_like
|
|
37423
37489
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
37424
37490
|
example:
|
|
37425
37491
|
["keyword_data.keyword_info.search_volume",">",0]
|
|
@@ -37502,9 +37568,7 @@ export declare class DataforseoLabsGoogleRelatedKeywordsLiveResultInfo implement
|
|
|
37502
37568
|
seed_keyword?: string | undefined;
|
|
37503
37569
|
/** keyword data for the seed keyword
|
|
37504
37570
|
fields in the array are identical to that of keyword_data */
|
|
37505
|
-
seed_keyword_data?:
|
|
37506
|
-
[key: string]: string;
|
|
37507
|
-
} | undefined;
|
|
37571
|
+
seed_keyword_data?: KeywordDataInfo | undefined;
|
|
37508
37572
|
/** location code in a POST array */
|
|
37509
37573
|
location_code?: number | undefined;
|
|
37510
37574
|
/** language code in a POST array */
|
|
@@ -37528,9 +37592,7 @@ export interface IDataforseoLabsGoogleRelatedKeywordsLiveResultInfo {
|
|
|
37528
37592
|
seed_keyword?: string | undefined;
|
|
37529
37593
|
/** keyword data for the seed keyword
|
|
37530
37594
|
fields in the array are identical to that of keyword_data */
|
|
37531
|
-
seed_keyword_data?:
|
|
37532
|
-
[key: string]: string;
|
|
37533
|
-
} | undefined;
|
|
37595
|
+
seed_keyword_data?: KeywordDataInfo | undefined;
|
|
37534
37596
|
/** location code in a POST array */
|
|
37535
37597
|
location_code?: number | undefined;
|
|
37536
37598
|
/** language code in a POST array */
|
|
@@ -37646,7 +37708,7 @@ optional field
|
|
|
37646
37708
|
you can add several filters at once (8 filters maximum)
|
|
37647
37709
|
you should set a logical operator and, or between the conditions
|
|
37648
37710
|
the following operators are supported:
|
|
37649
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
37711
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like, not_like
|
|
37650
37712
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
37651
37713
|
example:
|
|
37652
37714
|
["keyword_info.search_volume",">",0]
|
|
@@ -37780,7 +37842,7 @@ optional field
|
|
|
37780
37842
|
you can add several filters at once (8 filters maximum)
|
|
37781
37843
|
you should set a logical operator and, or between the conditions
|
|
37782
37844
|
the following operators are supported:
|
|
37783
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
37845
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like, not_like
|
|
37784
37846
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
37785
37847
|
example:
|
|
37786
37848
|
["keyword_info.search_volume",">",0]
|
|
@@ -37842,12 +37904,12 @@ export declare class DataforseoLabsGoogleKeywordSuggestionsLiveResultInfo implem
|
|
|
37842
37904
|
seed_keyword?: string | undefined;
|
|
37843
37905
|
/** keyword data for the seed keyword
|
|
37844
37906
|
fields in this object are identical to those of the items array */
|
|
37845
|
-
seed_keyword_data?:
|
|
37846
|
-
|
|
37847
|
-
|
|
37848
|
-
/** location code in a POST array */
|
|
37907
|
+
seed_keyword_data?: KeywordDataInfo | undefined;
|
|
37908
|
+
/** location code in a POST array
|
|
37909
|
+
if there is no data, then the value is null */
|
|
37849
37910
|
location_code?: number | undefined;
|
|
37850
|
-
/** language code in a POST array
|
|
37911
|
+
/** language code in a POST array
|
|
37912
|
+
if there is no data, then the value is null */
|
|
37851
37913
|
language_code?: string | undefined;
|
|
37852
37914
|
/** total amount of results in our database relevant to your request */
|
|
37853
37915
|
total_count?: number | undefined;
|
|
@@ -37874,12 +37936,12 @@ export interface IDataforseoLabsGoogleKeywordSuggestionsLiveResultInfo {
|
|
|
37874
37936
|
seed_keyword?: string | undefined;
|
|
37875
37937
|
/** keyword data for the seed keyword
|
|
37876
37938
|
fields in this object are identical to those of the items array */
|
|
37877
|
-
seed_keyword_data?:
|
|
37878
|
-
|
|
37879
|
-
|
|
37880
|
-
/** location code in a POST array */
|
|
37939
|
+
seed_keyword_data?: KeywordDataInfo | undefined;
|
|
37940
|
+
/** location code in a POST array
|
|
37941
|
+
if there is no data, then the value is null */
|
|
37881
37942
|
location_code?: number | undefined;
|
|
37882
|
-
/** language code in a POST array
|
|
37943
|
+
/** language code in a POST array
|
|
37944
|
+
if there is no data, then the value is null */
|
|
37883
37945
|
language_code?: string | undefined;
|
|
37884
37946
|
/** total amount of results in our database relevant to your request */
|
|
37885
37947
|
total_count?: number | undefined;
|
|
@@ -38011,7 +38073,7 @@ optional field
|
|
|
38011
38073
|
you can add several filters at once (8 filters maximum)
|
|
38012
38074
|
you should set a logical operator and, or between the conditions
|
|
38013
38075
|
the following operators are supported:
|
|
38014
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
38076
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like, not_like
|
|
38015
38077
|
you can use the % operator with like and not_like,as well as ilike, not_ilike to match any string of zero or more characters
|
|
38016
38078
|
note that you can not filter the results by relevance
|
|
38017
38079
|
example:
|
|
@@ -38143,7 +38205,7 @@ optional field
|
|
|
38143
38205
|
you can add several filters at once (8 filters maximum)
|
|
38144
38206
|
you should set a logical operator and, or between the conditions
|
|
38145
38207
|
the following operators are supported:
|
|
38146
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
38208
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like, not_like
|
|
38147
38209
|
you can use the % operator with like and not_like,as well as ilike, not_ilike to match any string of zero or more characters
|
|
38148
38210
|
note that you can not filter the results by relevance
|
|
38149
38211
|
example:
|
|
@@ -38752,6 +38814,7 @@ Malay, ms,
|
|
|
38752
38814
|
Norwegian(Bokmål), nb,
|
|
38753
38815
|
Polish, pl,
|
|
38754
38816
|
Portuguese, pt,
|
|
38817
|
+
Romanian, ro,
|
|
38755
38818
|
Russian, ru,
|
|
38756
38819
|
Spanish, es,
|
|
38757
38820
|
Swedish, sv,
|
|
@@ -38811,6 +38874,7 @@ Malay, ms,
|
|
|
38811
38874
|
Norwegian(Bokmål), nb,
|
|
38812
38875
|
Polish, pl,
|
|
38813
38876
|
Portuguese, pt,
|
|
38877
|
+
Romanian, ro,
|
|
38814
38878
|
Russian, ru,
|
|
38815
38879
|
Spanish, es,
|
|
38816
38880
|
Swedish, sv,
|
|
@@ -39667,7 +39731,7 @@ optional field
|
|
|
39667
39731
|
you can add several filters at once (8 filters maximum)
|
|
39668
39732
|
you should set a logical operator and, or between the conditions
|
|
39669
39733
|
the following operators are supported:
|
|
39670
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
39734
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like, not_like
|
|
39671
39735
|
you can use the % operator with like and not_like,as well as ilike, not_ilike to match any string of zero or more characters
|
|
39672
39736
|
example:
|
|
39673
39737
|
["keyword_info.search_volume",">",0]
|
|
@@ -39793,7 +39857,7 @@ optional field
|
|
|
39793
39857
|
you can add several filters at once (8 filters maximum)
|
|
39794
39858
|
you should set a logical operator and, or between the conditions
|
|
39795
39859
|
the following operators are supported:
|
|
39796
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
39860
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like, not_like
|
|
39797
39861
|
you can use the % operator with like and not_like,as well as ilike, not_ilike to match any string of zero or more characters
|
|
39798
39862
|
example:
|
|
39799
39863
|
["keyword_info.search_volume",">",0]
|
|
@@ -40021,7 +40085,7 @@ optional field
|
|
|
40021
40085
|
you can add several filters at once (8 filters maximum);
|
|
40022
40086
|
you should set a logical operator and, or between the conditions
|
|
40023
40087
|
the following operators are supported:
|
|
40024
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like;
|
|
40088
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like, not_like;
|
|
40025
40089
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters;
|
|
40026
40090
|
example:
|
|
40027
40091
|
["metrics_history.202110.organic.pos_1", ">", 15];
|
|
@@ -40166,7 +40230,7 @@ optional field
|
|
|
40166
40230
|
you can add several filters at once (8 filters maximum);
|
|
40167
40231
|
you should set a logical operator and, or between the conditions
|
|
40168
40232
|
the following operators are supported:
|
|
40169
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like;
|
|
40233
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like, not_like;
|
|
40170
40234
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters;
|
|
40171
40235
|
example:
|
|
40172
40236
|
["metrics_history.202110.organic.pos_1", ">", 15];
|
|
@@ -40384,7 +40448,7 @@ optional field
|
|
|
40384
40448
|
you can add several filters at once (8 filters maximum)
|
|
40385
40449
|
you should set a logical operator and, or between the conditions
|
|
40386
40450
|
the following operators are supported:
|
|
40387
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like,not_like
|
|
40451
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like,not_like
|
|
40388
40452
|
you can use the % operator with like and not_like,as well as ilike and not_ilike to match any string of zero or more characters
|
|
40389
40453
|
example:
|
|
40390
40454
|
["keyword_info.search_volume",">",0]
|
|
@@ -40500,7 +40564,7 @@ optional field
|
|
|
40500
40564
|
you can add several filters at once (8 filters maximum)
|
|
40501
40565
|
you should set a logical operator and, or between the conditions
|
|
40502
40566
|
the following operators are supported:
|
|
40503
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like,not_like
|
|
40567
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like,not_like
|
|
40504
40568
|
you can use the % operator with like and not_like,as well as ilike and not_ilike to match any string of zero or more characters
|
|
40505
40569
|
example:
|
|
40506
40570
|
["keyword_info.search_volume",">",0]
|
|
@@ -40992,7 +41056,7 @@ optional field
|
|
|
40992
41056
|
you can add several filters at once (8 filters maximum)
|
|
40993
41057
|
you should set a logical operator and, or between the conditions
|
|
40994
41058
|
the following operators are supported:
|
|
40995
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
41059
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like, not_like
|
|
40996
41060
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
40997
41061
|
example:
|
|
40998
41062
|
["ranked_serp_element.serp_item.rank_group","<=",10]
|
|
@@ -41002,7 +41066,7 @@ example:
|
|
|
41002
41066
|
[["keyword_data.keyword_info.search_volume","<>",0],
|
|
41003
41067
|
"and",
|
|
41004
41068
|
[["ranked_serp_element.serp_item.type","<>","paid"],"or",["ranked_serp_element.serp_item.is_malicious","=",false]]]
|
|
41005
|
-
if you want to get the keywords a particular webpage ranks for,
|
|
41069
|
+
if you want to get the keywords a particular webpage ranks for, you can use a target field or filter by the ranked_serp_element.serp_item.relative_url parameter
|
|
41006
41070
|
example:
|
|
41007
41071
|
["ranked_serp_element.serp_item.relative_url", "=", "/apis/rank-tracker-api"]
|
|
41008
41072
|
for more information about filters, please refer to Dataforseo Labs – Filters or this help center guide */
|
|
@@ -41128,7 +41192,7 @@ optional field
|
|
|
41128
41192
|
you can add several filters at once (8 filters maximum)
|
|
41129
41193
|
you should set a logical operator and, or between the conditions
|
|
41130
41194
|
the following operators are supported:
|
|
41131
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
41195
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like, not_like
|
|
41132
41196
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
41133
41197
|
example:
|
|
41134
41198
|
["ranked_serp_element.serp_item.rank_group","<=",10]
|
|
@@ -41138,7 +41202,7 @@ example:
|
|
|
41138
41202
|
[["keyword_data.keyword_info.search_volume","<>",0],
|
|
41139
41203
|
"and",
|
|
41140
41204
|
[["ranked_serp_element.serp_item.type","<>","paid"],"or",["ranked_serp_element.serp_item.is_malicious","=",false]]]
|
|
41141
|
-
if you want to get the keywords a particular webpage ranks for,
|
|
41205
|
+
if you want to get the keywords a particular webpage ranks for, you can use a target field or filter by the ranked_serp_element.serp_item.relative_url parameter
|
|
41142
41206
|
example:
|
|
41143
41207
|
["ranked_serp_element.serp_item.relative_url", "=", "/apis/rank-tracker-api"]
|
|
41144
41208
|
for more information about filters, please refer to Dataforseo Labs – Filters or this help center guide */
|
|
@@ -41646,7 +41710,7 @@ optional field
|
|
|
41646
41710
|
you can add several filters at once (8 filters maximum)
|
|
41647
41711
|
you should set a logical operator and, or between the conditions
|
|
41648
41712
|
the following operators are supported:
|
|
41649
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
41713
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like, not_like
|
|
41650
41714
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
41651
41715
|
example:
|
|
41652
41716
|
["median_position","in",[1,10]]
|
|
@@ -41753,7 +41817,7 @@ optional field
|
|
|
41753
41817
|
you can add several filters at once (8 filters maximum)
|
|
41754
41818
|
you should set a logical operator and, or between the conditions
|
|
41755
41819
|
the following operators are supported:
|
|
41756
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
41820
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like, not_like
|
|
41757
41821
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
41758
41822
|
example:
|
|
41759
41823
|
["median_position","in",[1,10]]
|
|
@@ -42067,6 +42131,11 @@ to improve the accuracy of the result, you can specify domains that are known to
|
|
|
42067
42131
|
if you use this array, metrics in the result will be based on SERPs where both target website and intersecting_domains appear;
|
|
42068
42132
|
Note: you can specify up to 20 domains in this array */
|
|
42069
42133
|
intersecting_domains?: string[] | undefined;
|
|
42134
|
+
/** ignore highly similar keywords
|
|
42135
|
+
optional field
|
|
42136
|
+
if set to true, only core keywords will be returned, all highly similar keywords will be excluded;
|
|
42137
|
+
default value: false */
|
|
42138
|
+
ignore_synonyms?: boolean | undefined;
|
|
42070
42139
|
/** user-defined task identifier
|
|
42071
42140
|
optional field
|
|
42072
42141
|
the character limit is 255
|
|
@@ -42207,6 +42276,11 @@ to improve the accuracy of the result, you can specify domains that are known to
|
|
|
42207
42276
|
if you use this array, metrics in the result will be based on SERPs where both target website and intersecting_domains appear;
|
|
42208
42277
|
Note: you can specify up to 20 domains in this array */
|
|
42209
42278
|
intersecting_domains?: string[] | undefined;
|
|
42279
|
+
/** ignore highly similar keywords
|
|
42280
|
+
optional field
|
|
42281
|
+
if set to true, only core keywords will be returned, all highly similar keywords will be excluded;
|
|
42282
|
+
default value: false */
|
|
42283
|
+
ignore_synonyms?: boolean | undefined;
|
|
42210
42284
|
/** user-defined task identifier
|
|
42211
42285
|
optional field
|
|
42212
42286
|
the character limit is 255
|
|
@@ -42439,7 +42513,7 @@ optional field
|
|
|
42439
42513
|
you can add several filters at once (8 filters maximum)
|
|
42440
42514
|
you should set a logical operator and, or between the conditions
|
|
42441
42515
|
the following operators are supported:
|
|
42442
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
42516
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like, not_like
|
|
42443
42517
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
42444
42518
|
example:
|
|
42445
42519
|
["keyword_data.keyword_info.search_volume","in",[100,1000]]
|
|
@@ -42565,7 +42639,7 @@ optional field
|
|
|
42565
42639
|
you can add several filters at once (8 filters maximum)
|
|
42566
42640
|
you should set a logical operator and, or between the conditions
|
|
42567
42641
|
the following operators are supported:
|
|
42568
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
42642
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like, not_like
|
|
42569
42643
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
42570
42644
|
example:
|
|
42571
42645
|
["keyword_data.keyword_info.search_volume","in",[100,1000]]
|
|
@@ -42768,6 +42842,11 @@ lost — return metrics for SERPs in which the specified target had previously h
|
|
|
42768
42842
|
all — return metrics for both types of SERPs.
|
|
42769
42843
|
default value: live */
|
|
42770
42844
|
historical_serp_mode?: string | undefined;
|
|
42845
|
+
/** ignore highly similar keywords
|
|
42846
|
+
optional field
|
|
42847
|
+
if set to true, only core keywords will be returned, all highly similar keywords will be excluded;
|
|
42848
|
+
default value: false */
|
|
42849
|
+
ignore_synonyms?: boolean | undefined;
|
|
42771
42850
|
/** array of results filtering parameters
|
|
42772
42851
|
optional field
|
|
42773
42852
|
you can add several filters at once (8 filters maximum)
|
|
@@ -42888,6 +42967,11 @@ lost — return metrics for SERPs in which the specified target had previously h
|
|
|
42888
42967
|
all — return metrics for both types of SERPs.
|
|
42889
42968
|
default value: live */
|
|
42890
42969
|
historical_serp_mode?: string | undefined;
|
|
42970
|
+
/** ignore highly similar keywords
|
|
42971
|
+
optional field
|
|
42972
|
+
if set to true, only core keywords will be returned, all highly similar keywords will be excluded;
|
|
42973
|
+
default value: false */
|
|
42974
|
+
ignore_synonyms?: boolean | undefined;
|
|
42891
42975
|
/** array of results filtering parameters
|
|
42892
42976
|
optional field
|
|
42893
42977
|
you can add several filters at once (8 filters maximum)
|
|
@@ -43106,6 +43190,11 @@ lost — return metrics for SERPs in which the specified target had previously h
|
|
|
43106
43190
|
all — return metrics for both types of SERPs.
|
|
43107
43191
|
default value: live */
|
|
43108
43192
|
historical_serp_mode?: string | undefined;
|
|
43193
|
+
/** ignore highly similar keywords
|
|
43194
|
+
optional field
|
|
43195
|
+
if set to true, only core keywords will be returned, all highly similar keywords will be excluded;
|
|
43196
|
+
default value: false */
|
|
43197
|
+
ignore_synonyms?: boolean | undefined;
|
|
43109
43198
|
/** array of results filtering parameters
|
|
43110
43199
|
optional field
|
|
43111
43200
|
you can add several filters at once (8 filters maximum)
|
|
@@ -43226,6 +43315,11 @@ lost — return metrics for SERPs in which the specified target had previously h
|
|
|
43226
43315
|
all — return metrics for both types of SERPs.
|
|
43227
43316
|
default value: live */
|
|
43228
43317
|
historical_serp_mode?: string | undefined;
|
|
43318
|
+
/** ignore highly similar keywords
|
|
43319
|
+
optional field
|
|
43320
|
+
if set to true, only core keywords will be returned, all highly similar keywords will be excluded;
|
|
43321
|
+
default value: false */
|
|
43322
|
+
ignore_synonyms?: boolean | undefined;
|
|
43229
43323
|
/** array of results filtering parameters
|
|
43230
43324
|
optional field
|
|
43231
43325
|
you can add several filters at once (8 filters maximum)
|
|
@@ -43731,6 +43825,32 @@ export interface IPeopleAlsoAskDataforseoLabsSerpElementItem extends IBaseDatafo
|
|
|
43731
43825
|
items?: (PeopleAlsoAskElement | undefined)[] | undefined;
|
|
43732
43826
|
[key: string]: any;
|
|
43733
43827
|
}
|
|
43828
|
+
export declare class TwitterDataforseoLabsSerpElementItem extends BaseDataforseoLabsSerpElementItem implements ITwitterDataforseoLabsSerpElementItem {
|
|
43829
|
+
/** search engine type */
|
|
43830
|
+
se_type?: string | undefined;
|
|
43831
|
+
/** title of the result in SERP */
|
|
43832
|
+
title?: string | undefined;
|
|
43833
|
+
/** relevant URL of the Ad element in SERP */
|
|
43834
|
+
url?: string | undefined;
|
|
43835
|
+
/** elements of search results found in SERP */
|
|
43836
|
+
items?: (TwitterElement | undefined)[] | undefined;
|
|
43837
|
+
[key: string]: any;
|
|
43838
|
+
constructor(data?: ITwitterDataforseoLabsSerpElementItem);
|
|
43839
|
+
init(_data?: any): void;
|
|
43840
|
+
static fromJS(data: any): TwitterDataforseoLabsSerpElementItem;
|
|
43841
|
+
toJSON(data?: any): any;
|
|
43842
|
+
}
|
|
43843
|
+
export interface ITwitterDataforseoLabsSerpElementItem extends IBaseDataforseoLabsSerpElementItem {
|
|
43844
|
+
/** search engine type */
|
|
43845
|
+
se_type?: string | undefined;
|
|
43846
|
+
/** title of the result in SERP */
|
|
43847
|
+
title?: string | undefined;
|
|
43848
|
+
/** relevant URL of the Ad element in SERP */
|
|
43849
|
+
url?: string | undefined;
|
|
43850
|
+
/** elements of search results found in SERP */
|
|
43851
|
+
items?: (TwitterElement | undefined)[] | undefined;
|
|
43852
|
+
[key: string]: any;
|
|
43853
|
+
}
|
|
43734
43854
|
export declare class RelatedSearchesDataforseoLabsSerpElementItem extends BaseDataforseoLabsSerpElementItem implements IRelatedSearchesDataforseoLabsSerpElementItem {
|
|
43735
43855
|
/** search engine type */
|
|
43736
43856
|
se_type?: string | undefined;
|
|
@@ -43999,32 +44119,6 @@ learn more about how the metric is calculated in this help center article https:
|
|
|
43999
44119
|
clickstream_etv?: number | undefined;
|
|
44000
44120
|
[key: string]: any;
|
|
44001
44121
|
}
|
|
44002
|
-
export declare class TwitterDataforseoLabsSerpElementItem extends BaseDataforseoLabsSerpElementItem implements ITwitterDataforseoLabsSerpElementItem {
|
|
44003
|
-
/** search engine type */
|
|
44004
|
-
se_type?: string | undefined;
|
|
44005
|
-
/** title of the result in SERP */
|
|
44006
|
-
title?: string | undefined;
|
|
44007
|
-
/** relevant URL of the Ad element in SERP */
|
|
44008
|
-
url?: string | undefined;
|
|
44009
|
-
/** elements of search results found in SERP */
|
|
44010
|
-
items?: (TwitterElement | undefined)[] | undefined;
|
|
44011
|
-
[key: string]: any;
|
|
44012
|
-
constructor(data?: ITwitterDataforseoLabsSerpElementItem);
|
|
44013
|
-
init(_data?: any): void;
|
|
44014
|
-
static fromJS(data: any): TwitterDataforseoLabsSerpElementItem;
|
|
44015
|
-
toJSON(data?: any): any;
|
|
44016
|
-
}
|
|
44017
|
-
export interface ITwitterDataforseoLabsSerpElementItem extends IBaseDataforseoLabsSerpElementItem {
|
|
44018
|
-
/** search engine type */
|
|
44019
|
-
se_type?: string | undefined;
|
|
44020
|
-
/** title of the result in SERP */
|
|
44021
|
-
title?: string | undefined;
|
|
44022
|
-
/** relevant URL of the Ad element in SERP */
|
|
44023
|
-
url?: string | undefined;
|
|
44024
|
-
/** elements of search results found in SERP */
|
|
44025
|
-
items?: (TwitterElement | undefined)[] | undefined;
|
|
44026
|
-
[key: string]: any;
|
|
44027
|
-
}
|
|
44028
44122
|
export declare class VideoDataforseoLabsSerpElementItem extends BaseDataforseoLabsSerpElementItem implements IVideoDataforseoLabsSerpElementItem {
|
|
44029
44123
|
/** search engine type */
|
|
44030
44124
|
se_type?: string | undefined;
|
|
@@ -44075,6 +44169,28 @@ if there are none, equals null */
|
|
|
44075
44169
|
related_image_searches?: RelatedImageSearchesElement | undefined;
|
|
44076
44170
|
[key: string]: any;
|
|
44077
44171
|
}
|
|
44172
|
+
export declare class PeopleAlsoSearchDataforseoLabsSerpElementItem extends BaseDataforseoLabsSerpElementItem implements IPeopleAlsoSearchDataforseoLabsSerpElementItem {
|
|
44173
|
+
/** search engine type */
|
|
44174
|
+
se_type?: string | undefined;
|
|
44175
|
+
/** title of the result in SERP */
|
|
44176
|
+
title?: string | undefined;
|
|
44177
|
+
/** elements of search results found in SERP */
|
|
44178
|
+
items?: (string | undefined)[] | undefined;
|
|
44179
|
+
[key: string]: any;
|
|
44180
|
+
constructor(data?: IPeopleAlsoSearchDataforseoLabsSerpElementItem);
|
|
44181
|
+
init(_data?: any): void;
|
|
44182
|
+
static fromJS(data: any): PeopleAlsoSearchDataforseoLabsSerpElementItem;
|
|
44183
|
+
toJSON(data?: any): any;
|
|
44184
|
+
}
|
|
44185
|
+
export interface IPeopleAlsoSearchDataforseoLabsSerpElementItem extends IBaseDataforseoLabsSerpElementItem {
|
|
44186
|
+
/** search engine type */
|
|
44187
|
+
se_type?: string | undefined;
|
|
44188
|
+
/** title of the result in SERP */
|
|
44189
|
+
title?: string | undefined;
|
|
44190
|
+
/** elements of search results found in SERP */
|
|
44191
|
+
items?: (string | undefined)[] | undefined;
|
|
44192
|
+
[key: string]: any;
|
|
44193
|
+
}
|
|
44078
44194
|
export declare class DataforseoLabsGoogleHistoricalSerpsLiveResultInfo implements IDataforseoLabsGoogleHistoricalSerpsLiveResultInfo {
|
|
44079
44195
|
/** search engine type */
|
|
44080
44196
|
se_type?: string | undefined;
|
|
@@ -44235,24 +44351,6 @@ if there are none, equals null */
|
|
|
44235
44351
|
links?: (LinkElement | undefined)[] | undefined;
|
|
44236
44352
|
[key: string]: any;
|
|
44237
44353
|
}
|
|
44238
|
-
export declare class PeopleAlsoSearchDataforseoLabsSerpElementItem extends BaseDataforseoLabsSerpElementItem implements IPeopleAlsoSearchDataforseoLabsSerpElementItem {
|
|
44239
|
-
/** title of the result in SERP */
|
|
44240
|
-
title?: string | undefined;
|
|
44241
|
-
/** elements of search results found in SERP */
|
|
44242
|
-
items?: (string | undefined)[] | undefined;
|
|
44243
|
-
[key: string]: any;
|
|
44244
|
-
constructor(data?: IPeopleAlsoSearchDataforseoLabsSerpElementItem);
|
|
44245
|
-
init(_data?: any): void;
|
|
44246
|
-
static fromJS(data: any): PeopleAlsoSearchDataforseoLabsSerpElementItem;
|
|
44247
|
-
toJSON(data?: any): any;
|
|
44248
|
-
}
|
|
44249
|
-
export interface IPeopleAlsoSearchDataforseoLabsSerpElementItem extends IBaseDataforseoLabsSerpElementItem {
|
|
44250
|
-
/** title of the result in SERP */
|
|
44251
|
-
title?: string | undefined;
|
|
44252
|
-
/** elements of search results found in SERP */
|
|
44253
|
-
items?: (string | undefined)[] | undefined;
|
|
44254
|
-
[key: string]: any;
|
|
44255
|
-
}
|
|
44256
44354
|
export declare class MapDataforseoLabsSerpElementItem extends BaseDataforseoLabsSerpElementItem implements IMapDataforseoLabsSerpElementItem {
|
|
44257
44355
|
/** title of the result in SERP */
|
|
44258
44356
|
title?: string | undefined;
|
|
@@ -44395,10 +44493,6 @@ calculated as the product of click-through-rate and clickstream search volume va
|
|
|
44395
44493
|
to retrieve results for this field, the parameter include_clickstream_data must be set to true
|
|
44396
44494
|
learn more about how the metric is calculated in this help center article https://dataforseo.com/help-center/whats-clickstream-estimated-traffic-volume-and-how-is-it-calculated */
|
|
44397
44495
|
clickstream_etv?: number | undefined;
|
|
44398
|
-
/** search engine type */
|
|
44399
|
-
se_type?: string | undefined;
|
|
44400
|
-
backlinks_info?: BacklinksInfo | undefined;
|
|
44401
|
-
rank_info?: RankInfo | undefined;
|
|
44402
44496
|
[key: string]: any;
|
|
44403
44497
|
constructor(data?: ILocalPackDataforseoLabsSerpElementItem);
|
|
44404
44498
|
init(_data?: any): void;
|
|
@@ -44449,10 +44543,6 @@ calculated as the product of click-through-rate and clickstream search volume va
|
|
|
44449
44543
|
to retrieve results for this field, the parameter include_clickstream_data must be set to true
|
|
44450
44544
|
learn more about how the metric is calculated in this help center article https://dataforseo.com/help-center/whats-clickstream-estimated-traffic-volume-and-how-is-it-calculated */
|
|
44451
44545
|
clickstream_etv?: number | undefined;
|
|
44452
|
-
/** search engine type */
|
|
44453
|
-
se_type?: string | undefined;
|
|
44454
|
-
backlinks_info?: BacklinksInfo | undefined;
|
|
44455
|
-
rank_info?: RankInfo | undefined;
|
|
44456
44546
|
[key: string]: any;
|
|
44457
44547
|
}
|
|
44458
44548
|
export declare class HotelsPackDataforseoLabsSerpElementItem extends BaseDataforseoLabsSerpElementItem implements IHotelsPackDataforseoLabsSerpElementItem {
|
|
@@ -45513,7 +45603,7 @@ optional field
|
|
|
45513
45603
|
you can add several filters at once (8 filters maximum)
|
|
45514
45604
|
you should set a logical operator and, or between the conditions
|
|
45515
45605
|
the following operators are supported:
|
|
45516
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
45606
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like, match, not_match
|
|
45517
45607
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
45518
45608
|
note that if you want to filter by any field in the intersection_result array you need to specify the number of corresponding page
|
|
45519
45609
|
for instance, if you want to filter results by the ranking of the first specified URL, you should set the following filter:
|
|
@@ -45678,7 +45768,7 @@ optional field
|
|
|
45678
45768
|
you can add several filters at once (8 filters maximum)
|
|
45679
45769
|
you should set a logical operator and, or between the conditions
|
|
45680
45770
|
the following operators are supported:
|
|
45681
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
45771
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like, match, not_match
|
|
45682
45772
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
45683
45773
|
note that if you want to filter by any field in the intersection_result array you need to specify the number of corresponding page
|
|
45684
45774
|
for instance, if you want to filter results by the ranking of the first specified URL, you should set the following filter:
|
|
@@ -45870,6 +45960,11 @@ possible values:
|
|
|
45870
45960
|
default value:
|
|
45871
45961
|
["organic", "paid"] */
|
|
45872
45962
|
item_types?: string[] | undefined;
|
|
45963
|
+
/** ignore highly similar keywords
|
|
45964
|
+
optional field
|
|
45965
|
+
if set to true, only core keywords will be returned, all highly similar keywords will be excluded;
|
|
45966
|
+
default value: false */
|
|
45967
|
+
ignore_synonyms?: boolean | undefined;
|
|
45873
45968
|
/** user-defined task identifier
|
|
45874
45969
|
optional field
|
|
45875
45970
|
the character limit is 255
|
|
@@ -45931,6 +46026,11 @@ possible values:
|
|
|
45931
46026
|
default value:
|
|
45932
46027
|
["organic", "paid"] */
|
|
45933
46028
|
item_types?: string[] | undefined;
|
|
46029
|
+
/** ignore highly similar keywords
|
|
46030
|
+
optional field
|
|
46031
|
+
if set to true, only core keywords will be returned, all highly similar keywords will be excluded;
|
|
46032
|
+
default value: false */
|
|
46033
|
+
ignore_synonyms?: boolean | undefined;
|
|
45934
46034
|
/** user-defined task identifier
|
|
45935
46035
|
optional field
|
|
45936
46036
|
the character limit is 255
|
|
@@ -46119,7 +46219,7 @@ example:
|
|
|
46119
46219
|
date_to?: string | undefined;
|
|
46120
46220
|
/** ignore highly similar keywords
|
|
46121
46221
|
optional field
|
|
46122
|
-
if set to true only core keywords will be returned, all highly similar keywords will be excluded;
|
|
46222
|
+
if set to true, only core keywords will be returned, all highly similar keywords will be excluded;
|
|
46123
46223
|
default value: false */
|
|
46124
46224
|
ignore_synonyms?: boolean | undefined;
|
|
46125
46225
|
/** display results by item type
|
|
@@ -46197,7 +46297,7 @@ example:
|
|
|
46197
46297
|
date_to?: string | undefined;
|
|
46198
46298
|
/** ignore highly similar keywords
|
|
46199
46299
|
optional field
|
|
46200
|
-
if set to true only core keywords will be returned, all highly similar keywords will be excluded;
|
|
46300
|
+
if set to true, only core keywords will be returned, all highly similar keywords will be excluded;
|
|
46201
46301
|
default value: false */
|
|
46202
46302
|
ignore_synonyms?: boolean | undefined;
|
|
46203
46303
|
/** display results by item type
|
|
@@ -46906,7 +47006,7 @@ optional field
|
|
|
46906
47006
|
you can add several filters at once (8 filters maximum)
|
|
46907
47007
|
you should set a logical operator and, or between the conditions
|
|
46908
47008
|
the following operators are supported:
|
|
46909
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like, not_like
|
|
47009
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like, not_like, match, not_match
|
|
46910
47010
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
46911
47011
|
example:
|
|
46912
47012
|
["keyword_data.keyword_info.search_volume","in",[100,1000]];
|
|
@@ -46996,7 +47096,7 @@ optional field
|
|
|
46996
47096
|
you can add several filters at once (8 filters maximum)
|
|
46997
47097
|
you should set a logical operator and, or between the conditions
|
|
46998
47098
|
the following operators are supported:
|
|
46999
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like, not_like
|
|
47099
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like, not_like, match, not_match
|
|
47000
47100
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
47001
47101
|
example:
|
|
47002
47102
|
["keyword_data.keyword_info.search_volume","in",[100,1000]];
|
|
@@ -47589,7 +47689,7 @@ optional field
|
|
|
47589
47689
|
you can add several filters at once (8 filters maximum)
|
|
47590
47690
|
you should set a logical operator and, or between the conditions
|
|
47591
47691
|
the following operators are supported:
|
|
47592
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
47692
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like, match, not_match
|
|
47593
47693
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
47594
47694
|
example:
|
|
47595
47695
|
["full_metrics.amazon_serp.pos_1",">", 20]
|
|
@@ -47674,7 +47774,7 @@ optional field
|
|
|
47674
47774
|
you can add several filters at once (8 filters maximum)
|
|
47675
47775
|
you should set a logical operator and, or between the conditions
|
|
47676
47776
|
the following operators are supported:
|
|
47677
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
47777
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like, match, not_match
|
|
47678
47778
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
47679
47779
|
example:
|
|
47680
47780
|
["full_metrics.amazon_serp.pos_1",">", 20]
|
|
@@ -47895,7 +47995,7 @@ optional field
|
|
|
47895
47995
|
you can add several filters at once (8 filters maximum)
|
|
47896
47996
|
you should set a logical operator and, or between the conditions
|
|
47897
47997
|
the following operators are supported:
|
|
47898
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
47998
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like, match, not_match
|
|
47899
47999
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
47900
48000
|
example:
|
|
47901
48001
|
["avg_position","<", 10]
|
|
@@ -47994,7 +48094,7 @@ optional field
|
|
|
47994
48094
|
you can add several filters at once (8 filters maximum)
|
|
47995
48095
|
you should set a logical operator and, or between the conditions
|
|
47996
48096
|
the following operators are supported:
|
|
47997
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
48097
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like, match, not_match
|
|
47998
48098
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
47999
48099
|
example:
|
|
48000
48100
|
["avg_position","<", 10]
|
|
@@ -48338,6 +48438,11 @@ possible values:
|
|
|
48338
48438
|
default value:
|
|
48339
48439
|
["organic", "paid"] */
|
|
48340
48440
|
item_types?: string[] | undefined;
|
|
48441
|
+
/** ignore highly similar keywords
|
|
48442
|
+
optional field
|
|
48443
|
+
if set to true, only core keywords will be returned, all highly similar keywords will be excluded;
|
|
48444
|
+
default value: false */
|
|
48445
|
+
ignore_synonyms?: boolean | undefined;
|
|
48341
48446
|
/** user-defined task identifier
|
|
48342
48447
|
optional field
|
|
48343
48448
|
the character limit is 255
|
|
@@ -48397,6 +48502,11 @@ possible values:
|
|
|
48397
48502
|
default value:
|
|
48398
48503
|
["organic", "paid"] */
|
|
48399
48504
|
item_types?: string[] | undefined;
|
|
48505
|
+
/** ignore highly similar keywords
|
|
48506
|
+
optional field
|
|
48507
|
+
if set to true, only core keywords will be returned, all highly similar keywords will be excluded;
|
|
48508
|
+
default value: false */
|
|
48509
|
+
ignore_synonyms?: boolean | undefined;
|
|
48400
48510
|
/** user-defined task identifier
|
|
48401
48511
|
optional field
|
|
48402
48512
|
the character limit is 255
|
|
@@ -48594,6 +48704,11 @@ to improve the accuracy of the result, you can specify domains that are known to
|
|
|
48594
48704
|
if you use this array, metrics in the result will be based on SERPs where both target website and intersecting_domains appear;
|
|
48595
48705
|
Note: you can specify up to 20 domains in this array */
|
|
48596
48706
|
intersecting_domains?: string[] | undefined;
|
|
48707
|
+
/** ignore highly similar keywords
|
|
48708
|
+
optional field
|
|
48709
|
+
if set to true, only core keywords will be returned, all highly similar keywords will be excluded;
|
|
48710
|
+
default value: false */
|
|
48711
|
+
ignore_synonyms?: boolean | undefined;
|
|
48597
48712
|
/** user-defined task identifier
|
|
48598
48713
|
optional field
|
|
48599
48714
|
the character limit is 255
|
|
@@ -48729,6 +48844,11 @@ to improve the accuracy of the result, you can specify domains that are known to
|
|
|
48729
48844
|
if you use this array, metrics in the result will be based on SERPs where both target website and intersecting_domains appear;
|
|
48730
48845
|
Note: you can specify up to 20 domains in this array */
|
|
48731
48846
|
intersecting_domains?: string[] | undefined;
|
|
48847
|
+
/** ignore highly similar keywords
|
|
48848
|
+
optional field
|
|
48849
|
+
if set to true, only core keywords will be returned, all highly similar keywords will be excluded;
|
|
48850
|
+
default value: false */
|
|
48851
|
+
ignore_synonyms?: boolean | undefined;
|
|
48732
48852
|
/** user-defined task identifier
|
|
48733
48853
|
optional field
|
|
48734
48854
|
the character limit is 255
|
|
@@ -48884,7 +49004,7 @@ optional field
|
|
|
48884
49004
|
you can add several filters at once (8 filters maximum)
|
|
48885
49005
|
you should set a logical operator and, or between the conditions
|
|
48886
49006
|
the following operators are supported:
|
|
48887
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
49007
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like, match, not_match
|
|
48888
49008
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
48889
49009
|
example:
|
|
48890
49010
|
["keyword_data.keyword_info.search_volume","in",[100,1000]]
|
|
@@ -49005,7 +49125,7 @@ optional field
|
|
|
49005
49125
|
you can add several filters at once (8 filters maximum)
|
|
49006
49126
|
you should set a logical operator and, or between the conditions
|
|
49007
49127
|
the following operators are supported:
|
|
49008
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
49128
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like, match, not_match
|
|
49009
49129
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
49010
49130
|
example:
|
|
49011
49131
|
["keyword_data.keyword_info.search_volume","in",[100,1000]]
|
|
@@ -49426,7 +49546,7 @@ optional field
|
|
|
49426
49546
|
you can add several filters at once (8 filters maximum)
|
|
49427
49547
|
you should set a logical operator and, or between the conditions
|
|
49428
49548
|
the following operators are supported:
|
|
49429
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
49549
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like, match, not_match
|
|
49430
49550
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
49431
49551
|
note that if you want to filter by any field in the intersection_result array you need to specify the number of corresponding page
|
|
49432
49552
|
for instance, if you want to filter results by the ranking of the first specified URL, you should set the following filter:
|
|
@@ -49586,7 +49706,7 @@ optional field
|
|
|
49586
49706
|
you can add several filters at once (8 filters maximum)
|
|
49587
49707
|
you should set a logical operator and, or between the conditions
|
|
49588
49708
|
the following operators are supported:
|
|
49589
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
49709
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like, match, not_match
|
|
49590
49710
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
49591
49711
|
note that if you want to filter by any field in the intersection_result array you need to specify the number of corresponding page
|
|
49592
49712
|
for instance, if you want to filter results by the ranking of the first specified URL, you should set the following filter:
|
|
@@ -49791,7 +49911,7 @@ optional field
|
|
|
49791
49911
|
you can add several filters at once (8 filters maximum)
|
|
49792
49912
|
you should set a logical operator and, or between the conditions
|
|
49793
49913
|
the following operators are supported:
|
|
49794
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
49914
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like, match, not_match
|
|
49795
49915
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
49796
49916
|
example:
|
|
49797
49917
|
["ranked_serp_element.serp_item.rank_group","<=",10]
|
|
@@ -49922,7 +50042,7 @@ optional field
|
|
|
49922
50042
|
you can add several filters at once (8 filters maximum)
|
|
49923
50043
|
you should set a logical operator and, or between the conditions
|
|
49924
50044
|
the following operators are supported:
|
|
49925
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
50045
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like, match, not_match
|
|
49926
50046
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
49927
50047
|
example:
|
|
49928
50048
|
["ranked_serp_element.serp_item.rank_group","<=",10]
|
|
@@ -50131,7 +50251,7 @@ optional field
|
|
|
50131
50251
|
you can add several filters at once (8 filters maximum)
|
|
50132
50252
|
you should set a logical operator and, or between the conditions
|
|
50133
50253
|
the following operators are supported:
|
|
50134
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like,not_like
|
|
50254
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like,not_like, match, not_match
|
|
50135
50255
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
50136
50256
|
example:
|
|
50137
50257
|
["keyword_data.keyword_info.search_volume",">",0]
|
|
@@ -50255,7 +50375,7 @@ optional field
|
|
|
50255
50375
|
you can add several filters at once (8 filters maximum)
|
|
50256
50376
|
you should set a logical operator and, or between the conditions
|
|
50257
50377
|
the following operators are supported:
|
|
50258
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like,not_like
|
|
50378
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like,not_like, match, not_match
|
|
50259
50379
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
50260
50380
|
example:
|
|
50261
50381
|
["keyword_data.keyword_info.search_volume",">",0]
|
|
@@ -50439,12 +50559,17 @@ lost — return metrics for SERPs in which the specified target had previously h
|
|
|
50439
50559
|
all — return metrics for both types of SERPs.
|
|
50440
50560
|
default value: live */
|
|
50441
50561
|
historical_serp_mode?: string | undefined;
|
|
50562
|
+
/** ignore highly similar keywords
|
|
50563
|
+
optional field
|
|
50564
|
+
if set to true, only core keywords will be returned, all highly similar keywords will be excluded;
|
|
50565
|
+
default value: false */
|
|
50566
|
+
ignore_synonyms?: boolean | undefined;
|
|
50442
50567
|
/** array of results filtering parameters
|
|
50443
50568
|
optional field
|
|
50444
50569
|
you can add several filters at once (8 filters maximum)
|
|
50445
50570
|
you should set a logical operator and, or between the conditions
|
|
50446
50571
|
the following operators are supported:
|
|
50447
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in
|
|
50572
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match
|
|
50448
50573
|
example:
|
|
50449
50574
|
["metrics.paid.count",">",0]
|
|
50450
50575
|
[["metrics.organic.count",">",50],"and",["metrics.organic.pos_1","<>",0]]
|
|
@@ -50554,12 +50679,17 @@ lost — return metrics for SERPs in which the specified target had previously h
|
|
|
50554
50679
|
all — return metrics for both types of SERPs.
|
|
50555
50680
|
default value: live */
|
|
50556
50681
|
historical_serp_mode?: string | undefined;
|
|
50682
|
+
/** ignore highly similar keywords
|
|
50683
|
+
optional field
|
|
50684
|
+
if set to true, only core keywords will be returned, all highly similar keywords will be excluded;
|
|
50685
|
+
default value: false */
|
|
50686
|
+
ignore_synonyms?: boolean | undefined;
|
|
50557
50687
|
/** array of results filtering parameters
|
|
50558
50688
|
optional field
|
|
50559
50689
|
you can add several filters at once (8 filters maximum)
|
|
50560
50690
|
you should set a logical operator and, or between the conditions
|
|
50561
50691
|
the following operators are supported:
|
|
50562
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in
|
|
50692
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match
|
|
50563
50693
|
example:
|
|
50564
50694
|
["metrics.paid.count",">",0]
|
|
50565
50695
|
[["metrics.organic.count",">",50],"and",["metrics.organic.pos_1","<>",0]]
|
|
@@ -50734,7 +50864,7 @@ optional field
|
|
|
50734
50864
|
you can add several filters at once (8 filters maximum)
|
|
50735
50865
|
you should set a logical operator and, or between the conditions
|
|
50736
50866
|
the following operators are supported:
|
|
50737
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
50867
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like, match, not_match
|
|
50738
50868
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
50739
50869
|
example:
|
|
50740
50870
|
["median_position","in",[1,10]]
|
|
@@ -50843,7 +50973,7 @@ optional field
|
|
|
50843
50973
|
you can add several filters at once (8 filters maximum)
|
|
50844
50974
|
you should set a logical operator and, or between the conditions
|
|
50845
50975
|
the following operators are supported:
|
|
50846
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like
|
|
50976
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, ilike, not_ilike, like, not_like, match, not_match
|
|
50847
50977
|
you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters
|
|
50848
50978
|
example:
|
|
50849
50979
|
["median_position","in",[1,10]]
|
|
@@ -51011,6 +51141,11 @@ lost — return metrics for SERPs in which the specified target had previously h
|
|
|
51011
51141
|
all — return metrics for both types of SERPs.
|
|
51012
51142
|
default value: live */
|
|
51013
51143
|
historical_serp_mode?: string | undefined;
|
|
51144
|
+
/** ignore highly similar keywords
|
|
51145
|
+
optional field
|
|
51146
|
+
if set to true, only core keywords will be returned, all highly similar keywords will be excluded;
|
|
51147
|
+
default value: false */
|
|
51148
|
+
ignore_synonyms?: boolean | undefined;
|
|
51014
51149
|
/** array of results filtering parameters
|
|
51015
51150
|
optional field
|
|
51016
51151
|
you can add several filters at once (8 filters maximum)
|
|
@@ -51126,6 +51261,11 @@ lost — return metrics for SERPs in which the specified target had previously h
|
|
|
51126
51261
|
all — return metrics for both types of SERPs.
|
|
51127
51262
|
default value: live */
|
|
51128
51263
|
historical_serp_mode?: string | undefined;
|
|
51264
|
+
/** ignore highly similar keywords
|
|
51265
|
+
optional field
|
|
51266
|
+
if set to true, only core keywords will be returned, all highly similar keywords will be excluded;
|
|
51267
|
+
default value: false */
|
|
51268
|
+
ignore_synonyms?: boolean | undefined;
|
|
51129
51269
|
/** array of results filtering parameters
|
|
51130
51270
|
optional field
|
|
51131
51271
|
you can add several filters at once (8 filters maximum)
|
|
@@ -57583,25 +57723,28 @@ export declare class KeywordsDataGoogleTrendsExploreTaskPostRequestInfo implemen
|
|
|
57583
57723
|
/** keywords
|
|
57584
57724
|
required field
|
|
57585
57725
|
The maximum number of keywords you can specify: 5
|
|
57586
|
-
|
|
57726
|
+
comma characters (,) in the specified keywords will be unset and ignored
|
|
57727
|
+
Note: to obtain google_trends_topics_list and google_trends_queries_list items, specify no more than 1 keyword
|
|
57587
57728
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
57588
57729
|
keywords?: string[];
|
|
57589
57730
|
/** full name of search engine location
|
|
57590
57731
|
optional field
|
|
57591
57732
|
if you don’t use this field, you will recieve global results
|
|
57592
57733
|
if you use this field, you don’t need to specify location_code
|
|
57734
|
+
you can use this field as an array to set several locations, each corresponding to a specific keyword – learn more;
|
|
57593
57735
|
you can receive the list of available locations of the search engine with their location_name by making a separate request to https://api.dataforseo.com/v3/keywords_data/google_trends/locations
|
|
57594
57736
|
example:
|
|
57595
57737
|
United Kingdom */
|
|
57596
|
-
location_name?: string | undefined;
|
|
57738
|
+
location_name?: (string | undefined)[] | undefined;
|
|
57597
57739
|
/** search engine location code
|
|
57598
57740
|
optional field
|
|
57599
57741
|
if you don’t use this field, you will recieve global results
|
|
57600
57742
|
if you use this field, you don’t need to specify location_name
|
|
57743
|
+
you can use this field as an array to set several locations, each corresponding to a specific keyword – learn more;
|
|
57601
57744
|
you can receive the list of available locations of the search engines with their location_code by making a separate request to https://api.dataforseo.com/v3/keywords_data/google_trends/locations
|
|
57602
57745
|
example:
|
|
57603
57746
|
2840 */
|
|
57604
|
-
location_code?: number | undefined;
|
|
57747
|
+
location_code?: (number | undefined)[] | undefined;
|
|
57605
57748
|
/** full name of search engine language
|
|
57606
57749
|
optional field
|
|
57607
57750
|
default value: English
|
|
@@ -57657,7 +57800,8 @@ to speed up the execution of the request, specify one item at a time;
|
|
|
57657
57800
|
possible values:
|
|
57658
57801
|
"google_trends_graph", "google_trends_map", "google_trends_topics_list","google_trends_queries_list"
|
|
57659
57802
|
default value:
|
|
57660
|
-
"google_trends_graph"
|
|
57803
|
+
"google_trends_graph"
|
|
57804
|
+
Note: to obtain google_trends_topics_list and google_trends_queries_list items, specify no more than 1 keyword in the keywords field */
|
|
57661
57805
|
item_types?: string[] | undefined;
|
|
57662
57806
|
/** return URL for sending task results
|
|
57663
57807
|
optional field
|
|
@@ -57697,25 +57841,28 @@ export interface IKeywordsDataGoogleTrendsExploreTaskPostRequestInfo {
|
|
|
57697
57841
|
/** keywords
|
|
57698
57842
|
required field
|
|
57699
57843
|
The maximum number of keywords you can specify: 5
|
|
57700
|
-
|
|
57844
|
+
comma characters (,) in the specified keywords will be unset and ignored
|
|
57845
|
+
Note: to obtain google_trends_topics_list and google_trends_queries_list items, specify no more than 1 keyword
|
|
57701
57846
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
57702
57847
|
keywords?: string[];
|
|
57703
57848
|
/** full name of search engine location
|
|
57704
57849
|
optional field
|
|
57705
57850
|
if you don’t use this field, you will recieve global results
|
|
57706
57851
|
if you use this field, you don’t need to specify location_code
|
|
57852
|
+
you can use this field as an array to set several locations, each corresponding to a specific keyword – learn more;
|
|
57707
57853
|
you can receive the list of available locations of the search engine with their location_name by making a separate request to https://api.dataforseo.com/v3/keywords_data/google_trends/locations
|
|
57708
57854
|
example:
|
|
57709
57855
|
United Kingdom */
|
|
57710
|
-
location_name?: string | undefined;
|
|
57856
|
+
location_name?: (string | undefined)[] | undefined;
|
|
57711
57857
|
/** search engine location code
|
|
57712
57858
|
optional field
|
|
57713
57859
|
if you don’t use this field, you will recieve global results
|
|
57714
57860
|
if you use this field, you don’t need to specify location_name
|
|
57861
|
+
you can use this field as an array to set several locations, each corresponding to a specific keyword – learn more;
|
|
57715
57862
|
you can receive the list of available locations of the search engines with their location_code by making a separate request to https://api.dataforseo.com/v3/keywords_data/google_trends/locations
|
|
57716
57863
|
example:
|
|
57717
57864
|
2840 */
|
|
57718
|
-
location_code?: number | undefined;
|
|
57865
|
+
location_code?: (number | undefined)[] | undefined;
|
|
57719
57866
|
/** full name of search engine language
|
|
57720
57867
|
optional field
|
|
57721
57868
|
default value: English
|
|
@@ -57771,7 +57918,8 @@ to speed up the execution of the request, specify one item at a time;
|
|
|
57771
57918
|
possible values:
|
|
57772
57919
|
"google_trends_graph", "google_trends_map", "google_trends_topics_list","google_trends_queries_list"
|
|
57773
57920
|
default value:
|
|
57774
|
-
"google_trends_graph"
|
|
57921
|
+
"google_trends_graph"
|
|
57922
|
+
Note: to obtain google_trends_topics_list and google_trends_queries_list items, specify no more than 1 keyword in the keywords field */
|
|
57775
57923
|
item_types?: string[] | undefined;
|
|
57776
57924
|
/** return URL for sending task results
|
|
57777
57925
|
optional field
|
|
@@ -58159,28 +58307,31 @@ export interface IKeywordsDataGoogleTrendsExploreTaskGetResponseInfo extends IBa
|
|
|
58159
58307
|
}
|
|
58160
58308
|
export declare class KeywordsDataGoogleTrendsExploreLiveRequestInfo implements IKeywordsDataGoogleTrendsExploreLiveRequestInfo {
|
|
58161
58309
|
/** keywords
|
|
58162
|
-
|
|
58310
|
+
required field
|
|
58163
58311
|
if keywords are not specified, the results will not contain keyword-related data;
|
|
58164
58312
|
The maximum number of keywords you can specify: 5
|
|
58165
|
-
|
|
58313
|
+
comma characters (,) in the specified keywords will be unset and ignored;
|
|
58314
|
+
Note: to obtain google_trends_topics_list and google_trends_queries_list items, specify no more than 1 keyword;
|
|
58166
58315
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
58167
|
-
keywords?: string[]
|
|
58316
|
+
keywords?: string[];
|
|
58168
58317
|
/** full name of search engine location
|
|
58169
58318
|
optional field
|
|
58170
58319
|
if you don’t use this field, you will recieve global results
|
|
58171
58320
|
if you use this field, you don’t need to specify location_code
|
|
58321
|
+
you can use this field as an array to set several locations, each corresponding to a specific keyword – learn more;
|
|
58172
58322
|
you can receive the list of available locations of the search engine with their location_name by making a separate request to https://api.dataforseo.com/v3/keywords_data/google_trends/locations
|
|
58173
58323
|
example:
|
|
58174
58324
|
United Kingdom */
|
|
58175
|
-
location_name?: string | undefined;
|
|
58325
|
+
location_name?: (string | undefined)[] | undefined;
|
|
58176
58326
|
/** search engine location code
|
|
58177
58327
|
optional field
|
|
58178
58328
|
if you don’t use this field, you will recieve global results
|
|
58179
58329
|
if you use this field, you don’t need to specify location_name
|
|
58330
|
+
you can use this field as an array to set several locations, each corresponding to a specific keyword – learn more;
|
|
58180
58331
|
you can receive the list of available locations of the search engines with their location_code by making a separate request to https://api.dataforseo.com/v3/keywords_data/google_trends/locations
|
|
58181
58332
|
example:
|
|
58182
58333
|
2840 */
|
|
58183
|
-
location_code?: number | undefined;
|
|
58334
|
+
location_code?: (number | undefined)[] | undefined;
|
|
58184
58335
|
/** full name of search engine language
|
|
58185
58336
|
optional field
|
|
58186
58337
|
default value: English
|
|
@@ -58236,7 +58387,8 @@ to speed up the execution of the request, specify one item at a time;
|
|
|
58236
58387
|
possible values:
|
|
58237
58388
|
"google_trends_graph", "google_trends_map", "google_trends_topics_list","google_trends_queries_list"
|
|
58238
58389
|
default value:
|
|
58239
|
-
"google_trends_graph"
|
|
58390
|
+
"google_trends_graph"
|
|
58391
|
+
Note: to obtain google_trends_topics_list and google_trends_queries_list items, specify no more than 1 keyword in the keywords field */
|
|
58240
58392
|
item_types?: string[] | undefined;
|
|
58241
58393
|
/** user-defined task identifier
|
|
58242
58394
|
optional field
|
|
@@ -58252,28 +58404,31 @@ you will find the specified tag value in the data object of the response */
|
|
|
58252
58404
|
}
|
|
58253
58405
|
export interface IKeywordsDataGoogleTrendsExploreLiveRequestInfo {
|
|
58254
58406
|
/** keywords
|
|
58255
|
-
|
|
58407
|
+
required field
|
|
58256
58408
|
if keywords are not specified, the results will not contain keyword-related data;
|
|
58257
58409
|
The maximum number of keywords you can specify: 5
|
|
58258
|
-
|
|
58410
|
+
comma characters (,) in the specified keywords will be unset and ignored;
|
|
58411
|
+
Note: to obtain google_trends_topics_list and google_trends_queries_list items, specify no more than 1 keyword;
|
|
58259
58412
|
learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article */
|
|
58260
|
-
keywords?: string[]
|
|
58413
|
+
keywords?: string[];
|
|
58261
58414
|
/** full name of search engine location
|
|
58262
58415
|
optional field
|
|
58263
58416
|
if you don’t use this field, you will recieve global results
|
|
58264
58417
|
if you use this field, you don’t need to specify location_code
|
|
58418
|
+
you can use this field as an array to set several locations, each corresponding to a specific keyword – learn more;
|
|
58265
58419
|
you can receive the list of available locations of the search engine with their location_name by making a separate request to https://api.dataforseo.com/v3/keywords_data/google_trends/locations
|
|
58266
58420
|
example:
|
|
58267
58421
|
United Kingdom */
|
|
58268
|
-
location_name?: string | undefined;
|
|
58422
|
+
location_name?: (string | undefined)[] | undefined;
|
|
58269
58423
|
/** search engine location code
|
|
58270
58424
|
optional field
|
|
58271
58425
|
if you don’t use this field, you will recieve global results
|
|
58272
58426
|
if you use this field, you don’t need to specify location_name
|
|
58427
|
+
you can use this field as an array to set several locations, each corresponding to a specific keyword – learn more;
|
|
58273
58428
|
you can receive the list of available locations of the search engines with their location_code by making a separate request to https://api.dataforseo.com/v3/keywords_data/google_trends/locations
|
|
58274
58429
|
example:
|
|
58275
58430
|
2840 */
|
|
58276
|
-
location_code?: number | undefined;
|
|
58431
|
+
location_code?: (number | undefined)[] | undefined;
|
|
58277
58432
|
/** full name of search engine language
|
|
58278
58433
|
optional field
|
|
58279
58434
|
default value: English
|
|
@@ -58329,7 +58484,8 @@ to speed up the execution of the request, specify one item at a time;
|
|
|
58329
58484
|
possible values:
|
|
58330
58485
|
"google_trends_graph", "google_trends_map", "google_trends_topics_list","google_trends_queries_list"
|
|
58331
58486
|
default value:
|
|
58332
|
-
"google_trends_graph"
|
|
58487
|
+
"google_trends_graph"
|
|
58488
|
+
Note: to obtain google_trends_topics_list and google_trends_queries_list items, specify no more than 1 keyword in the keywords field */
|
|
58333
58489
|
item_types?: string[] | undefined;
|
|
58334
58490
|
/** user-defined task identifier
|
|
58335
58491
|
optional field
|
|
@@ -65912,7 +66068,7 @@ optional field
|
|
|
65912
66068
|
you can add several filters at once (8 filters maximum)
|
|
65913
66069
|
you should set a logical operator and, or between the conditions
|
|
65914
66070
|
the following operators are supported:
|
|
65915
|
-
|
|
66071
|
+
=, <>, in, not_in, like, not_like, ilike, not_ilike, regex, not_regex, match, not_match
|
|
65916
66072
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
65917
66073
|
example:
|
|
65918
66074
|
["rank",">","80"]
|
|
@@ -65947,9 +66103,9 @@ Note: the maximum value is 20,000, use the search_after_token if you would like
|
|
|
65947
66103
|
/** token for subsequent requests
|
|
65948
66104
|
optional field
|
|
65949
66105
|
provided in the identical filed of the response to each request;
|
|
65950
|
-
use this parameter to avoid timeouts while trying to obtain over
|
|
66106
|
+
use this parameter to avoid timeouts while trying to obtain over 20,000 results in a single request;
|
|
65951
66107
|
by specifying the unique search_after_token value from the response array, you will get the subsequent results of the initial task;
|
|
65952
|
-
search_after_token values are unique for each subsequent task
|
|
66108
|
+
search_after_token values are unique for each subsequent task ;
|
|
65953
66109
|
Note: if the search_after_token is specified in the request, all other parameters should be identical to the previous request */
|
|
65954
66110
|
search_after_token?: string | undefined;
|
|
65955
66111
|
/** the maximum number of returned backlinks
|
|
@@ -66040,7 +66196,7 @@ optional field
|
|
|
66040
66196
|
you can add several filters at once (8 filters maximum)
|
|
66041
66197
|
you should set a logical operator and, or between the conditions
|
|
66042
66198
|
the following operators are supported:
|
|
66043
|
-
|
|
66199
|
+
=, <>, in, not_in, like, not_like, ilike, not_ilike, regex, not_regex, match, not_match
|
|
66044
66200
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
66045
66201
|
example:
|
|
66046
66202
|
["rank",">","80"]
|
|
@@ -66075,9 +66231,9 @@ Note: the maximum value is 20,000, use the search_after_token if you would like
|
|
|
66075
66231
|
/** token for subsequent requests
|
|
66076
66232
|
optional field
|
|
66077
66233
|
provided in the identical filed of the response to each request;
|
|
66078
|
-
use this parameter to avoid timeouts while trying to obtain over
|
|
66234
|
+
use this parameter to avoid timeouts while trying to obtain over 20,000 results in a single request;
|
|
66079
66235
|
by specifying the unique search_after_token value from the response array, you will get the subsequent results of the initial task;
|
|
66080
|
-
search_after_token values are unique for each subsequent task
|
|
66236
|
+
search_after_token values are unique for each subsequent task ;
|
|
66081
66237
|
Note: if the search_after_token is specified in the request, all other parameters should be identical to the previous request */
|
|
66082
66238
|
search_after_token?: string | undefined;
|
|
66083
66239
|
/** the maximum number of returned backlinks
|
|
@@ -66584,7 +66740,7 @@ optional field
|
|
|
66584
66740
|
you can add several filters at once (8 filters maximum)
|
|
66585
66741
|
you should set a logical operator and, or between the conditions
|
|
66586
66742
|
the following operators are supported:
|
|
66587
|
-
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike
|
|
66743
|
+
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike, match, not_match
|
|
66588
66744
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
66589
66745
|
example:
|
|
66590
66746
|
["referring_links_types.anchors",">","1"]
|
|
@@ -66687,7 +66843,7 @@ optional field
|
|
|
66687
66843
|
you can add several filters at once (8 filters maximum)
|
|
66688
66844
|
you should set a logical operator and, or between the conditions
|
|
66689
66845
|
the following operators are supported:
|
|
66690
|
-
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike
|
|
66846
|
+
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike, match, not_match
|
|
66691
66847
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
66692
66848
|
example:
|
|
66693
66849
|
["referring_links_types.anchors",">","1"]
|
|
@@ -67017,7 +67173,7 @@ optional field
|
|
|
67017
67173
|
you can add several filters at once (8 filters maximum)
|
|
67018
67174
|
you should set a logical operator and, or between the conditions
|
|
67019
67175
|
the following operators are supported:
|
|
67020
|
-
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike
|
|
67176
|
+
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike, match, not_match
|
|
67021
67177
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
67022
67178
|
example:
|
|
67023
67179
|
["meta.internal_links_count",">","1"]
|
|
@@ -67116,7 +67272,7 @@ optional field
|
|
|
67116
67272
|
you can add several filters at once (8 filters maximum)
|
|
67117
67273
|
you should set a logical operator and, or between the conditions
|
|
67118
67274
|
the following operators are supported:
|
|
67119
|
-
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike
|
|
67275
|
+
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike, match, not_match
|
|
67120
67276
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
67121
67277
|
example:
|
|
67122
67278
|
["meta.internal_links_count",">","1"]
|
|
@@ -67652,7 +67808,7 @@ optional field
|
|
|
67652
67808
|
you can add several filters at once (8 filters maximum)
|
|
67653
67809
|
you should set a logical operator and, or between the conditions
|
|
67654
67810
|
the following operators are supported:
|
|
67655
|
-
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike
|
|
67811
|
+
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike, match, not_match
|
|
67656
67812
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
67657
67813
|
example:
|
|
67658
67814
|
["referring_links_types.anchors",">","1"]
|
|
@@ -67755,7 +67911,7 @@ optional field
|
|
|
67755
67911
|
you can add several filters at once (8 filters maximum)
|
|
67756
67912
|
you should set a logical operator and, or between the conditions
|
|
67757
67913
|
the following operators are supported:
|
|
67758
|
-
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike
|
|
67914
|
+
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike, match, not_match
|
|
67759
67915
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
67760
67916
|
example:
|
|
67761
67917
|
["referring_links_types.anchors",">","1"]
|
|
@@ -68084,7 +68240,7 @@ optional field
|
|
|
68084
68240
|
you can add several filters at once (8 filters maximum)
|
|
68085
68241
|
you should set a logical operator and, or between the conditions
|
|
68086
68242
|
the following operators are supported:
|
|
68087
|
-
regex, not_regex, =, <>, in, not_in, like, not_like
|
|
68243
|
+
regex, not_regex, =, <>, in, not_in, like, not_like, match, not_match
|
|
68088
68244
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
68089
68245
|
example:
|
|
68090
68246
|
["referring_pages",">","1"]
|
|
@@ -68187,7 +68343,7 @@ optional field
|
|
|
68187
68343
|
you can add several filters at once (8 filters maximum)
|
|
68188
68344
|
you should set a logical operator and, or between the conditions
|
|
68189
68345
|
the following operators are supported:
|
|
68190
|
-
regex, not_regex, =, <>, in, not_in, like, not_like
|
|
68346
|
+
regex, not_regex, =, <>, in, not_in, like, not_like, match, not_match
|
|
68191
68347
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
68192
68348
|
example:
|
|
68193
68349
|
["referring_pages",">","1"]
|
|
@@ -68529,7 +68685,7 @@ optional field
|
|
|
68529
68685
|
you can add several filters at once (8 filters maximum)
|
|
68530
68686
|
you should set a logical operator and, or between the conditions
|
|
68531
68687
|
the following operators are supported:
|
|
68532
|
-
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike
|
|
68688
|
+
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike, match, not_match
|
|
68533
68689
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
68534
68690
|
example:
|
|
68535
68691
|
["referring_pages",">","1"]
|
|
@@ -68637,7 +68793,7 @@ optional field
|
|
|
68637
68793
|
you can add several filters at once (8 filters maximum)
|
|
68638
68794
|
you should set a logical operator and, or between the conditions
|
|
68639
68795
|
the following operators are supported:
|
|
68640
|
-
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike
|
|
68796
|
+
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike, match, not_match
|
|
68641
68797
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
68642
68798
|
example:
|
|
68643
68799
|
["referring_pages",">","1"]
|
|
@@ -68942,7 +69098,7 @@ optional field
|
|
|
68942
69098
|
you can add several filters at once (8 filters maximum)
|
|
68943
69099
|
you should set a logical operator and, or between the conditions
|
|
68944
69100
|
the following operators are supported:
|
|
68945
|
-
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike
|
|
69101
|
+
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike, match, not_match
|
|
68946
69102
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
68947
69103
|
example:
|
|
68948
69104
|
["rank",">","100"]
|
|
@@ -69014,7 +69170,7 @@ optional field
|
|
|
69014
69170
|
you can add several filters at once (8 filters maximum)
|
|
69015
69171
|
you should set a logical operator and, or between the conditions
|
|
69016
69172
|
the following operators are supported:
|
|
69017
|
-
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike
|
|
69173
|
+
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike, match, not_match
|
|
69018
69174
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
69019
69175
|
example:
|
|
69020
69176
|
["rank",">","100"]
|
|
@@ -69172,7 +69328,7 @@ optional field
|
|
|
69172
69328
|
you can add several filters at once (8 filters maximum)
|
|
69173
69329
|
you should set a logical operator and, or between the conditions
|
|
69174
69330
|
the following operators are supported:
|
|
69175
|
-
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike
|
|
69331
|
+
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike, match, not_match
|
|
69176
69332
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
69177
69333
|
example:
|
|
69178
69334
|
["1.internal_links_count",">","1"]
|
|
@@ -69301,7 +69457,7 @@ optional field
|
|
|
69301
69457
|
you can add several filters at once (8 filters maximum)
|
|
69302
69458
|
you should set a logical operator and, or between the conditions
|
|
69303
69459
|
the following operators are supported:
|
|
69304
|
-
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike
|
|
69460
|
+
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike, match, not_match
|
|
69305
69461
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
69306
69462
|
example:
|
|
69307
69463
|
["1.internal_links_count",">","1"]
|
|
@@ -69697,7 +69853,7 @@ optional field
|
|
|
69697
69853
|
you can add several filters at once (8 filters maximum)
|
|
69698
69854
|
you should set a logical operator and, or between the conditions
|
|
69699
69855
|
the following operators are supported:
|
|
69700
|
-
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike
|
|
69856
|
+
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike, match, not_match
|
|
69701
69857
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
69702
69858
|
example:
|
|
69703
69859
|
["1.rank",">","80"]
|
|
@@ -69816,7 +69972,7 @@ optional field
|
|
|
69816
69972
|
you can add several filters at once (8 filters maximum)
|
|
69817
69973
|
you should set a logical operator and, or between the conditions
|
|
69818
69974
|
the following operators are supported:
|
|
69819
|
-
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike
|
|
69975
|
+
regex, not_regex, =, <>, in, not_in, like, not_like, ilike, not_ilike, match, not_match
|
|
69820
69976
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
69821
69977
|
example:
|
|
69822
69978
|
["1.rank",">","80"]
|
|
@@ -74539,40 +74695,6 @@ the amount of time the browser needs to complete downloading a resource */
|
|
|
74539
74695
|
is_render_blocking?: boolean | undefined;
|
|
74540
74696
|
[key: string]: any;
|
|
74541
74697
|
}
|
|
74542
|
-
export declare class ScriptResourceElementItem extends BaseOnPageResourceItemInfo implements IScriptResourceElementItem {
|
|
74543
|
-
/** resource properties
|
|
74544
|
-
the value depends on the resource_type
|
|
74545
|
-
note that if you do not indicate a url when setting a task, resource’s meta is returned based on the data from the page where our crawler first saw the resource;
|
|
74546
|
-
to obtain resource’s meta from a particular url, specify that URL when setting a task */
|
|
74547
|
-
meta?: ResourceMetaInfo | undefined;
|
|
74548
|
-
/** resource fething time range */
|
|
74549
|
-
fetch_timing?: FetchTiming | undefined;
|
|
74550
|
-
/** indicates the expected type of resource
|
|
74551
|
-
for example, if "resource_type": "broken", accept_type will indicate the type of the broken resource
|
|
74552
|
-
possible values:
|
|
74553
|
-
any, none, image, sitemap, robots, script, stylesheet, redirect, html, text, other, font */
|
|
74554
|
-
accept_type?: string | undefined;
|
|
74555
|
-
[key: string]: any;
|
|
74556
|
-
constructor(data?: IScriptResourceElementItem);
|
|
74557
|
-
init(_data?: any): void;
|
|
74558
|
-
static fromJS(data: any): ScriptResourceElementItem;
|
|
74559
|
-
toJSON(data?: any): any;
|
|
74560
|
-
}
|
|
74561
|
-
export interface IScriptResourceElementItem extends IBaseOnPageResourceItemInfo {
|
|
74562
|
-
/** resource properties
|
|
74563
|
-
the value depends on the resource_type
|
|
74564
|
-
note that if you do not indicate a url when setting a task, resource’s meta is returned based on the data from the page where our crawler first saw the resource;
|
|
74565
|
-
to obtain resource’s meta from a particular url, specify that URL when setting a task */
|
|
74566
|
-
meta?: ResourceMetaInfo | undefined;
|
|
74567
|
-
/** resource fething time range */
|
|
74568
|
-
fetch_timing?: FetchTiming | undefined;
|
|
74569
|
-
/** indicates the expected type of resource
|
|
74570
|
-
for example, if "resource_type": "broken", accept_type will indicate the type of the broken resource
|
|
74571
|
-
possible values:
|
|
74572
|
-
any, none, image, sitemap, robots, script, stylesheet, redirect, html, text, other, font */
|
|
74573
|
-
accept_type?: string | undefined;
|
|
74574
|
-
[key: string]: any;
|
|
74575
|
-
}
|
|
74576
74698
|
export declare class OnPageResourcesResultInfo implements IOnPageResourcesResultInfo {
|
|
74577
74699
|
/** status of the crawling session
|
|
74578
74700
|
possible values: in_progress, finished */
|
|
@@ -74619,6 +74741,40 @@ export interface IOnPageResourcesTaskInfo extends IBaseResponseTaskInfo {
|
|
|
74619
74741
|
result?: (OnPageResourcesResultInfo | undefined)[] | undefined;
|
|
74620
74742
|
[key: string]: any;
|
|
74621
74743
|
}
|
|
74744
|
+
export declare class ScriptResourceElementItem extends BaseOnPageResourceItemInfo implements IScriptResourceElementItem {
|
|
74745
|
+
/** resource properties
|
|
74746
|
+
the value depends on the resource_type
|
|
74747
|
+
note that if you do not indicate a url when setting a task, resource’s meta is returned based on the data from the page where our crawler first saw the resource;
|
|
74748
|
+
to obtain resource’s meta from a particular url, specify that URL when setting a task */
|
|
74749
|
+
meta?: ResourceMetaInfo | undefined;
|
|
74750
|
+
/** resource fething time range */
|
|
74751
|
+
fetch_timing?: FetchTiming | undefined;
|
|
74752
|
+
/** indicates the expected type of resource
|
|
74753
|
+
for example, if "resource_type": "broken", accept_type will indicate the type of the broken resource
|
|
74754
|
+
possible values:
|
|
74755
|
+
any, none, image, sitemap, robots, script, stylesheet, redirect, html, text, other, font */
|
|
74756
|
+
accept_type?: string | undefined;
|
|
74757
|
+
[key: string]: any;
|
|
74758
|
+
constructor(data?: IScriptResourceElementItem);
|
|
74759
|
+
init(_data?: any): void;
|
|
74760
|
+
static fromJS(data: any): ScriptResourceElementItem;
|
|
74761
|
+
toJSON(data?: any): any;
|
|
74762
|
+
}
|
|
74763
|
+
export interface IScriptResourceElementItem extends IBaseOnPageResourceItemInfo {
|
|
74764
|
+
/** resource properties
|
|
74765
|
+
the value depends on the resource_type
|
|
74766
|
+
note that if you do not indicate a url when setting a task, resource’s meta is returned based on the data from the page where our crawler first saw the resource;
|
|
74767
|
+
to obtain resource’s meta from a particular url, specify that URL when setting a task */
|
|
74768
|
+
meta?: ResourceMetaInfo | undefined;
|
|
74769
|
+
/** resource fething time range */
|
|
74770
|
+
fetch_timing?: FetchTiming | undefined;
|
|
74771
|
+
/** indicates the expected type of resource
|
|
74772
|
+
for example, if "resource_type": "broken", accept_type will indicate the type of the broken resource
|
|
74773
|
+
possible values:
|
|
74774
|
+
any, none, image, sitemap, robots, script, stylesheet, redirect, html, text, other, font */
|
|
74775
|
+
accept_type?: string | undefined;
|
|
74776
|
+
[key: string]: any;
|
|
74777
|
+
}
|
|
74622
74778
|
export declare class ImageResourceElementItem extends BaseOnPageResourceItemInfo implements IImageResourceElementItem {
|
|
74623
74779
|
/** resource properties
|
|
74624
74780
|
the value depends on the resource_type
|
|
@@ -76575,206 +76731,32 @@ example:
|
|
|
76575
76731
|
id?: string;
|
|
76576
76732
|
[key: string]: any;
|
|
76577
76733
|
}
|
|
76578
|
-
export declare class
|
|
76579
|
-
/**
|
|
76580
|
-
|
|
76581
|
-
|
|
76582
|
-
|
|
76583
|
-
|
|
76584
|
-
|
|
76585
|
-
|
|
76586
|
-
|
|
76587
|
-
|
|
76588
|
-
}
|
|
76589
|
-
export interface IContentUrlInfo {
|
|
76590
|
-
/** other URL found in the content element */
|
|
76591
|
-
url?: string | undefined;
|
|
76592
|
-
/** text of the URL’s anchor */
|
|
76593
|
-
anchor_text?: string | undefined;
|
|
76594
|
-
[key: string]: any;
|
|
76595
|
-
}
|
|
76596
|
-
export declare class ContentItemInfo implements IContentItemInfo {
|
|
76597
|
-
/** content text */
|
|
76598
|
-
text?: string | undefined;
|
|
76599
|
-
/** page URL
|
|
76600
|
-
displayed in case the text is a link anchor */
|
|
76601
|
-
url?: string | undefined;
|
|
76602
|
-
/** contains other URLs and anchors found in the content element */
|
|
76603
|
-
urls?: (ContentUrlInfo | undefined)[] | undefined;
|
|
76604
|
-
[key: string]: any;
|
|
76605
|
-
constructor(data?: IContentItemInfo);
|
|
76606
|
-
init(_data?: any): void;
|
|
76607
|
-
static fromJS(data: any): ContentItemInfo;
|
|
76608
|
-
toJSON(data?: any): any;
|
|
76609
|
-
}
|
|
76610
|
-
export interface IContentItemInfo {
|
|
76611
|
-
/** content text */
|
|
76612
|
-
text?: string | undefined;
|
|
76613
|
-
/** page URL
|
|
76614
|
-
displayed in case the text is a link anchor */
|
|
76615
|
-
url?: string | undefined;
|
|
76616
|
-
/** contains other URLs and anchors found in the content element */
|
|
76617
|
-
urls?: (ContentUrlInfo | undefined)[] | undefined;
|
|
76618
|
-
[key: string]: any;
|
|
76619
|
-
}
|
|
76620
|
-
export declare class PageSectionContentInfo implements IPageSectionContentInfo {
|
|
76621
|
-
/** primary content on the page
|
|
76622
|
-
you can find more information about content priority calculation in this help center article */
|
|
76623
|
-
primary_content?: (ContentItemInfo | undefined)[] | undefined;
|
|
76624
|
-
/** secondary content on the page
|
|
76625
|
-
you can find more information about content priority calculation in this help center article */
|
|
76626
|
-
secondary_content?: (ContentItemInfo | undefined)[] | undefined;
|
|
76627
|
-
/** content of the table on the page */
|
|
76628
|
-
table_content?: (TableContent | undefined)[] | undefined;
|
|
76629
|
-
[key: string]: any;
|
|
76630
|
-
constructor(data?: IPageSectionContentInfo);
|
|
76631
|
-
init(_data?: any): void;
|
|
76632
|
-
static fromJS(data: any): PageSectionContentInfo;
|
|
76633
|
-
toJSON(data?: any): any;
|
|
76634
|
-
}
|
|
76635
|
-
export interface IPageSectionContentInfo {
|
|
76636
|
-
/** primary content on the page
|
|
76637
|
-
you can find more information about content priority calculation in this help center article */
|
|
76638
|
-
primary_content?: (ContentItemInfo | undefined)[] | undefined;
|
|
76639
|
-
/** secondary content on the page
|
|
76640
|
-
you can find more information about content priority calculation in this help center article */
|
|
76641
|
-
secondary_content?: (ContentItemInfo | undefined)[] | undefined;
|
|
76642
|
-
/** content of the table on the page */
|
|
76643
|
-
table_content?: (TableContent | undefined)[] | undefined;
|
|
76644
|
-
[key: string]: any;
|
|
76645
|
-
}
|
|
76646
|
-
export declare class RowCellInfo implements IRowCellInfo {
|
|
76647
|
-
/** content text */
|
|
76648
|
-
text?: string | undefined;
|
|
76649
|
-
/** contains other URLs and anchors found in the content element */
|
|
76650
|
-
urls?: (ContentUrlInfo | undefined)[] | undefined;
|
|
76651
|
-
/** indicates if the text belongs to the header */
|
|
76652
|
-
is_header?: boolean | undefined;
|
|
76653
|
-
[key: string]: any;
|
|
76654
|
-
constructor(data?: IRowCellInfo);
|
|
76655
|
-
init(_data?: any): void;
|
|
76656
|
-
static fromJS(data: any): RowCellInfo;
|
|
76657
|
-
toJSON(data?: any): any;
|
|
76658
|
-
}
|
|
76659
|
-
export interface IRowCellInfo {
|
|
76660
|
-
/** content text */
|
|
76661
|
-
text?: string | undefined;
|
|
76662
|
-
/** contains other URLs and anchors found in the content element */
|
|
76663
|
-
urls?: (ContentUrlInfo | undefined)[] | undefined;
|
|
76664
|
-
/** indicates if the text belongs to the header */
|
|
76665
|
-
is_header?: boolean | undefined;
|
|
76666
|
-
[key: string]: any;
|
|
76667
|
-
}
|
|
76668
|
-
export declare class TableContentItemInfo implements ITableContentItemInfo {
|
|
76669
|
-
/** content of the row cells of the header */
|
|
76670
|
-
row_cells?: (RowCellInfo | undefined)[] | undefined;
|
|
76671
|
-
[key: string]: any;
|
|
76672
|
-
constructor(data?: ITableContentItemInfo);
|
|
76673
|
-
init(_data?: any): void;
|
|
76674
|
-
static fromJS(data: any): TableContentItemInfo;
|
|
76675
|
-
toJSON(data?: any): any;
|
|
76676
|
-
}
|
|
76677
|
-
export interface ITableContentItemInfo {
|
|
76678
|
-
/** content of the row cells of the header */
|
|
76679
|
-
row_cells?: (RowCellInfo | undefined)[] | undefined;
|
|
76680
|
-
[key: string]: any;
|
|
76681
|
-
}
|
|
76682
|
-
export declare class TableContent implements ITableContent {
|
|
76683
|
-
/** parsed content of the header */
|
|
76684
|
-
header?: (TableContentItemInfo | undefined)[] | undefined;
|
|
76685
|
-
/** content of the body of the table */
|
|
76686
|
-
body?: (TableContentItemInfo | undefined)[] | undefined;
|
|
76687
|
-
/** content of the footer of the table */
|
|
76688
|
-
footer?: (TableContentItemInfo | undefined)[] | undefined;
|
|
76689
|
-
[key: string]: any;
|
|
76690
|
-
constructor(data?: ITableContent);
|
|
76691
|
-
init(_data?: any): void;
|
|
76692
|
-
static fromJS(data: any): TableContent;
|
|
76693
|
-
toJSON(data?: any): any;
|
|
76694
|
-
}
|
|
76695
|
-
export interface ITableContent {
|
|
76696
|
-
/** parsed content of the header */
|
|
76697
|
-
header?: (TableContentItemInfo | undefined)[] | undefined;
|
|
76698
|
-
/** content of the body of the table */
|
|
76699
|
-
body?: (TableContentItemInfo | undefined)[] | undefined;
|
|
76700
|
-
/** content of the footer of the table */
|
|
76701
|
-
footer?: (TableContentItemInfo | undefined)[] | undefined;
|
|
76702
|
-
[key: string]: any;
|
|
76703
|
-
}
|
|
76704
|
-
export declare class TopicInfo implements ITopicInfo {
|
|
76705
|
-
/** meta title */
|
|
76706
|
-
h_title?: string | undefined;
|
|
76707
|
-
/** main title of the block */
|
|
76708
|
-
main_title?: string | undefined;
|
|
76709
|
-
/** content author name */
|
|
76710
|
-
author?: string | undefined;
|
|
76711
|
-
/** content language */
|
|
76712
|
-
language?: string | undefined;
|
|
76713
|
-
/** HTML level */
|
|
76714
|
-
level?: number | undefined;
|
|
76715
|
-
/** primary content on the page
|
|
76716
|
-
you can find more information about content priority calculation in this help center article */
|
|
76717
|
-
primary_content?: (ContentItemInfo | undefined)[] | undefined;
|
|
76718
|
-
/** secondary content on the page
|
|
76719
|
-
you can find more information about content priority calculation in this help center article */
|
|
76720
|
-
secondary_content?: (ContentItemInfo | undefined)[] | undefined;
|
|
76721
|
-
/** content of the table on the page */
|
|
76722
|
-
table_content?: (TableContent | undefined)[] | undefined;
|
|
76723
|
-
[key: string]: any;
|
|
76724
|
-
constructor(data?: ITopicInfo);
|
|
76725
|
-
init(_data?: any): void;
|
|
76726
|
-
static fromJS(data: any): TopicInfo;
|
|
76727
|
-
toJSON(data?: any): any;
|
|
76728
|
-
}
|
|
76729
|
-
export interface ITopicInfo {
|
|
76730
|
-
/** meta title */
|
|
76731
|
-
h_title?: string | undefined;
|
|
76732
|
-
/** main title of the block */
|
|
76733
|
-
main_title?: string | undefined;
|
|
76734
|
-
/** content author name */
|
|
76735
|
-
author?: string | undefined;
|
|
76736
|
-
/** content language */
|
|
76737
|
-
language?: string | undefined;
|
|
76738
|
-
/** HTML level */
|
|
76739
|
-
level?: number | undefined;
|
|
76740
|
-
/** primary content on the page
|
|
76741
|
-
you can find more information about content priority calculation in this help center article */
|
|
76742
|
-
primary_content?: (ContentItemInfo | undefined)[] | undefined;
|
|
76743
|
-
/** secondary content on the page
|
|
76744
|
-
you can find more information about content priority calculation in this help center article */
|
|
76745
|
-
secondary_content?: (ContentItemInfo | undefined)[] | undefined;
|
|
76746
|
-
/** content of the table on the page */
|
|
76747
|
-
table_content?: (TableContent | undefined)[] | undefined;
|
|
76748
|
-
[key: string]: any;
|
|
76749
|
-
}
|
|
76750
|
-
export declare class PageContentInfo implements IPageContentInfo {
|
|
76751
|
-
/** content of the header of the table */
|
|
76752
|
-
header?: PageSectionContentInfo | undefined;
|
|
76753
|
-
/** parsed content of the footer */
|
|
76754
|
-
footer?: PageSectionContentInfo | undefined;
|
|
76755
|
-
/** main topic on the page
|
|
76756
|
-
you can find more information about topic priority calculation in this help center article */
|
|
76757
|
-
main_topic?: (TopicInfo | undefined)[] | undefined;
|
|
76758
|
-
/** secondary topic on the page
|
|
76759
|
-
you can find more information about topic priority calculation in this help center article */
|
|
76760
|
-
secondary_topic?: (TopicInfo | undefined)[] | undefined;
|
|
76734
|
+
export declare class OnPageContentParsingResultInfo implements IOnPageContentParsingResultInfo {
|
|
76735
|
+
/** status of the crawling session
|
|
76736
|
+
possible values: in_progress, finished */
|
|
76737
|
+
crawl_progress?: string | undefined;
|
|
76738
|
+
/** details of the crawling session */
|
|
76739
|
+
crawl_status?: CrawlStatusInfo | undefined;
|
|
76740
|
+
/** number of items in the results array */
|
|
76741
|
+
items_count?: number | undefined;
|
|
76742
|
+
/** items array */
|
|
76743
|
+
items?: (OnPageContentParsingItem | undefined)[] | undefined;
|
|
76761
76744
|
[key: string]: any;
|
|
76762
|
-
constructor(data?:
|
|
76745
|
+
constructor(data?: IOnPageContentParsingResultInfo);
|
|
76763
76746
|
init(_data?: any): void;
|
|
76764
|
-
static fromJS(data: any):
|
|
76747
|
+
static fromJS(data: any): OnPageContentParsingResultInfo;
|
|
76765
76748
|
toJSON(data?: any): any;
|
|
76766
76749
|
}
|
|
76767
|
-
export interface
|
|
76768
|
-
/**
|
|
76769
|
-
|
|
76770
|
-
|
|
76771
|
-
|
|
76772
|
-
|
|
76773
|
-
|
|
76774
|
-
|
|
76775
|
-
/**
|
|
76776
|
-
|
|
76777
|
-
secondary_topic?: (TopicInfo | undefined)[] | undefined;
|
|
76750
|
+
export interface IOnPageContentParsingResultInfo {
|
|
76751
|
+
/** status of the crawling session
|
|
76752
|
+
possible values: in_progress, finished */
|
|
76753
|
+
crawl_progress?: string | undefined;
|
|
76754
|
+
/** details of the crawling session */
|
|
76755
|
+
crawl_status?: CrawlStatusInfo | undefined;
|
|
76756
|
+
/** number of items in the results array */
|
|
76757
|
+
items_count?: number | undefined;
|
|
76758
|
+
/** items array */
|
|
76759
|
+
items?: (OnPageContentParsingItem | undefined)[] | undefined;
|
|
76778
76760
|
[key: string]: any;
|
|
76779
76761
|
}
|
|
76780
76762
|
export declare class OnPageContentParsingItem implements IOnPageContentParsingItem {
|
|
@@ -76807,34 +76789,6 @@ example:
|
|
|
76807
76789
|
page_content?: PageContentInfo | undefined;
|
|
76808
76790
|
[key: string]: any;
|
|
76809
76791
|
}
|
|
76810
|
-
export declare class OnPageContentParsingResultInfo implements IOnPageContentParsingResultInfo {
|
|
76811
|
-
/** status of the crawling session
|
|
76812
|
-
possible values: in_progress, finished */
|
|
76813
|
-
crawl_progress?: string | undefined;
|
|
76814
|
-
/** details of the crawling session */
|
|
76815
|
-
crawl_status?: CrawlStatusInfo | undefined;
|
|
76816
|
-
/** number of items in the results array */
|
|
76817
|
-
items_count?: number | undefined;
|
|
76818
|
-
/** items array */
|
|
76819
|
-
items?: (OnPageContentParsingItem | undefined)[] | undefined;
|
|
76820
|
-
[key: string]: any;
|
|
76821
|
-
constructor(data?: IOnPageContentParsingResultInfo);
|
|
76822
|
-
init(_data?: any): void;
|
|
76823
|
-
static fromJS(data: any): OnPageContentParsingResultInfo;
|
|
76824
|
-
toJSON(data?: any): any;
|
|
76825
|
-
}
|
|
76826
|
-
export interface IOnPageContentParsingResultInfo {
|
|
76827
|
-
/** status of the crawling session
|
|
76828
|
-
possible values: in_progress, finished */
|
|
76829
|
-
crawl_progress?: string | undefined;
|
|
76830
|
-
/** details of the crawling session */
|
|
76831
|
-
crawl_status?: CrawlStatusInfo | undefined;
|
|
76832
|
-
/** number of items in the results array */
|
|
76833
|
-
items_count?: number | undefined;
|
|
76834
|
-
/** items array */
|
|
76835
|
-
items?: (OnPageContentParsingItem | undefined)[] | undefined;
|
|
76836
|
-
[key: string]: any;
|
|
76837
|
-
}
|
|
76838
76792
|
export declare class OnPageContentParsingTaskInfo extends BaseResponseTaskInfo implements IOnPageContentParsingTaskInfo {
|
|
76839
76793
|
/** array of results */
|
|
76840
76794
|
result?: (OnPageContentParsingResultInfo | undefined)[] | undefined;
|
|
@@ -77083,6 +77037,280 @@ possible values: us, de */
|
|
|
77083
77037
|
ip_pool_for_scan?: string | undefined;
|
|
77084
77038
|
[key: string]: any;
|
|
77085
77039
|
}
|
|
77040
|
+
export declare class Urls implements IUrls {
|
|
77041
|
+
/** other URL found in the content element */
|
|
77042
|
+
url?: string | undefined;
|
|
77043
|
+
/** text of the URL’s anchor */
|
|
77044
|
+
anchor_text?: string | undefined;
|
|
77045
|
+
[key: string]: any;
|
|
77046
|
+
constructor(data?: IUrls);
|
|
77047
|
+
init(_data?: any): void;
|
|
77048
|
+
static fromJS(data: any): Urls;
|
|
77049
|
+
toJSON(data?: any): any;
|
|
77050
|
+
}
|
|
77051
|
+
export interface IUrls {
|
|
77052
|
+
/** other URL found in the content element */
|
|
77053
|
+
url?: string | undefined;
|
|
77054
|
+
/** text of the URL’s anchor */
|
|
77055
|
+
anchor_text?: string | undefined;
|
|
77056
|
+
[key: string]: any;
|
|
77057
|
+
}
|
|
77058
|
+
export declare class AryContentInfo implements IAryContentInfo {
|
|
77059
|
+
/** content text */
|
|
77060
|
+
text?: string | undefined;
|
|
77061
|
+
/** page URL
|
|
77062
|
+
displayed in case the text is a link anchor */
|
|
77063
|
+
url?: string | undefined;
|
|
77064
|
+
/** contains other URLs and anchors found in the content element */
|
|
77065
|
+
urls?: (Urls | undefined)[] | undefined;
|
|
77066
|
+
[key: string]: any;
|
|
77067
|
+
constructor(data?: IAryContentInfo);
|
|
77068
|
+
init(_data?: any): void;
|
|
77069
|
+
static fromJS(data: any): AryContentInfo;
|
|
77070
|
+
toJSON(data?: any): any;
|
|
77071
|
+
}
|
|
77072
|
+
export interface IAryContentInfo {
|
|
77073
|
+
/** content text */
|
|
77074
|
+
text?: string | undefined;
|
|
77075
|
+
/** page URL
|
|
77076
|
+
displayed in case the text is a link anchor */
|
|
77077
|
+
url?: string | undefined;
|
|
77078
|
+
/** contains other URLs and anchors found in the content element */
|
|
77079
|
+
urls?: (Urls | undefined)[] | undefined;
|
|
77080
|
+
[key: string]: any;
|
|
77081
|
+
}
|
|
77082
|
+
export declare class PageSectionContentInfo implements IPageSectionContentInfo {
|
|
77083
|
+
/** primary content on the page
|
|
77084
|
+
you can find more information about content priority calculation in this help center article */
|
|
77085
|
+
primary_content?: (ContentItemInfo | undefined)[] | undefined;
|
|
77086
|
+
/** secondary content on the page
|
|
77087
|
+
you can find more information about content priority calculation in this help center article */
|
|
77088
|
+
secondary_content?: (ContentItemInfo | undefined)[] | undefined;
|
|
77089
|
+
/** content of the table on the page */
|
|
77090
|
+
table_content?: (TableContent | undefined)[] | undefined;
|
|
77091
|
+
[key: string]: any;
|
|
77092
|
+
constructor(data?: IPageSectionContentInfo);
|
|
77093
|
+
init(_data?: any): void;
|
|
77094
|
+
static fromJS(data: any): PageSectionContentInfo;
|
|
77095
|
+
toJSON(data?: any): any;
|
|
77096
|
+
}
|
|
77097
|
+
export interface IPageSectionContentInfo {
|
|
77098
|
+
/** primary content on the page
|
|
77099
|
+
you can find more information about content priority calculation in this help center article */
|
|
77100
|
+
primary_content?: (ContentItemInfo | undefined)[] | undefined;
|
|
77101
|
+
/** secondary content on the page
|
|
77102
|
+
you can find more information about content priority calculation in this help center article */
|
|
77103
|
+
secondary_content?: (ContentItemInfo | undefined)[] | undefined;
|
|
77104
|
+
/** content of the table on the page */
|
|
77105
|
+
table_content?: (TableContent | undefined)[] | undefined;
|
|
77106
|
+
[key: string]: any;
|
|
77107
|
+
}
|
|
77108
|
+
export declare class ContentItemInfo implements IContentItemInfo {
|
|
77109
|
+
/** content text */
|
|
77110
|
+
text?: string | undefined;
|
|
77111
|
+
/** page URL
|
|
77112
|
+
displayed in case the text is a link anchor */
|
|
77113
|
+
url?: string | undefined;
|
|
77114
|
+
/** contains other URLs and anchors found in the content element */
|
|
77115
|
+
urls?: (ContentUrlInfo | undefined)[] | undefined;
|
|
77116
|
+
[key: string]: any;
|
|
77117
|
+
constructor(data?: IContentItemInfo);
|
|
77118
|
+
init(_data?: any): void;
|
|
77119
|
+
static fromJS(data: any): ContentItemInfo;
|
|
77120
|
+
toJSON(data?: any): any;
|
|
77121
|
+
}
|
|
77122
|
+
export interface IContentItemInfo {
|
|
77123
|
+
/** content text */
|
|
77124
|
+
text?: string | undefined;
|
|
77125
|
+
/** page URL
|
|
77126
|
+
displayed in case the text is a link anchor */
|
|
77127
|
+
url?: string | undefined;
|
|
77128
|
+
/** contains other URLs and anchors found in the content element */
|
|
77129
|
+
urls?: (ContentUrlInfo | undefined)[] | undefined;
|
|
77130
|
+
[key: string]: any;
|
|
77131
|
+
}
|
|
77132
|
+
export declare class ContentUrlInfo implements IContentUrlInfo {
|
|
77133
|
+
/** other URL found in the content element */
|
|
77134
|
+
url?: string | undefined;
|
|
77135
|
+
/** text of the URL’s anchor */
|
|
77136
|
+
anchor_text?: string | undefined;
|
|
77137
|
+
[key: string]: any;
|
|
77138
|
+
constructor(data?: IContentUrlInfo);
|
|
77139
|
+
init(_data?: any): void;
|
|
77140
|
+
static fromJS(data: any): ContentUrlInfo;
|
|
77141
|
+
toJSON(data?: any): any;
|
|
77142
|
+
}
|
|
77143
|
+
export interface IContentUrlInfo {
|
|
77144
|
+
/** other URL found in the content element */
|
|
77145
|
+
url?: string | undefined;
|
|
77146
|
+
/** text of the URL’s anchor */
|
|
77147
|
+
anchor_text?: string | undefined;
|
|
77148
|
+
[key: string]: any;
|
|
77149
|
+
}
|
|
77150
|
+
export declare class TableContent implements ITableContent {
|
|
77151
|
+
/** parsed content of the header */
|
|
77152
|
+
header?: (TableContentItemInfo | undefined)[] | undefined;
|
|
77153
|
+
/** content of the body of the table */
|
|
77154
|
+
body?: (TableContentItemInfo | undefined)[] | undefined;
|
|
77155
|
+
/** content of the footer of the table */
|
|
77156
|
+
footer?: (TableContentItemInfo | undefined)[] | undefined;
|
|
77157
|
+
[key: string]: any;
|
|
77158
|
+
constructor(data?: ITableContent);
|
|
77159
|
+
init(_data?: any): void;
|
|
77160
|
+
static fromJS(data: any): TableContent;
|
|
77161
|
+
toJSON(data?: any): any;
|
|
77162
|
+
}
|
|
77163
|
+
export interface ITableContent {
|
|
77164
|
+
/** parsed content of the header */
|
|
77165
|
+
header?: (TableContentItemInfo | undefined)[] | undefined;
|
|
77166
|
+
/** content of the body of the table */
|
|
77167
|
+
body?: (TableContentItemInfo | undefined)[] | undefined;
|
|
77168
|
+
/** content of the footer of the table */
|
|
77169
|
+
footer?: (TableContentItemInfo | undefined)[] | undefined;
|
|
77170
|
+
[key: string]: any;
|
|
77171
|
+
}
|
|
77172
|
+
export declare class TableContentItemInfo implements ITableContentItemInfo {
|
|
77173
|
+
/** content of the row cells of the header */
|
|
77174
|
+
row_cells?: (RowCellInfo | undefined)[] | undefined;
|
|
77175
|
+
[key: string]: any;
|
|
77176
|
+
constructor(data?: ITableContentItemInfo);
|
|
77177
|
+
init(_data?: any): void;
|
|
77178
|
+
static fromJS(data: any): TableContentItemInfo;
|
|
77179
|
+
toJSON(data?: any): any;
|
|
77180
|
+
}
|
|
77181
|
+
export interface ITableContentItemInfo {
|
|
77182
|
+
/** content of the row cells of the header */
|
|
77183
|
+
row_cells?: (RowCellInfo | undefined)[] | undefined;
|
|
77184
|
+
[key: string]: any;
|
|
77185
|
+
}
|
|
77186
|
+
export declare class RowCellInfo implements IRowCellInfo {
|
|
77187
|
+
/** content text */
|
|
77188
|
+
text?: string | undefined;
|
|
77189
|
+
/** contains other URLs and anchors found in the content element */
|
|
77190
|
+
urls?: (ContentUrlInfo | undefined)[] | undefined;
|
|
77191
|
+
/** indicates if the text belongs to the header */
|
|
77192
|
+
is_header?: boolean | undefined;
|
|
77193
|
+
[key: string]: any;
|
|
77194
|
+
constructor(data?: IRowCellInfo);
|
|
77195
|
+
init(_data?: any): void;
|
|
77196
|
+
static fromJS(data: any): RowCellInfo;
|
|
77197
|
+
toJSON(data?: any): any;
|
|
77198
|
+
}
|
|
77199
|
+
export interface IRowCellInfo {
|
|
77200
|
+
/** content text */
|
|
77201
|
+
text?: string | undefined;
|
|
77202
|
+
/** contains other URLs and anchors found in the content element */
|
|
77203
|
+
urls?: (ContentUrlInfo | undefined)[] | undefined;
|
|
77204
|
+
/** indicates if the text belongs to the header */
|
|
77205
|
+
is_header?: boolean | undefined;
|
|
77206
|
+
[key: string]: any;
|
|
77207
|
+
}
|
|
77208
|
+
export declare class TopicInfo implements ITopicInfo {
|
|
77209
|
+
/** meta title */
|
|
77210
|
+
h_title?: string | undefined;
|
|
77211
|
+
/** main title of the block */
|
|
77212
|
+
main_title?: string | undefined;
|
|
77213
|
+
/** content author name */
|
|
77214
|
+
author?: string | undefined;
|
|
77215
|
+
/** content language */
|
|
77216
|
+
language?: string | undefined;
|
|
77217
|
+
/** HTML level */
|
|
77218
|
+
level?: string | undefined;
|
|
77219
|
+
/** primary content on the page
|
|
77220
|
+
you can find more information about content priority calculation in this help center article */
|
|
77221
|
+
primary_content?: (ContentItemInfo | undefined)[] | undefined;
|
|
77222
|
+
/** secondary content on the page
|
|
77223
|
+
you can find more information about content priority calculation in this help center article */
|
|
77224
|
+
secondary_content?: (ContentItemInfo | undefined)[] | undefined;
|
|
77225
|
+
/** content of the table on the page */
|
|
77226
|
+
table_content?: (TableContent | undefined)[] | undefined;
|
|
77227
|
+
[key: string]: any;
|
|
77228
|
+
constructor(data?: ITopicInfo);
|
|
77229
|
+
init(_data?: any): void;
|
|
77230
|
+
static fromJS(data: any): TopicInfo;
|
|
77231
|
+
toJSON(data?: any): any;
|
|
77232
|
+
}
|
|
77233
|
+
export interface ITopicInfo {
|
|
77234
|
+
/** meta title */
|
|
77235
|
+
h_title?: string | undefined;
|
|
77236
|
+
/** main title of the block */
|
|
77237
|
+
main_title?: string | undefined;
|
|
77238
|
+
/** content author name */
|
|
77239
|
+
author?: string | undefined;
|
|
77240
|
+
/** content language */
|
|
77241
|
+
language?: string | undefined;
|
|
77242
|
+
/** HTML level */
|
|
77243
|
+
level?: string | undefined;
|
|
77244
|
+
/** primary content on the page
|
|
77245
|
+
you can find more information about content priority calculation in this help center article */
|
|
77246
|
+
primary_content?: (ContentItemInfo | undefined)[] | undefined;
|
|
77247
|
+
/** secondary content on the page
|
|
77248
|
+
you can find more information about content priority calculation in this help center article */
|
|
77249
|
+
secondary_content?: (ContentItemInfo | undefined)[] | undefined;
|
|
77250
|
+
/** content of the table on the page */
|
|
77251
|
+
table_content?: (TableContent | undefined)[] | undefined;
|
|
77252
|
+
[key: string]: any;
|
|
77253
|
+
}
|
|
77254
|
+
export declare class PageContentInfo implements IPageContentInfo {
|
|
77255
|
+
/** parsed content of the header */
|
|
77256
|
+
header?: PageSectionContentInfo | undefined;
|
|
77257
|
+
/** content of the footer of the table */
|
|
77258
|
+
footer?: PageSectionContentInfo | undefined;
|
|
77259
|
+
/** main topic on the page
|
|
77260
|
+
you can find more information about topic priority calculation in this help center article */
|
|
77261
|
+
main_topic?: (TopicInfo | undefined)[] | undefined;
|
|
77262
|
+
/** secondary topic on the page
|
|
77263
|
+
you can find more information about topic priority calculation in this help center article */
|
|
77264
|
+
secondary_topic?: (TopicInfo | undefined)[] | undefined;
|
|
77265
|
+
[key: string]: any;
|
|
77266
|
+
constructor(data?: IPageContentInfo);
|
|
77267
|
+
init(_data?: any): void;
|
|
77268
|
+
static fromJS(data: any): PageContentInfo;
|
|
77269
|
+
toJSON(data?: any): any;
|
|
77270
|
+
}
|
|
77271
|
+
export interface IPageContentInfo {
|
|
77272
|
+
/** parsed content of the header */
|
|
77273
|
+
header?: PageSectionContentInfo | undefined;
|
|
77274
|
+
/** content of the footer of the table */
|
|
77275
|
+
footer?: PageSectionContentInfo | undefined;
|
|
77276
|
+
/** main topic on the page
|
|
77277
|
+
you can find more information about topic priority calculation in this help center article */
|
|
77278
|
+
main_topic?: (TopicInfo | undefined)[] | undefined;
|
|
77279
|
+
/** secondary topic on the page
|
|
77280
|
+
you can find more information about topic priority calculation in this help center article */
|
|
77281
|
+
secondary_topic?: (TopicInfo | undefined)[] | undefined;
|
|
77282
|
+
[key: string]: any;
|
|
77283
|
+
}
|
|
77284
|
+
export declare class OnPageContentParsingLiveItem implements IOnPageContentParsingLiveItem {
|
|
77285
|
+
/** type of element */
|
|
77286
|
+
type?: string | undefined;
|
|
77287
|
+
/** date and time when the content was fethced
|
|
77288
|
+
example:
|
|
77289
|
+
"2022-11-01 10:02:52 +00:00" */
|
|
77290
|
+
fetch_time?: string | undefined;
|
|
77291
|
+
/** status code of the page */
|
|
77292
|
+
status_code?: number | undefined;
|
|
77293
|
+
/** parsed content of the page */
|
|
77294
|
+
page_content?: PageContentInfo | undefined;
|
|
77295
|
+
[key: string]: any;
|
|
77296
|
+
constructor(data?: IOnPageContentParsingLiveItem);
|
|
77297
|
+
init(_data?: any): void;
|
|
77298
|
+
static fromJS(data: any): OnPageContentParsingLiveItem;
|
|
77299
|
+
toJSON(data?: any): any;
|
|
77300
|
+
}
|
|
77301
|
+
export interface IOnPageContentParsingLiveItem {
|
|
77302
|
+
/** type of element */
|
|
77303
|
+
type?: string | undefined;
|
|
77304
|
+
/** date and time when the content was fethced
|
|
77305
|
+
example:
|
|
77306
|
+
"2022-11-01 10:02:52 +00:00" */
|
|
77307
|
+
fetch_time?: string | undefined;
|
|
77308
|
+
/** status code of the page */
|
|
77309
|
+
status_code?: number | undefined;
|
|
77310
|
+
/** parsed content of the page */
|
|
77311
|
+
page_content?: PageContentInfo | undefined;
|
|
77312
|
+
[key: string]: any;
|
|
77313
|
+
}
|
|
77086
77314
|
export declare class OnPageContentParsingLiveResultInfo implements IOnPageContentParsingLiveResultInfo {
|
|
77087
77315
|
/** status of the crawling session
|
|
77088
77316
|
possible values: in_progress, finished */
|
|
@@ -77092,7 +77320,7 @@ possible values: in_progress, finished */
|
|
|
77092
77320
|
/** number of items in the results array */
|
|
77093
77321
|
items_count?: number | undefined;
|
|
77094
77322
|
/** items array */
|
|
77095
|
-
items?: (
|
|
77323
|
+
items?: (OnPageContentParsingLiveItem | undefined)[] | undefined;
|
|
77096
77324
|
[key: string]: any;
|
|
77097
77325
|
constructor(data?: IOnPageContentParsingLiveResultInfo);
|
|
77098
77326
|
init(_data?: any): void;
|
|
@@ -77108,7 +77336,7 @@ possible values: in_progress, finished */
|
|
|
77108
77336
|
/** number of items in the results array */
|
|
77109
77337
|
items_count?: number | undefined;
|
|
77110
77338
|
/** items array */
|
|
77111
|
-
items?: (
|
|
77339
|
+
items?: (OnPageContentParsingLiveItem | undefined)[] | undefined;
|
|
77112
77340
|
[key: string]: any;
|
|
77113
77341
|
}
|
|
77114
77342
|
export declare class OnPageContentParsingLiveTaskInfo extends BaseResponseTaskInfo implements IOnPageContentParsingLiveTaskInfo {
|
|
@@ -78492,7 +78720,7 @@ optional field
|
|
|
78492
78720
|
you can add several filters at once (8 filters maximum)
|
|
78493
78721
|
you should set a logical operator and, or between the conditions
|
|
78494
78722
|
the following operators are supported:
|
|
78495
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like
|
|
78723
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, match, not_match
|
|
78496
78724
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
78497
78725
|
example:
|
|
78498
78726
|
["country","=", "US"]
|
|
@@ -78592,7 +78820,7 @@ optional field
|
|
|
78592
78820
|
you can add several filters at once (8 filters maximum)
|
|
78593
78821
|
you should set a logical operator and, or between the conditions
|
|
78594
78822
|
the following operators are supported:
|
|
78595
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like
|
|
78823
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, match, not_match
|
|
78596
78824
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
78597
78825
|
example:
|
|
78598
78826
|
["country","=", "US"]
|
|
@@ -78641,17 +78869,16 @@ you will find the specified tag value in the data object of the response */
|
|
|
78641
78869
|
tag?: string | undefined;
|
|
78642
78870
|
[key: string]: any;
|
|
78643
78871
|
}
|
|
78644
|
-
/** content rating rating related to content_info */
|
|
78645
78872
|
export declare class ContentAnalysisRatingInfo implements IContentAnalysisRatingInfo {
|
|
78646
78873
|
/** rating name
|
|
78647
78874
|
here you can find the following elements: Max5, Percents, CustomMax */
|
|
78648
78875
|
name?: string | undefined;
|
|
78649
78876
|
/** the value of the rating */
|
|
78650
78877
|
rating_value?: number | undefined;
|
|
78878
|
+
/** maximum value for the rating name */
|
|
78879
|
+
max_rating_value?: number | undefined;
|
|
78651
78880
|
/** number of votes */
|
|
78652
78881
|
rating_count?: number | undefined;
|
|
78653
|
-
/** maximum value for the rating name */
|
|
78654
|
-
max_rating_value?: string | undefined;
|
|
78655
78882
|
/** relative rating */
|
|
78656
78883
|
relative_rating?: number | undefined;
|
|
78657
78884
|
[key: string]: any;
|
|
@@ -78660,17 +78887,16 @@ here you can find the following elements: Max5, Percents, CustomMax */
|
|
|
78660
78887
|
static fromJS(data: any): ContentAnalysisRatingInfo;
|
|
78661
78888
|
toJSON(data?: any): any;
|
|
78662
78889
|
}
|
|
78663
|
-
/** content rating rating related to content_info */
|
|
78664
78890
|
export interface IContentAnalysisRatingInfo {
|
|
78665
78891
|
/** rating name
|
|
78666
78892
|
here you can find the following elements: Max5, Percents, CustomMax */
|
|
78667
78893
|
name?: string | undefined;
|
|
78668
78894
|
/** the value of the rating */
|
|
78669
78895
|
rating_value?: number | undefined;
|
|
78896
|
+
/** maximum value for the rating name */
|
|
78897
|
+
max_rating_value?: number | undefined;
|
|
78670
78898
|
/** number of votes */
|
|
78671
78899
|
rating_count?: number | undefined;
|
|
78672
|
-
/** maximum value for the rating name */
|
|
78673
|
-
max_rating_value?: string | undefined;
|
|
78674
78900
|
/** relative rating */
|
|
78675
78901
|
relative_rating?: number | undefined;
|
|
78676
78902
|
[key: string]: any;
|
|
@@ -78733,7 +78959,7 @@ article, header */
|
|
|
78733
78959
|
semantic_location?: string | undefined;
|
|
78734
78960
|
/** content rating
|
|
78735
78961
|
rating related to content_info */
|
|
78736
|
-
rating?: ContentAnalysisRatingInfo
|
|
78962
|
+
rating?: ContentAnalysisRatingInfo;
|
|
78737
78963
|
/** citation group date and time
|
|
78738
78964
|
indicates content publication date or date and time when our crawler visited the page for the first time;
|
|
78739
78965
|
this field can be used to group citations by date and display citation trends;
|
|
@@ -78805,7 +79031,7 @@ article, header */
|
|
|
78805
79031
|
semantic_location?: string | undefined;
|
|
78806
79032
|
/** content rating
|
|
78807
79033
|
rating related to content_info */
|
|
78808
|
-
rating?: ContentAnalysisRatingInfo
|
|
79034
|
+
rating?: ContentAnalysisRatingInfo;
|
|
78809
79035
|
/** citation group date and time
|
|
78810
79036
|
indicates content publication date or date and time when our crawler visited the page for the first time;
|
|
78811
79037
|
this field can be used to group citations by date and display citation trends;
|
|
@@ -78861,7 +79087,7 @@ to obtain a full list of available categories, refer to the Categories endpoint
|
|
|
78861
79087
|
page_types?: string[] | undefined;
|
|
78862
79088
|
/** ratings found on the page
|
|
78863
79089
|
all ratings found on the page based on microdata */
|
|
78864
|
-
ratings?: (
|
|
79090
|
+
ratings?: (ContentAnalysisRatingInfo | undefined)[] | undefined;
|
|
78865
79091
|
/** social media engagement metrics
|
|
78866
79092
|
data on social media interactions associated with the content based on website embeds developed and supported by social media platforms */
|
|
78867
79093
|
social_metrics?: (SocialMetricsInfo | undefined)[] | undefined;
|
|
@@ -78919,7 +79145,7 @@ to obtain a full list of available categories, refer to the Categories endpoint
|
|
|
78919
79145
|
page_types?: string[] | undefined;
|
|
78920
79146
|
/** ratings found on the page
|
|
78921
79147
|
all ratings found on the page based on microdata */
|
|
78922
|
-
ratings?: (
|
|
79148
|
+
ratings?: (ContentAnalysisRatingInfo | undefined)[] | undefined;
|
|
78923
79149
|
/** social media engagement metrics
|
|
78924
79150
|
data on social media interactions associated with the content based on website embeds developed and supported by social media platforms */
|
|
78925
79151
|
social_metrics?: (SocialMetricsInfo | undefined)[] | undefined;
|
|
@@ -79343,7 +79569,7 @@ optional field
|
|
|
79343
79569
|
you can add several filters at once (8 filters maximum)
|
|
79344
79570
|
you should set a logical operator and, or between the conditions
|
|
79345
79571
|
the following operators are supported:
|
|
79346
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, has, has_not
|
|
79572
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, has, has_not, match, not_match
|
|
79347
79573
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
79348
79574
|
example:
|
|
79349
79575
|
["domain","<>", "logitech.com"]
|
|
@@ -79427,7 +79653,7 @@ optional field
|
|
|
79427
79653
|
you can add several filters at once (8 filters maximum)
|
|
79428
79654
|
you should set a logical operator and, or between the conditions
|
|
79429
79655
|
the following operators are supported:
|
|
79430
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, has, has_not
|
|
79656
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, has, has_not, match, not_match
|
|
79431
79657
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
79432
79658
|
example:
|
|
79433
79659
|
["domain","<>", "logitech.com"]
|
|
@@ -79610,7 +79836,7 @@ optional field
|
|
|
79610
79836
|
you can add several filters at once (8 filters maximum)
|
|
79611
79837
|
you should set a logical operator and, or between the conditions
|
|
79612
79838
|
the following operators are supported:
|
|
79613
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, has, has_not
|
|
79839
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, has, has_not, match, not_match
|
|
79614
79840
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
79615
79841
|
example:
|
|
79616
79842
|
["domain","<>", "logitech.com"]
|
|
@@ -79701,7 +79927,7 @@ optional field
|
|
|
79701
79927
|
you can add several filters at once (8 filters maximum)
|
|
79702
79928
|
you should set a logical operator and, or between the conditions
|
|
79703
79929
|
the following operators are supported:
|
|
79704
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, has, has_not
|
|
79930
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, has, has_not, match, not_match
|
|
79705
79931
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
79706
79932
|
example:
|
|
79707
79933
|
["domain","<>", "logitech.com"]
|
|
@@ -79846,7 +80072,7 @@ optional field
|
|
|
79846
80072
|
you can add several filters at once (8 filters maximum)
|
|
79847
80073
|
you should set a logical operator and, or between the conditions
|
|
79848
80074
|
the following operators are supported:
|
|
79849
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, has, has_not
|
|
80075
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, has, has_not, match, not_match
|
|
79850
80076
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
79851
80077
|
example:
|
|
79852
80078
|
["domain","<>", "logitech.com"]
|
|
@@ -79941,7 +80167,7 @@ optional field
|
|
|
79941
80167
|
you can add several filters at once (8 filters maximum)
|
|
79942
80168
|
you should set a logical operator and, or between the conditions
|
|
79943
80169
|
the following operators are supported:
|
|
79944
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, has, has_not
|
|
80170
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, has, has_not, match, not_match
|
|
79945
80171
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
79946
80172
|
example:
|
|
79947
80173
|
["domain","<>", "logitech.com"]
|
|
@@ -80149,7 +80375,7 @@ optional field
|
|
|
80149
80375
|
you can add several filters at once (8 filters maximum)
|
|
80150
80376
|
you should set a logical operator and, or between the conditions
|
|
80151
80377
|
the following operators are supported:
|
|
80152
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, has, has_not
|
|
80378
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, has, has_not, match, not_match
|
|
80153
80379
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
80154
80380
|
example:
|
|
80155
80381
|
["domain","<>", "logitech.com"]
|
|
@@ -80225,7 +80451,7 @@ optional field
|
|
|
80225
80451
|
you can add several filters at once (8 filters maximum)
|
|
80226
80452
|
you should set a logical operator and, or between the conditions
|
|
80227
80453
|
the following operators are supported:
|
|
80228
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, has, has_not
|
|
80454
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, has, has_not, match, not_match
|
|
80229
80455
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
80230
80456
|
example:
|
|
80231
80457
|
["domain","<>", "logitech.com"]
|
|
@@ -83099,13 +83325,18 @@ export interface IMerchantGoogleProductsTaskGetHtmlResponseInfo extends IBaseRes
|
|
|
83099
83325
|
}
|
|
83100
83326
|
export declare class MerchantGoogleSellersTaskPostRequestInfo implements IMerchantGoogleSellersTaskPostRequestInfo {
|
|
83101
83327
|
/** unique product identifier on Google Shopping
|
|
83102
|
-
required field
|
|
83103
|
-
you can get this value making a separate request to the Google Shopping Products endpoint
|
|
83104
|
-
note that there is no full list of possible values as the product_id is a dynamic value assigned by Google
|
|
83328
|
+
required field if data_docid is not specified
|
|
83329
|
+
you can get this value for a certain product by making a separate request to the Google Shopping Products endpoint
|
|
83105
83330
|
example:
|
|
83106
83331
|
4485466949985702538
|
|
83107
83332
|
learn more about the parameter in this help center guide */
|
|
83108
|
-
product_id?: string;
|
|
83333
|
+
product_id?: string | undefined;
|
|
83334
|
+
/** unique identifier of the SERP data element
|
|
83335
|
+
required field if product_id is not specified
|
|
83336
|
+
you can get this value for a certain element by making a separate request to the Google Shopping Products endpoint
|
|
83337
|
+
example:
|
|
83338
|
+
13071766526042404278 */
|
|
83339
|
+
data_docid?: string | undefined;
|
|
83109
83340
|
/** task priority
|
|
83110
83341
|
optional field
|
|
83111
83342
|
can take the following values:
|
|
@@ -83214,13 +83445,18 @@ learn more on our Help Center */
|
|
|
83214
83445
|
}
|
|
83215
83446
|
export interface IMerchantGoogleSellersTaskPostRequestInfo {
|
|
83216
83447
|
/** unique product identifier on Google Shopping
|
|
83217
|
-
required field
|
|
83218
|
-
you can get this value making a separate request to the Google Shopping Products endpoint
|
|
83219
|
-
note that there is no full list of possible values as the product_id is a dynamic value assigned by Google
|
|
83448
|
+
required field if data_docid is not specified
|
|
83449
|
+
you can get this value for a certain product by making a separate request to the Google Shopping Products endpoint
|
|
83220
83450
|
example:
|
|
83221
83451
|
4485466949985702538
|
|
83222
83452
|
learn more about the parameter in this help center guide */
|
|
83223
|
-
product_id?: string;
|
|
83453
|
+
product_id?: string | undefined;
|
|
83454
|
+
/** unique identifier of the SERP data element
|
|
83455
|
+
required field if product_id is not specified
|
|
83456
|
+
you can get this value for a certain element by making a separate request to the Google Shopping Products endpoint
|
|
83457
|
+
example:
|
|
83458
|
+
13071766526042404278 */
|
|
83459
|
+
data_docid?: string | undefined;
|
|
83224
83460
|
/** task priority
|
|
83225
83461
|
optional field
|
|
83226
83462
|
can take the following values:
|
|
@@ -83782,19 +84018,26 @@ export interface IMerchantGoogleSellersTaskGetHtmlResponseInfo extends IBaseResp
|
|
|
83782
84018
|
[key: string]: any;
|
|
83783
84019
|
}
|
|
83784
84020
|
export declare class MerchantGoogleProductSpecTaskPostRequestInfo implements IMerchantGoogleProductSpecTaskPostRequestInfo {
|
|
83785
|
-
/** product
|
|
83786
|
-
required field
|
|
83787
|
-
|
|
83788
|
-
|
|
84021
|
+
/** unique product identifier on Google Shopping
|
|
84022
|
+
required field if data_docid is not specified
|
|
84023
|
+
you can get this value for a certain product by making a separate request to the Google Shopping Products endpoint
|
|
84024
|
+
example:
|
|
84025
|
+
4485466949985702538
|
|
83789
84026
|
learn more about the parameter in this help center guide */
|
|
83790
|
-
product_id?: string;
|
|
84027
|
+
product_id?: string | undefined;
|
|
84028
|
+
/** unique identifier of the SERP data element
|
|
84029
|
+
required field if product_id is not specified
|
|
84030
|
+
you can get this value for a certain element by making a separate request to the Google Shopping Products endpoint
|
|
84031
|
+
example:
|
|
84032
|
+
13071766526042404278 */
|
|
84033
|
+
data_docid?: string | undefined;
|
|
83791
84034
|
/** task priority
|
|
83792
84035
|
optional field
|
|
83793
84036
|
can take the following values:
|
|
83794
84037
|
1 – normal execution priority (set by default)
|
|
83795
84038
|
2 – high execution priority
|
|
83796
84039
|
You will be additionally charged for the tasks with high execution priority.
|
|
83797
|
-
|
|
84040
|
+
the cost can be calculated on the Pricing page. */
|
|
83798
84041
|
priority?: number | undefined;
|
|
83799
84042
|
/** full name of the location
|
|
83800
84043
|
required field if you don’t specify location_code or location_coordinate
|
|
@@ -83890,19 +84133,26 @@ learn more on our Help Center */
|
|
|
83890
84133
|
toJSON(data?: any): any;
|
|
83891
84134
|
}
|
|
83892
84135
|
export interface IMerchantGoogleProductSpecTaskPostRequestInfo {
|
|
83893
|
-
/** product
|
|
83894
|
-
required field
|
|
83895
|
-
|
|
83896
|
-
|
|
84136
|
+
/** unique product identifier on Google Shopping
|
|
84137
|
+
required field if data_docid is not specified
|
|
84138
|
+
you can get this value for a certain product by making a separate request to the Google Shopping Products endpoint
|
|
84139
|
+
example:
|
|
84140
|
+
4485466949985702538
|
|
83897
84141
|
learn more about the parameter in this help center guide */
|
|
83898
|
-
product_id?: string;
|
|
84142
|
+
product_id?: string | undefined;
|
|
84143
|
+
/** unique identifier of the SERP data element
|
|
84144
|
+
required field if product_id is not specified
|
|
84145
|
+
you can get this value for a certain element by making a separate request to the Google Shopping Products endpoint
|
|
84146
|
+
example:
|
|
84147
|
+
13071766526042404278 */
|
|
84148
|
+
data_docid?: string | undefined;
|
|
83899
84149
|
/** task priority
|
|
83900
84150
|
optional field
|
|
83901
84151
|
can take the following values:
|
|
83902
84152
|
1 – normal execution priority (set by default)
|
|
83903
84153
|
2 – high execution priority
|
|
83904
84154
|
You will be additionally charged for the tasks with high execution priority.
|
|
83905
|
-
|
|
84155
|
+
the cost can be calculated on the Pricing page. */
|
|
83906
84156
|
priority?: number | undefined;
|
|
83907
84157
|
/** full name of the location
|
|
83908
84158
|
required field if you don’t specify location_code or location_coordinate
|
|
@@ -84310,12 +84560,19 @@ export interface IMerchantGoogleProductSpecTaskGetHtmlResponseInfo extends IBase
|
|
|
84310
84560
|
[key: string]: any;
|
|
84311
84561
|
}
|
|
84312
84562
|
export declare class MerchantGoogleProductInfoTaskPostRequestInfo implements IMerchantGoogleProductInfoTaskPostRequestInfo {
|
|
84313
|
-
/** product
|
|
84314
|
-
required field
|
|
84315
|
-
|
|
84316
|
-
|
|
84563
|
+
/** unique product identifier on Google Shopping
|
|
84564
|
+
required field if data_docid is not specified
|
|
84565
|
+
you can get this value for a certain product by making a separate request to the Google Shopping Products endpoint
|
|
84566
|
+
example:
|
|
84567
|
+
4485466949985702538
|
|
84317
84568
|
learn more about the parameter in this help center guide */
|
|
84318
|
-
product_id?: string;
|
|
84569
|
+
product_id?: string | undefined;
|
|
84570
|
+
/** unique identifier of the SERP data element
|
|
84571
|
+
required field if product_id is not specified
|
|
84572
|
+
you can get this value for a certain element by making a separate request to the Google Shopping Products endpoint
|
|
84573
|
+
example:
|
|
84574
|
+
13071766526042404278 */
|
|
84575
|
+
data_docid?: string | undefined;
|
|
84319
84576
|
/** task priority
|
|
84320
84577
|
optional field
|
|
84321
84578
|
can take the following values:
|
|
@@ -84409,12 +84666,19 @@ learn more on our Help Center */
|
|
|
84409
84666
|
toJSON(data?: any): any;
|
|
84410
84667
|
}
|
|
84411
84668
|
export interface IMerchantGoogleProductInfoTaskPostRequestInfo {
|
|
84412
|
-
/** product
|
|
84413
|
-
required field
|
|
84414
|
-
|
|
84415
|
-
|
|
84669
|
+
/** unique product identifier on Google Shopping
|
|
84670
|
+
required field if data_docid is not specified
|
|
84671
|
+
you can get this value for a certain product by making a separate request to the Google Shopping Products endpoint
|
|
84672
|
+
example:
|
|
84673
|
+
4485466949985702538
|
|
84416
84674
|
learn more about the parameter in this help center guide */
|
|
84417
|
-
product_id?: string;
|
|
84675
|
+
product_id?: string | undefined;
|
|
84676
|
+
/** unique identifier of the SERP data element
|
|
84677
|
+
required field if product_id is not specified
|
|
84678
|
+
you can get this value for a certain element by making a separate request to the Google Shopping Products endpoint
|
|
84679
|
+
example:
|
|
84680
|
+
13071766526042404278 */
|
|
84681
|
+
data_docid?: string | undefined;
|
|
84418
84682
|
/** task priority
|
|
84419
84683
|
optional field
|
|
84420
84684
|
can take the following values:
|
|
@@ -86259,6 +86523,42 @@ export interface IMerchantAmazonAsinTasksReadyResponseInfo extends IBaseResponse
|
|
|
86259
86523
|
tasks?: (MerchantAmazonAsinTasksReadyTaskInfo | undefined)[] | undefined;
|
|
86260
86524
|
[key: string]: any;
|
|
86261
86525
|
}
|
|
86526
|
+
export declare class AmazonApplicableVouchersItem implements IAmazonApplicableVouchersItem {
|
|
86527
|
+
/** type of element */
|
|
86528
|
+
type?: string | undefined;
|
|
86529
|
+
/** text of the voucher */
|
|
86530
|
+
text?: string | undefined;
|
|
86531
|
+
/** value of the fixed discount */
|
|
86532
|
+
fixed_discount?: number | undefined;
|
|
86533
|
+
/** currency code of the fixed discount */
|
|
86534
|
+
fixed_discount_currency?: string | undefined;
|
|
86535
|
+
/** value of the percentage discount
|
|
86536
|
+
if the discount is fixed, the value will be null */
|
|
86537
|
+
percentage_discount?: number | undefined;
|
|
86538
|
+
/** important details about the terms of discount vouchers */
|
|
86539
|
+
important_details?: string | undefined;
|
|
86540
|
+
[key: string]: any;
|
|
86541
|
+
constructor(data?: IAmazonApplicableVouchersItem);
|
|
86542
|
+
init(_data?: any): void;
|
|
86543
|
+
static fromJS(data: any): AmazonApplicableVouchersItem;
|
|
86544
|
+
toJSON(data?: any): any;
|
|
86545
|
+
}
|
|
86546
|
+
export interface IAmazonApplicableVouchersItem {
|
|
86547
|
+
/** type of element */
|
|
86548
|
+
type?: string | undefined;
|
|
86549
|
+
/** text of the voucher */
|
|
86550
|
+
text?: string | undefined;
|
|
86551
|
+
/** value of the fixed discount */
|
|
86552
|
+
fixed_discount?: number | undefined;
|
|
86553
|
+
/** currency code of the fixed discount */
|
|
86554
|
+
fixed_discount_currency?: string | undefined;
|
|
86555
|
+
/** value of the percentage discount
|
|
86556
|
+
if the discount is fixed, the value will be null */
|
|
86557
|
+
percentage_discount?: number | undefined;
|
|
86558
|
+
/** important details about the terms of discount vouchers */
|
|
86559
|
+
important_details?: string | undefined;
|
|
86560
|
+
[key: string]: any;
|
|
86561
|
+
}
|
|
86262
86562
|
export declare class AmazonProductNewerModelInfo implements IAmazonProductNewerModelInfo {
|
|
86263
86563
|
/** product title */
|
|
86264
86564
|
title?: string | undefined;
|
|
@@ -86348,7 +86648,7 @@ export interface IProductInformationImageRow extends IBaseProductInformationRowI
|
|
|
86348
86648
|
[key: string]: any;
|
|
86349
86649
|
}
|
|
86350
86650
|
export declare class ProductInformationTextRow extends BaseProductInformationRowItem implements IProductInformationTextRow {
|
|
86351
|
-
/** text
|
|
86651
|
+
/** text of the voucher */
|
|
86352
86652
|
text?: string | undefined;
|
|
86353
86653
|
[key: string]: any;
|
|
86354
86654
|
constructor(data?: IProductInformationTextRow);
|
|
@@ -86357,7 +86657,7 @@ export declare class ProductInformationTextRow extends BaseProductInformationRow
|
|
|
86357
86657
|
toJSON(data?: any): any;
|
|
86358
86658
|
}
|
|
86359
86659
|
export interface IProductInformationTextRow extends IBaseProductInformationRowItem {
|
|
86360
|
-
/** text
|
|
86660
|
+
/** text of the voucher */
|
|
86361
86661
|
text?: string | undefined;
|
|
86362
86662
|
[key: string]: any;
|
|
86363
86663
|
}
|
|
@@ -86397,6 +86697,104 @@ export interface IProductInformationExtendedItem extends IBaseProductInformation
|
|
|
86397
86697
|
contents?: (ProductInformationRows | undefined)[] | undefined;
|
|
86398
86698
|
[key: string]: any;
|
|
86399
86699
|
}
|
|
86700
|
+
export declare class UserProfileInfo implements IUserProfileInfo {
|
|
86701
|
+
/** the name of the reviewer */
|
|
86702
|
+
name?: string | undefined;
|
|
86703
|
+
/** URL to the profile picture of the reviewer */
|
|
86704
|
+
avatar?: string | undefined;
|
|
86705
|
+
/** relevant url */
|
|
86706
|
+
url?: string | undefined;
|
|
86707
|
+
/** total number of reviews submitted by the reviewer */
|
|
86708
|
+
reviews_count?: number | undefined;
|
|
86709
|
+
/** country of the reviewer */
|
|
86710
|
+
locations?: string | undefined;
|
|
86711
|
+
[key: string]: any;
|
|
86712
|
+
constructor(data?: IUserProfileInfo);
|
|
86713
|
+
init(_data?: any): void;
|
|
86714
|
+
static fromJS(data: any): UserProfileInfo;
|
|
86715
|
+
toJSON(data?: any): any;
|
|
86716
|
+
}
|
|
86717
|
+
export interface IUserProfileInfo {
|
|
86718
|
+
/** the name of the reviewer */
|
|
86719
|
+
name?: string | undefined;
|
|
86720
|
+
/** URL to the profile picture of the reviewer */
|
|
86721
|
+
avatar?: string | undefined;
|
|
86722
|
+
/** relevant url */
|
|
86723
|
+
url?: string | undefined;
|
|
86724
|
+
/** total number of reviews submitted by the reviewer */
|
|
86725
|
+
reviews_count?: number | undefined;
|
|
86726
|
+
/** country of the reviewer */
|
|
86727
|
+
locations?: string | undefined;
|
|
86728
|
+
[key: string]: any;
|
|
86729
|
+
}
|
|
86730
|
+
export declare class AmazonAmazonReviewItemSerpElementItem extends BaseAmazonSerpElementItem implements IAmazonAmazonReviewItemSerpElementItem {
|
|
86731
|
+
/** the alignment of the review in SERP
|
|
86732
|
+
can take the following values: right */
|
|
86733
|
+
position?: string | undefined;
|
|
86734
|
+
/** indicates whether the review has the “Verified Purchase” mark */
|
|
86735
|
+
verified?: boolean | undefined;
|
|
86736
|
+
/** subtitle of the review */
|
|
86737
|
+
subtitle?: string | undefined;
|
|
86738
|
+
/** helpful votes count
|
|
86739
|
+
number of users who clicked on the ‘Helpful” button under the review text */
|
|
86740
|
+
helpful_votes?: number | undefined;
|
|
86741
|
+
/** images of the product submitted by the reviewer */
|
|
86742
|
+
images?: (ImagesElement | undefined)[] | undefined;
|
|
86743
|
+
/** videos of the product submitted by the reviewer */
|
|
86744
|
+
videos?: (VideoElement | undefined)[] | undefined;
|
|
86745
|
+
/** user profile of the reviewer */
|
|
86746
|
+
user_profile?: UserProfileInfo | undefined;
|
|
86747
|
+
/** title of the review */
|
|
86748
|
+
title?: string | undefined;
|
|
86749
|
+
/** URL to the reviewer’s profile */
|
|
86750
|
+
url?: string | undefined;
|
|
86751
|
+
/** content of the review */
|
|
86752
|
+
review_text?: string | undefined;
|
|
86753
|
+
/** date and time when the review was published
|
|
86754
|
+
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”;
|
|
86755
|
+
example:
|
|
86756
|
+
2019-11-15 12:57:46 +00:00 */
|
|
86757
|
+
publication_date?: string | undefined;
|
|
86758
|
+
/** the rating score submitted by the reviewer */
|
|
86759
|
+
rating?: RatingInfo | undefined;
|
|
86760
|
+
[key: string]: any;
|
|
86761
|
+
constructor(data?: IAmazonAmazonReviewItemSerpElementItem);
|
|
86762
|
+
init(_data?: any): void;
|
|
86763
|
+
static fromJS(data: any): AmazonAmazonReviewItemSerpElementItem;
|
|
86764
|
+
toJSON(data?: any): any;
|
|
86765
|
+
}
|
|
86766
|
+
export interface IAmazonAmazonReviewItemSerpElementItem extends IBaseAmazonSerpElementItem {
|
|
86767
|
+
/** the alignment of the review in SERP
|
|
86768
|
+
can take the following values: right */
|
|
86769
|
+
position?: string | undefined;
|
|
86770
|
+
/** indicates whether the review has the “Verified Purchase” mark */
|
|
86771
|
+
verified?: boolean | undefined;
|
|
86772
|
+
/** subtitle of the review */
|
|
86773
|
+
subtitle?: string | undefined;
|
|
86774
|
+
/** helpful votes count
|
|
86775
|
+
number of users who clicked on the ‘Helpful” button under the review text */
|
|
86776
|
+
helpful_votes?: number | undefined;
|
|
86777
|
+
/** images of the product submitted by the reviewer */
|
|
86778
|
+
images?: (ImagesElement | undefined)[] | undefined;
|
|
86779
|
+
/** videos of the product submitted by the reviewer */
|
|
86780
|
+
videos?: (VideoElement | undefined)[] | undefined;
|
|
86781
|
+
/** user profile of the reviewer */
|
|
86782
|
+
user_profile?: UserProfileInfo | undefined;
|
|
86783
|
+
/** title of the review */
|
|
86784
|
+
title?: string | undefined;
|
|
86785
|
+
/** URL to the reviewer’s profile */
|
|
86786
|
+
url?: string | undefined;
|
|
86787
|
+
/** content of the review */
|
|
86788
|
+
review_text?: string | undefined;
|
|
86789
|
+
/** date and time when the review was published
|
|
86790
|
+
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”;
|
|
86791
|
+
example:
|
|
86792
|
+
2019-11-15 12:57:46 +00:00 */
|
|
86793
|
+
publication_date?: string | undefined;
|
|
86794
|
+
/** the rating score submitted by the reviewer */
|
|
86795
|
+
rating?: RatingInfo | undefined;
|
|
86796
|
+
[key: string]: any;
|
|
86797
|
+
}
|
|
86400
86798
|
export declare class AmazonAmazonProductInfoSerpElementItem extends BaseAmazonSerpElementItem implements IAmazonAmazonProductInfoSerpElementItem {
|
|
86401
86799
|
/** the alignment of the element in Amazon SERP
|
|
86402
86800
|
possible values:
|
|
@@ -86435,6 +86833,8 @@ if the value is true, the product is marked with the “Amazon’s choice” lab
|
|
|
86435
86833
|
rating?: RatingElement | undefined;
|
|
86436
86834
|
/** indicates whether the newer model of the product is available */
|
|
86437
86835
|
is_newer_model_available?: boolean | undefined;
|
|
86836
|
+
/** array of objects containing information about applicable vouchers */
|
|
86837
|
+
applicable_vouchers?: (AmazonApplicableVouchersItem | undefined)[] | undefined;
|
|
86438
86838
|
/** information about the newer model of the product */
|
|
86439
86839
|
newer_model?: AmazonProductNewerModelInfo | undefined;
|
|
86440
86840
|
/** contains related product categories */
|
|
@@ -86499,6 +86899,8 @@ if the value is true, the product is marked with the “Amazon’s choice” lab
|
|
|
86499
86899
|
rating?: RatingElement | undefined;
|
|
86500
86900
|
/** indicates whether the newer model of the product is available */
|
|
86501
86901
|
is_newer_model_available?: boolean | undefined;
|
|
86902
|
+
/** array of objects containing information about applicable vouchers */
|
|
86903
|
+
applicable_vouchers?: (AmazonApplicableVouchersItem | undefined)[] | undefined;
|
|
86502
86904
|
/** information about the newer model of the product */
|
|
86503
86905
|
newer_model?: AmazonProductNewerModelInfo | undefined;
|
|
86504
86906
|
/** contains related product categories */
|
|
@@ -86603,104 +87005,6 @@ export interface IMerchantAmazonAsinTaskGetAdvancedTaskInfo extends IBaseRespons
|
|
|
86603
87005
|
result?: (MerchantAmazonAsinTaskGetAdvancedResultInfo | undefined)[] | undefined;
|
|
86604
87006
|
[key: string]: any;
|
|
86605
87007
|
}
|
|
86606
|
-
export declare class UserProfileInfo implements IUserProfileInfo {
|
|
86607
|
-
/** the name of the reviewer */
|
|
86608
|
-
name?: string | undefined;
|
|
86609
|
-
/** URL to the profile picture of the reviewer */
|
|
86610
|
-
avatar?: string | undefined;
|
|
86611
|
-
/** URL of the video */
|
|
86612
|
-
url?: string | undefined;
|
|
86613
|
-
/** total number of reviews submitted by the reviewer */
|
|
86614
|
-
reviews_count?: number | undefined;
|
|
86615
|
-
/** country of the reviewer */
|
|
86616
|
-
locations?: string | undefined;
|
|
86617
|
-
[key: string]: any;
|
|
86618
|
-
constructor(data?: IUserProfileInfo);
|
|
86619
|
-
init(_data?: any): void;
|
|
86620
|
-
static fromJS(data: any): UserProfileInfo;
|
|
86621
|
-
toJSON(data?: any): any;
|
|
86622
|
-
}
|
|
86623
|
-
export interface IUserProfileInfo {
|
|
86624
|
-
/** the name of the reviewer */
|
|
86625
|
-
name?: string | undefined;
|
|
86626
|
-
/** URL to the profile picture of the reviewer */
|
|
86627
|
-
avatar?: string | undefined;
|
|
86628
|
-
/** URL of the video */
|
|
86629
|
-
url?: string | undefined;
|
|
86630
|
-
/** total number of reviews submitted by the reviewer */
|
|
86631
|
-
reviews_count?: number | undefined;
|
|
86632
|
-
/** country of the reviewer */
|
|
86633
|
-
locations?: string | undefined;
|
|
86634
|
-
[key: string]: any;
|
|
86635
|
-
}
|
|
86636
|
-
export declare class AmazonAmazonReviewItemSerpElementItem extends BaseAmazonSerpElementItem implements IAmazonAmazonReviewItemSerpElementItem {
|
|
86637
|
-
/** the alignment of the review in SERP
|
|
86638
|
-
can take the following values: right */
|
|
86639
|
-
position?: string | undefined;
|
|
86640
|
-
/** indicates whether the review has the “Verified Purchase” mark */
|
|
86641
|
-
verified?: boolean | undefined;
|
|
86642
|
-
/** subtitle of the review */
|
|
86643
|
-
subtitle?: string | undefined;
|
|
86644
|
-
/** helpful votes count
|
|
86645
|
-
number of users who clicked on the ‘Helpful” button under the review text */
|
|
86646
|
-
helpful_votes?: number | undefined;
|
|
86647
|
-
/** images of the product submitted by the reviewer */
|
|
86648
|
-
images?: (ImagesElement | undefined)[] | undefined;
|
|
86649
|
-
/** videos of the product submitted by the reviewer */
|
|
86650
|
-
videos?: (VideoElement | undefined)[] | undefined;
|
|
86651
|
-
/** user profile of the reviewer */
|
|
86652
|
-
user_profile?: UserProfileInfo | undefined;
|
|
86653
|
-
/** title of the review */
|
|
86654
|
-
title?: string | undefined;
|
|
86655
|
-
/** relevant url */
|
|
86656
|
-
url?: string | undefined;
|
|
86657
|
-
/** content of the review */
|
|
86658
|
-
review_text?: string | undefined;
|
|
86659
|
-
/** date and time when the review was published
|
|
86660
|
-
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”;
|
|
86661
|
-
example:
|
|
86662
|
-
2019-11-15 12:57:46 +00:00 */
|
|
86663
|
-
publication_date?: string | undefined;
|
|
86664
|
-
/** the rating score submitted by the reviewer */
|
|
86665
|
-
rating?: RatingInfo | undefined;
|
|
86666
|
-
[key: string]: any;
|
|
86667
|
-
constructor(data?: IAmazonAmazonReviewItemSerpElementItem);
|
|
86668
|
-
init(_data?: any): void;
|
|
86669
|
-
static fromJS(data: any): AmazonAmazonReviewItemSerpElementItem;
|
|
86670
|
-
toJSON(data?: any): any;
|
|
86671
|
-
}
|
|
86672
|
-
export interface IAmazonAmazonReviewItemSerpElementItem extends IBaseAmazonSerpElementItem {
|
|
86673
|
-
/** the alignment of the review in SERP
|
|
86674
|
-
can take the following values: right */
|
|
86675
|
-
position?: string | undefined;
|
|
86676
|
-
/** indicates whether the review has the “Verified Purchase” mark */
|
|
86677
|
-
verified?: boolean | undefined;
|
|
86678
|
-
/** subtitle of the review */
|
|
86679
|
-
subtitle?: string | undefined;
|
|
86680
|
-
/** helpful votes count
|
|
86681
|
-
number of users who clicked on the ‘Helpful” button under the review text */
|
|
86682
|
-
helpful_votes?: number | undefined;
|
|
86683
|
-
/** images of the product submitted by the reviewer */
|
|
86684
|
-
images?: (ImagesElement | undefined)[] | undefined;
|
|
86685
|
-
/** videos of the product submitted by the reviewer */
|
|
86686
|
-
videos?: (VideoElement | undefined)[] | undefined;
|
|
86687
|
-
/** user profile of the reviewer */
|
|
86688
|
-
user_profile?: UserProfileInfo | undefined;
|
|
86689
|
-
/** title of the review */
|
|
86690
|
-
title?: string | undefined;
|
|
86691
|
-
/** relevant url */
|
|
86692
|
-
url?: string | undefined;
|
|
86693
|
-
/** content of the review */
|
|
86694
|
-
review_text?: string | undefined;
|
|
86695
|
-
/** date and time when the review was published
|
|
86696
|
-
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”;
|
|
86697
|
-
example:
|
|
86698
|
-
2019-11-15 12:57:46 +00:00 */
|
|
86699
|
-
publication_date?: string | undefined;
|
|
86700
|
-
/** the rating score submitted by the reviewer */
|
|
86701
|
-
rating?: RatingInfo | undefined;
|
|
86702
|
-
[key: string]: any;
|
|
86703
|
-
}
|
|
86704
87008
|
export declare class MerchantAmazonAsinTaskGetAdvancedResponseInfo extends BaseResponseInfo implements IMerchantAmazonAsinTaskGetAdvancedResponseInfo {
|
|
86705
87009
|
/** array of tasks */
|
|
86706
87010
|
tasks?: (MerchantAmazonAsinTaskGetAdvancedTaskInfo | undefined)[] | undefined;
|
|
@@ -93616,7 +93920,7 @@ optional field
|
|
|
93616
93920
|
you can add several filters at once (8 filters maximum)
|
|
93617
93921
|
you should set a logical operator and, or between the conditions
|
|
93618
93922
|
the following operators are supported:
|
|
93619
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like, not_like
|
|
93923
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like, not_like, match, not_match
|
|
93620
93924
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
93621
93925
|
example:
|
|
93622
93926
|
["rating.value",">",3]
|
|
@@ -93700,7 +94004,7 @@ optional field
|
|
|
93700
94004
|
you can add several filters at once (8 filters maximum)
|
|
93701
94005
|
you should set a logical operator and, or between the conditions
|
|
93702
94006
|
the following operators are supported:
|
|
93703
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like, not_like
|
|
94007
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like, not_like, match, not_match
|
|
93704
94008
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
93705
94009
|
example:
|
|
93706
94010
|
["rating.value",">",3]
|
|
@@ -94231,7 +94535,7 @@ optional field
|
|
|
94231
94535
|
you can add several filters at once (8 filters maximum)
|
|
94232
94536
|
you should set a logical operator and, or between the conditions
|
|
94233
94537
|
the following operators are supported:
|
|
94234
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like, not_like
|
|
94538
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like, not_like, match, not_match
|
|
94235
94539
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
94236
94540
|
example:
|
|
94237
94541
|
["rating.value",">",3]
|
|
@@ -94296,7 +94600,7 @@ optional field
|
|
|
94296
94600
|
you can add several filters at once (8 filters maximum)
|
|
94297
94601
|
you should set a logical operator and, or between the conditions
|
|
94298
94602
|
the following operators are supported:
|
|
94299
|
-
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like, not_like
|
|
94603
|
+
regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like, not_like, match, not_match
|
|
94300
94604
|
you can use the % operator with like and not_like to match any string of zero or more characters
|
|
94301
94605
|
example:
|
|
94302
94606
|
["rating.value",">",3]
|
|
@@ -97910,6 +98214,8 @@ export declare class HotelAmenityItemInfo implements IHotelAmenityItemInfo {
|
|
|
97910
98214
|
hint?: string | undefined;
|
|
97911
98215
|
/** displayed details about the amenity */
|
|
97912
98216
|
hint_label?: string | undefined;
|
|
98217
|
+
/** indicates whether the amenity is available in the hotel */
|
|
98218
|
+
is_available?: boolean | undefined;
|
|
97913
98219
|
[key: string]: any;
|
|
97914
98220
|
constructor(data?: IHotelAmenityItemInfo);
|
|
97915
98221
|
init(_data?: any): void;
|
|
@@ -97925,6 +98231,8 @@ export interface IHotelAmenityItemInfo {
|
|
|
97925
98231
|
hint?: string | undefined;
|
|
97926
98232
|
/** displayed details about the amenity */
|
|
97927
98233
|
hint_label?: string | undefined;
|
|
98234
|
+
/** indicates whether the amenity is available in the hotel */
|
|
98235
|
+
is_available?: boolean | undefined;
|
|
97928
98236
|
[key: string]: any;
|
|
97929
98237
|
}
|
|
97930
98238
|
export declare class HotelAmenityInfo implements IHotelAmenityInfo {
|
|
@@ -103357,15 +103665,15 @@ export interface IAppendixFunctionTypeInfo {
|
|
|
103357
103665
|
html?: number | undefined;
|
|
103358
103666
|
[key: string]: any;
|
|
103359
103667
|
}
|
|
103360
|
-
export declare class
|
|
103668
|
+
export declare class AppendixJobsSerpLimitsRatesDataInfo implements IAppendixJobsSerpLimitsRatesDataInfo {
|
|
103361
103669
|
task_post?: number | undefined;
|
|
103362
103670
|
[key: string]: any;
|
|
103363
|
-
constructor(data?:
|
|
103671
|
+
constructor(data?: IAppendixJobsSerpLimitsRatesDataInfo);
|
|
103364
103672
|
init(_data?: any): void;
|
|
103365
|
-
static fromJS(data: any):
|
|
103673
|
+
static fromJS(data: any): AppendixJobsSerpLimitsRatesDataInfo;
|
|
103366
103674
|
toJSON(data?: any): any;
|
|
103367
103675
|
}
|
|
103368
|
-
export interface
|
|
103676
|
+
export interface IAppendixJobsSerpLimitsRatesDataInfo {
|
|
103369
103677
|
task_post?: number | undefined;
|
|
103370
103678
|
[key: string]: any;
|
|
103371
103679
|
}
|
|
@@ -103378,7 +103686,7 @@ export declare class AppendixSerpLimitsRatesDataInfo implements IAppendixSerpLim
|
|
|
103378
103686
|
live?: AppendixFunctionTypeInfo | undefined;
|
|
103379
103687
|
errors?: number | undefined;
|
|
103380
103688
|
tasks_fixed?: number | undefined;
|
|
103381
|
-
jobs?:
|
|
103689
|
+
jobs?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
103382
103690
|
screenshot?: number | undefined;
|
|
103383
103691
|
[key: string]: any;
|
|
103384
103692
|
constructor(data?: IAppendixSerpLimitsRatesDataInfo);
|
|
@@ -103395,7 +103703,7 @@ export interface IAppendixSerpLimitsRatesDataInfo {
|
|
|
103395
103703
|
live?: AppendixFunctionTypeInfo | undefined;
|
|
103396
103704
|
errors?: number | undefined;
|
|
103397
103705
|
tasks_fixed?: number | undefined;
|
|
103398
|
-
jobs?:
|
|
103706
|
+
jobs?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
103399
103707
|
screenshot?: number | undefined;
|
|
103400
103708
|
[key: string]: any;
|
|
103401
103709
|
}
|
|
@@ -103512,8 +103820,8 @@ export declare class AppendixKeywordsDatasRatesDataInfo implements IAppendixKeyw
|
|
|
103512
103820
|
google_ads?: AppendixGoogleAdsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
103513
103821
|
dataforseo_trends?: AppendixDataforseoTrendsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
103514
103822
|
clickstream_data?: AppendixClickstreamDataKeywordsDataLimitsRatesDataInfo | undefined;
|
|
103515
|
-
audience_estimation?:
|
|
103516
|
-
keyword_suggestions_for_url?:
|
|
103823
|
+
audience_estimation?: AppendixInfo | undefined;
|
|
103824
|
+
keyword_suggestions_for_url?: AppendixInfo | undefined;
|
|
103517
103825
|
[key: string]: any;
|
|
103518
103826
|
constructor(data?: IAppendixKeywordsDatasRatesDataInfo);
|
|
103519
103827
|
init(_data?: any): void;
|
|
@@ -103537,8 +103845,8 @@ export interface IAppendixKeywordsDatasRatesDataInfo {
|
|
|
103537
103845
|
google_ads?: AppendixGoogleAdsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
103538
103846
|
dataforseo_trends?: AppendixDataforseoTrendsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
103539
103847
|
clickstream_data?: AppendixClickstreamDataKeywordsDataLimitsRatesDataInfo | undefined;
|
|
103540
|
-
audience_estimation?:
|
|
103541
|
-
keyword_suggestions_for_url?:
|
|
103848
|
+
audience_estimation?: AppendixInfo | undefined;
|
|
103849
|
+
keyword_suggestions_for_url?: AppendixInfo | undefined;
|
|
103542
103850
|
[key: string]: any;
|
|
103543
103851
|
}
|
|
103544
103852
|
export declare class AppendixAppendixsRatesDataInfo implements IAppendixAppendixsRatesDataInfo {
|
|
@@ -103590,6 +103898,8 @@ export declare class AppendixDataforseoLabsLimitsRatesDataInfo implements IAppen
|
|
|
103590
103898
|
app_intersection?: AppendixInfo | undefined;
|
|
103591
103899
|
bulk_app_metrics?: AppendixInfo | undefined;
|
|
103592
103900
|
search_intent?: AppendixInfo | undefined;
|
|
103901
|
+
historical_bulk_traffic_estimation?: AppendixInfo | undefined;
|
|
103902
|
+
categories_for_keywords?: AppendixInfo | undefined;
|
|
103593
103903
|
[key: string]: any;
|
|
103594
103904
|
constructor(data?: IAppendixDataforseoLabsLimitsRatesDataInfo);
|
|
103595
103905
|
init(_data?: any): void;
|
|
@@ -103631,6 +103941,8 @@ export interface IAppendixDataforseoLabsLimitsRatesDataInfo {
|
|
|
103631
103941
|
app_intersection?: AppendixInfo | undefined;
|
|
103632
103942
|
bulk_app_metrics?: AppendixInfo | undefined;
|
|
103633
103943
|
search_intent?: AppendixInfo | undefined;
|
|
103944
|
+
historical_bulk_traffic_estimation?: AppendixInfo | undefined;
|
|
103945
|
+
categories_for_keywords?: AppendixInfo | undefined;
|
|
103634
103946
|
[key: string]: any;
|
|
103635
103947
|
}
|
|
103636
103948
|
export declare class AppendixWhoisDomainAnalyticsLimitsRatesDataInfo implements IAppendixWhoisDomainAnalyticsLimitsRatesDataInfo {
|
|
@@ -103982,6 +104294,7 @@ export declare class AppendixAppDataLimitsRatesDataInfo implements IAppendixAppD
|
|
|
103982
104294
|
languages?: number | undefined;
|
|
103983
104295
|
locations?: number | undefined;
|
|
103984
104296
|
categories?: number | undefined;
|
|
104297
|
+
app_listings?: AppendixBusinessListingsBusinessDataLimitsRatesDataInfo | undefined;
|
|
103985
104298
|
tasks_ready?: number | undefined;
|
|
103986
104299
|
[key: string]: any;
|
|
103987
104300
|
constructor(data?: IAppendixAppDataLimitsRatesDataInfo);
|
|
@@ -103998,6 +104311,7 @@ export interface IAppendixAppDataLimitsRatesDataInfo {
|
|
|
103998
104311
|
languages?: number | undefined;
|
|
103999
104312
|
locations?: number | undefined;
|
|
104000
104313
|
categories?: number | undefined;
|
|
104314
|
+
app_listings?: AppendixBusinessListingsBusinessDataLimitsRatesDataInfo | undefined;
|
|
104001
104315
|
tasks_ready?: number | undefined;
|
|
104002
104316
|
[key: string]: any;
|
|
104003
104317
|
}
|
|
@@ -104168,8 +104482,8 @@ export declare class AppendixKeywordsDataDataInfo implements IAppendixKeywordsDa
|
|
|
104168
104482
|
google_ads?: AppendixGoogleAdsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
104169
104483
|
dataforseo_trends?: AppendixDataforseoTrendsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
104170
104484
|
clickstream_data?: AppendixClickstreamDataKeywordsDataLimitsRatesDataInfo | undefined;
|
|
104171
|
-
audience_estimation?:
|
|
104172
|
-
keyword_suggestions_for_url?:
|
|
104485
|
+
audience_estimation?: AppendixInfo | undefined;
|
|
104486
|
+
keyword_suggestions_for_url?: AppendixInfo | undefined;
|
|
104173
104487
|
naver?: AppendixNaverKeywordsDataDataInfo | undefined;
|
|
104174
104488
|
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
104175
104489
|
keyword_ideas_ads_api?: AppendixSerpLimitsRatesDataInfo | undefined;
|
|
@@ -104196,8 +104510,8 @@ export interface IAppendixKeywordsDataDataInfo {
|
|
|
104196
104510
|
google_ads?: AppendixGoogleAdsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
104197
104511
|
dataforseo_trends?: AppendixDataforseoTrendsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
104198
104512
|
clickstream_data?: AppendixClickstreamDataKeywordsDataLimitsRatesDataInfo | undefined;
|
|
104199
|
-
audience_estimation?:
|
|
104200
|
-
keyword_suggestions_for_url?:
|
|
104513
|
+
audience_estimation?: AppendixInfo | undefined;
|
|
104514
|
+
keyword_suggestions_for_url?: AppendixInfo | undefined;
|
|
104201
104515
|
naver?: AppendixNaverKeywordsDataDataInfo | undefined;
|
|
104202
104516
|
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
104203
104517
|
keyword_ideas_ads_api?: AppendixSerpLimitsRatesDataInfo | undefined;
|
|
@@ -104318,7 +104632,7 @@ export declare class AppendixSerpDayStatisticsRatesData implements IAppendixSerp
|
|
|
104318
104632
|
live?: AppendixFunctionTypeInfo | undefined;
|
|
104319
104633
|
errors?: number | undefined;
|
|
104320
104634
|
tasks_fixed?: number | undefined;
|
|
104321
|
-
jobs?:
|
|
104635
|
+
jobs?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
104322
104636
|
screenshot?: number | undefined;
|
|
104323
104637
|
id_list?: number | undefined;
|
|
104324
104638
|
ai_summary?: number | undefined;
|
|
@@ -104337,7 +104651,7 @@ export interface IAppendixSerpDayStatisticsRatesData {
|
|
|
104337
104651
|
live?: AppendixFunctionTypeInfo | undefined;
|
|
104338
104652
|
errors?: number | undefined;
|
|
104339
104653
|
tasks_fixed?: number | undefined;
|
|
104340
|
-
jobs?:
|
|
104654
|
+
jobs?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
104341
104655
|
screenshot?: number | undefined;
|
|
104342
104656
|
id_list?: number | undefined;
|
|
104343
104657
|
ai_summary?: number | undefined;
|
|
@@ -104385,12 +104699,12 @@ export declare class AppendixKeywordsDataDayStatisticsRatesData implements IAppe
|
|
|
104385
104699
|
dataforseo_trends?: AppendixDataforseoTrendsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
104386
104700
|
clickstream_data?: AppendixClickstreamDataKeywordsDataLimitsRatesDataInfo | undefined;
|
|
104387
104701
|
audience_estimation?: AppendixInfo | undefined;
|
|
104388
|
-
keyword_suggestions_for_url?:
|
|
104389
|
-
|
|
104390
|
-
industries?: number | undefined;
|
|
104702
|
+
keyword_suggestions_for_url?: AppendixInfo | undefined;
|
|
104703
|
+
job_functions?: number | undefined;
|
|
104391
104704
|
search_volume_history?: AppendixInfo | undefined;
|
|
104392
104705
|
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
104393
|
-
|
|
104706
|
+
industries?: number | undefined;
|
|
104707
|
+
id_list?: number | undefined;
|
|
104394
104708
|
[key: string]: any;
|
|
104395
104709
|
constructor(data?: IAppendixKeywordsDataDayStatisticsRatesData);
|
|
104396
104710
|
init(_data?: any): void;
|
|
@@ -104415,19 +104729,19 @@ export interface IAppendixKeywordsDataDayStatisticsRatesData {
|
|
|
104415
104729
|
dataforseo_trends?: AppendixDataforseoTrendsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
104416
104730
|
clickstream_data?: AppendixClickstreamDataKeywordsDataLimitsRatesDataInfo | undefined;
|
|
104417
104731
|
audience_estimation?: AppendixInfo | undefined;
|
|
104418
|
-
keyword_suggestions_for_url?:
|
|
104419
|
-
|
|
104420
|
-
industries?: number | undefined;
|
|
104732
|
+
keyword_suggestions_for_url?: AppendixInfo | undefined;
|
|
104733
|
+
job_functions?: number | undefined;
|
|
104421
104734
|
search_volume_history?: AppendixInfo | undefined;
|
|
104422
104735
|
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
104423
|
-
|
|
104736
|
+
industries?: number | undefined;
|
|
104737
|
+
id_list?: number | undefined;
|
|
104424
104738
|
[key: string]: any;
|
|
104425
104739
|
}
|
|
104426
104740
|
export declare class AppendixAppendixDayStatisticsRatesData implements IAppendixAppendixDayStatisticsRatesData {
|
|
104427
104741
|
user_data?: number | undefined;
|
|
104428
104742
|
errors?: number | undefined;
|
|
104429
|
-
status?: number | undefined;
|
|
104430
104743
|
webhook_resend?: number | undefined;
|
|
104744
|
+
status?: number | undefined;
|
|
104431
104745
|
[key: string]: any;
|
|
104432
104746
|
constructor(data?: IAppendixAppendixDayStatisticsRatesData);
|
|
104433
104747
|
init(_data?: any): void;
|
|
@@ -104437,8 +104751,8 @@ export declare class AppendixAppendixDayStatisticsRatesData implements IAppendix
|
|
|
104437
104751
|
export interface IAppendixAppendixDayStatisticsRatesData {
|
|
104438
104752
|
user_data?: number | undefined;
|
|
104439
104753
|
errors?: number | undefined;
|
|
104440
|
-
status?: number | undefined;
|
|
104441
104754
|
webhook_resend?: number | undefined;
|
|
104755
|
+
status?: number | undefined;
|
|
104442
104756
|
[key: string]: any;
|
|
104443
104757
|
}
|
|
104444
104758
|
export declare class AppendixDataforseoLabsDayStatisticsRatesData implements IAppendixDataforseoLabsDayStatisticsRatesData {
|
|
@@ -104476,15 +104790,15 @@ export declare class AppendixDataforseoLabsDayStatisticsRatesData implements IAp
|
|
|
104476
104790
|
app_intersection?: AppendixInfo | undefined;
|
|
104477
104791
|
bulk_app_metrics?: AppendixInfo | undefined;
|
|
104478
104792
|
search_intent?: AppendixInfo | undefined;
|
|
104479
|
-
id_list?: number | undefined;
|
|
104480
104793
|
historical_bulk_traffic_estimation?: AppendixInfo | undefined;
|
|
104794
|
+
categories_for_keywords?: AppendixInfo | undefined;
|
|
104481
104795
|
available_history?: number | undefined;
|
|
104482
104796
|
status?: number | undefined;
|
|
104797
|
+
id_list?: number | undefined;
|
|
104798
|
+
top_google_searches?: AppendixInfo | undefined;
|
|
104799
|
+
languages?: number | undefined;
|
|
104483
104800
|
available_filters?: number | undefined;
|
|
104484
104801
|
amazon?: AppendixDataforseoLabsLimitsRatesDataInfo | undefined;
|
|
104485
|
-
languages?: number | undefined;
|
|
104486
|
-
categories_for_keywords?: AppendixInfo | undefined;
|
|
104487
|
-
top_google_searches?: AppendixInfo | undefined;
|
|
104488
104802
|
[key: string]: any;
|
|
104489
104803
|
constructor(data?: IAppendixDataforseoLabsDayStatisticsRatesData);
|
|
104490
104804
|
init(_data?: any): void;
|
|
@@ -104526,15 +104840,15 @@ export interface IAppendixDataforseoLabsDayStatisticsRatesData {
|
|
|
104526
104840
|
app_intersection?: AppendixInfo | undefined;
|
|
104527
104841
|
bulk_app_metrics?: AppendixInfo | undefined;
|
|
104528
104842
|
search_intent?: AppendixInfo | undefined;
|
|
104529
|
-
id_list?: number | undefined;
|
|
104530
104843
|
historical_bulk_traffic_estimation?: AppendixInfo | undefined;
|
|
104844
|
+
categories_for_keywords?: AppendixInfo | undefined;
|
|
104531
104845
|
available_history?: number | undefined;
|
|
104532
104846
|
status?: number | undefined;
|
|
104847
|
+
id_list?: number | undefined;
|
|
104848
|
+
top_google_searches?: AppendixInfo | undefined;
|
|
104849
|
+
languages?: number | undefined;
|
|
104533
104850
|
available_filters?: number | undefined;
|
|
104534
104851
|
amazon?: AppendixDataforseoLabsLimitsRatesDataInfo | undefined;
|
|
104535
|
-
languages?: number | undefined;
|
|
104536
|
-
categories_for_keywords?: AppendixInfo | undefined;
|
|
104537
|
-
top_google_searches?: AppendixInfo | undefined;
|
|
104538
104852
|
[key: string]: any;
|
|
104539
104853
|
}
|
|
104540
104854
|
export declare class AppendixDomainAnalyticsDayStatisticsRatesData implements IAppendixDomainAnalyticsDayStatisticsRatesData {
|
|
@@ -104590,9 +104904,9 @@ export declare class AppendixLighthouseOnPageDayStatisticsRatesData implements I
|
|
|
104590
104904
|
tasks_ready?: number | undefined;
|
|
104591
104905
|
task_get?: number | undefined;
|
|
104592
104906
|
live?: number | undefined;
|
|
104593
|
-
audits?: number | undefined;
|
|
104594
|
-
languages?: number | undefined;
|
|
104595
104907
|
versions?: number | undefined;
|
|
104908
|
+
languages?: number | undefined;
|
|
104909
|
+
audits?: number | undefined;
|
|
104596
104910
|
[key: string]: any;
|
|
104597
104911
|
constructor(data?: IAppendixLighthouseOnPageDayStatisticsRatesData);
|
|
104598
104912
|
init(_data?: any): void;
|
|
@@ -104604,9 +104918,9 @@ export interface IAppendixLighthouseOnPageDayStatisticsRatesData {
|
|
|
104604
104918
|
tasks_ready?: number | undefined;
|
|
104605
104919
|
task_get?: number | undefined;
|
|
104606
104920
|
live?: number | undefined;
|
|
104607
|
-
audits?: number | undefined;
|
|
104608
|
-
languages?: number | undefined;
|
|
104609
104921
|
versions?: number | undefined;
|
|
104922
|
+
languages?: number | undefined;
|
|
104923
|
+
audits?: number | undefined;
|
|
104610
104924
|
[key: string]: any;
|
|
104611
104925
|
}
|
|
104612
104926
|
export declare class AppendixOnPageDayStatisticsRatesData implements IAppendixOnPageDayStatisticsRatesData {
|
|
@@ -104630,10 +104944,10 @@ export declare class AppendixOnPageDayStatisticsRatesData implements IAppendixOn
|
|
|
104630
104944
|
page_screenshot?: number | undefined;
|
|
104631
104945
|
content_parsing?: number | undefined;
|
|
104632
104946
|
content_parsing_live?: number | undefined;
|
|
104633
|
-
|
|
104947
|
+
id_list?: number | undefined;
|
|
104634
104948
|
force_stop?: number | undefined;
|
|
104949
|
+
available_filters?: number | undefined;
|
|
104635
104950
|
microdata?: number | undefined;
|
|
104636
|
-
id_list?: number | undefined;
|
|
104637
104951
|
[key: string]: any;
|
|
104638
104952
|
constructor(data?: IAppendixOnPageDayStatisticsRatesData);
|
|
104639
104953
|
init(_data?: any): void;
|
|
@@ -104661,13 +104975,13 @@ export interface IAppendixOnPageDayStatisticsRatesData {
|
|
|
104661
104975
|
page_screenshot?: number | undefined;
|
|
104662
104976
|
content_parsing?: number | undefined;
|
|
104663
104977
|
content_parsing_live?: number | undefined;
|
|
104664
|
-
|
|
104978
|
+
id_list?: number | undefined;
|
|
104665
104979
|
force_stop?: number | undefined;
|
|
104980
|
+
available_filters?: number | undefined;
|
|
104666
104981
|
microdata?: number | undefined;
|
|
104667
|
-
id_list?: number | undefined;
|
|
104668
104982
|
[key: string]: any;
|
|
104669
104983
|
}
|
|
104670
|
-
export declare class
|
|
104984
|
+
export declare class AppendixBusinessDataDayStatisticsRatesData implements IAppendixBusinessDataDayStatisticsRatesData {
|
|
104671
104985
|
google?: AppendixBusinessDataGoogleInfo | undefined;
|
|
104672
104986
|
locations?: number | undefined;
|
|
104673
104987
|
languages?: number | undefined;
|
|
@@ -104681,12 +104995,12 @@ export declare class AppendixBusinessDataStatisticsRatesDataInfo implements IApp
|
|
|
104681
104995
|
available_filters?: number | undefined;
|
|
104682
104996
|
id_list?: number | undefined;
|
|
104683
104997
|
[key: string]: any;
|
|
104684
|
-
constructor(data?:
|
|
104998
|
+
constructor(data?: IAppendixBusinessDataDayStatisticsRatesData);
|
|
104685
104999
|
init(_data?: any): void;
|
|
104686
|
-
static fromJS(data: any):
|
|
105000
|
+
static fromJS(data: any): AppendixBusinessDataDayStatisticsRatesData;
|
|
104687
105001
|
toJSON(data?: any): any;
|
|
104688
105002
|
}
|
|
104689
|
-
export interface
|
|
105003
|
+
export interface IAppendixBusinessDataDayStatisticsRatesData {
|
|
104690
105004
|
google?: AppendixBusinessDataGoogleInfo | undefined;
|
|
104691
105005
|
locations?: number | undefined;
|
|
104692
105006
|
languages?: number | undefined;
|
|
@@ -104725,10 +105039,10 @@ export declare class AppendixBacklinksDayStatisticsRatesData implements IAppendi
|
|
|
104725
105039
|
bulk_spam_score?: AppendixInfo | undefined;
|
|
104726
105040
|
bulk_pages_summary?: AppendixInfo | undefined;
|
|
104727
105041
|
pages_summary_with_page_info?: AppendixInfo | undefined;
|
|
104728
|
-
historical_new_lost_summary?: AppendixInfo | undefined;
|
|
104729
|
-
index?: number | undefined;
|
|
104730
105042
|
id_list?: number | undefined;
|
|
104731
105043
|
available_filters?: number | undefined;
|
|
105044
|
+
historical_new_lost_summary?: AppendixInfo | undefined;
|
|
105045
|
+
index?: number | undefined;
|
|
104732
105046
|
[key: string]: any;
|
|
104733
105047
|
constructor(data?: IAppendixBacklinksDayStatisticsRatesData);
|
|
104734
105048
|
init(_data?: any): void;
|
|
@@ -104759,10 +105073,10 @@ export interface IAppendixBacklinksDayStatisticsRatesData {
|
|
|
104759
105073
|
bulk_spam_score?: AppendixInfo | undefined;
|
|
104760
105074
|
bulk_pages_summary?: AppendixInfo | undefined;
|
|
104761
105075
|
pages_summary_with_page_info?: AppendixInfo | undefined;
|
|
104762
|
-
historical_new_lost_summary?: AppendixInfo | undefined;
|
|
104763
|
-
index?: number | undefined;
|
|
104764
105076
|
id_list?: number | undefined;
|
|
104765
105077
|
available_filters?: number | undefined;
|
|
105078
|
+
historical_new_lost_summary?: AppendixInfo | undefined;
|
|
105079
|
+
index?: number | undefined;
|
|
104766
105080
|
[key: string]: any;
|
|
104767
105081
|
}
|
|
104768
105082
|
export declare class AppendixAppDataDayStatisticsRatesData implements IAppendixAppDataDayStatisticsRatesData {
|
|
@@ -104774,9 +105088,9 @@ export declare class AppendixAppDataDayStatisticsRatesData implements IAppendixA
|
|
|
104774
105088
|
languages?: number | undefined;
|
|
104775
105089
|
locations?: number | undefined;
|
|
104776
105090
|
categories?: number | undefined;
|
|
105091
|
+
app_listings?: AppendixBusinessListingsBusinessDataLimitsRatesDataInfo | undefined;
|
|
104777
105092
|
tasks_ready?: number | undefined;
|
|
104778
105093
|
id_list?: number | undefined;
|
|
104779
|
-
app_listings?: AppendixBusinessListingsBusinessDataLimitsRatesDataInfo | undefined;
|
|
104780
105094
|
[key: string]: any;
|
|
104781
105095
|
constructor(data?: IAppendixAppDataDayStatisticsRatesData);
|
|
104782
105096
|
init(_data?: any): void;
|
|
@@ -104792,9 +105106,9 @@ export interface IAppendixAppDataDayStatisticsRatesData {
|
|
|
104792
105106
|
languages?: number | undefined;
|
|
104793
105107
|
locations?: number | undefined;
|
|
104794
105108
|
categories?: number | undefined;
|
|
105109
|
+
app_listings?: AppendixBusinessListingsBusinessDataLimitsRatesDataInfo | undefined;
|
|
104795
105110
|
tasks_ready?: number | undefined;
|
|
104796
105111
|
id_list?: number | undefined;
|
|
104797
|
-
app_listings?: AppendixBusinessListingsBusinessDataLimitsRatesDataInfo | undefined;
|
|
104798
105112
|
[key: string]: any;
|
|
104799
105113
|
}
|
|
104800
105114
|
export declare class AppendixContentAnalysisDayStatisticsRatesData implements IAppendixContentAnalysisDayStatisticsRatesData {
|
|
@@ -104808,8 +105122,8 @@ export declare class AppendixContentAnalysisDayStatisticsRatesData implements IA
|
|
|
104808
105122
|
languages?: number | undefined;
|
|
104809
105123
|
categories?: number | undefined;
|
|
104810
105124
|
errors?: number | undefined;
|
|
104811
|
-
available_filters?: number | undefined;
|
|
104812
105125
|
id_list?: number | undefined;
|
|
105126
|
+
available_filters?: number | undefined;
|
|
104813
105127
|
[key: string]: any;
|
|
104814
105128
|
constructor(data?: IAppendixContentAnalysisDayStatisticsRatesData);
|
|
104815
105129
|
init(_data?: any): void;
|
|
@@ -104827,11 +105141,11 @@ export interface IAppendixContentAnalysisDayStatisticsRatesData {
|
|
|
104827
105141
|
languages?: number | undefined;
|
|
104828
105142
|
categories?: number | undefined;
|
|
104829
105143
|
errors?: number | undefined;
|
|
104830
|
-
available_filters?: number | undefined;
|
|
104831
105144
|
id_list?: number | undefined;
|
|
105145
|
+
available_filters?: number | undefined;
|
|
104832
105146
|
[key: string]: any;
|
|
104833
105147
|
}
|
|
104834
|
-
export declare class
|
|
105148
|
+
export declare class AppendixContentGenerationDayStatisticsRatesData implements IAppendixContentGenerationDayStatisticsRatesData {
|
|
104835
105149
|
generate?: AppendixInfo | undefined;
|
|
104836
105150
|
generate_meta_tags?: AppendixInfo | undefined;
|
|
104837
105151
|
generate_text?: AppendixInfo | undefined;
|
|
@@ -104841,12 +105155,12 @@ export declare class AppendixContentGenerationStatisticsRatesDataInfo implements
|
|
|
104841
105155
|
generate_sub_topics?: AppendixInfo | undefined;
|
|
104842
105156
|
grammar_rules?: number | undefined;
|
|
104843
105157
|
[key: string]: any;
|
|
104844
|
-
constructor(data?:
|
|
105158
|
+
constructor(data?: IAppendixContentGenerationDayStatisticsRatesData);
|
|
104845
105159
|
init(_data?: any): void;
|
|
104846
|
-
static fromJS(data: any):
|
|
105160
|
+
static fromJS(data: any): AppendixContentGenerationDayStatisticsRatesData;
|
|
104847
105161
|
toJSON(data?: any): any;
|
|
104848
105162
|
}
|
|
104849
|
-
export interface
|
|
105163
|
+
export interface IAppendixContentGenerationDayStatisticsRatesData {
|
|
104850
105164
|
generate?: AppendixInfo | undefined;
|
|
104851
105165
|
generate_meta_tags?: AppendixInfo | undefined;
|
|
104852
105166
|
generate_text?: AppendixInfo | undefined;
|
|
@@ -104874,7 +105188,7 @@ export declare class AppendixDayStatisticsRatesData implements IAppendixDayStati
|
|
|
104874
105188
|
total_merchant?: number | undefined;
|
|
104875
105189
|
on_page?: AppendixOnPageDayStatisticsRatesData | undefined;
|
|
104876
105190
|
total_on_page?: number | undefined;
|
|
104877
|
-
business_data?:
|
|
105191
|
+
business_data?: AppendixBusinessDataDayStatisticsRatesData | undefined;
|
|
104878
105192
|
total_business_data?: number | undefined;
|
|
104879
105193
|
backlinks?: AppendixBacklinksDayStatisticsRatesData | undefined;
|
|
104880
105194
|
total_backlinks?: number | undefined;
|
|
@@ -104882,7 +105196,7 @@ export declare class AppendixDayStatisticsRatesData implements IAppendixDayStati
|
|
|
104882
105196
|
total_app_data?: number | undefined;
|
|
104883
105197
|
content_analysis?: AppendixContentAnalysisDayStatisticsRatesData | undefined;
|
|
104884
105198
|
total_content_analysis?: number | undefined;
|
|
104885
|
-
content_generation?:
|
|
105199
|
+
content_generation?: AppendixContentGenerationDayStatisticsRatesData | undefined;
|
|
104886
105200
|
total_content_generation?: number | undefined;
|
|
104887
105201
|
/** time period for grouping
|
|
104888
105202
|
day in the yyyy-MM-dd format
|
|
@@ -104914,7 +105228,7 @@ export interface IAppendixDayStatisticsRatesData {
|
|
|
104914
105228
|
total_merchant?: number | undefined;
|
|
104915
105229
|
on_page?: AppendixOnPageDayStatisticsRatesData | undefined;
|
|
104916
105230
|
total_on_page?: number | undefined;
|
|
104917
|
-
business_data?:
|
|
105231
|
+
business_data?: AppendixBusinessDataDayStatisticsRatesData | undefined;
|
|
104918
105232
|
total_business_data?: number | undefined;
|
|
104919
105233
|
backlinks?: AppendixBacklinksDayStatisticsRatesData | undefined;
|
|
104920
105234
|
total_backlinks?: number | undefined;
|
|
@@ -104922,7 +105236,7 @@ export interface IAppendixDayStatisticsRatesData {
|
|
|
104922
105236
|
total_app_data?: number | undefined;
|
|
104923
105237
|
content_analysis?: AppendixContentAnalysisDayStatisticsRatesData | undefined;
|
|
104924
105238
|
total_content_analysis?: number | undefined;
|
|
104925
|
-
content_generation?:
|
|
105239
|
+
content_generation?: AppendixContentGenerationDayStatisticsRatesData | undefined;
|
|
104926
105240
|
total_content_generation?: number | undefined;
|
|
104927
105241
|
/** time period for grouping
|
|
104928
105242
|
day in the yyyy-MM-dd format
|
|
@@ -104933,7 +105247,7 @@ minute in the yyyy-MM-dd HH:mm format */
|
|
|
104933
105247
|
reviews?: AppendixInfo | undefined;
|
|
104934
105248
|
[key: string]: any;
|
|
104935
105249
|
}
|
|
104936
|
-
export declare class
|
|
105250
|
+
export declare class AppendixMinuteStatisticsDataInfo implements IAppendixMinuteStatisticsDataInfo {
|
|
104937
105251
|
serp?: AppendixSerpLimitsRatesDataInfo | undefined;
|
|
104938
105252
|
/** total amount of money deposited to your account */
|
|
104939
105253
|
total?: number | undefined;
|
|
@@ -104950,27 +105264,27 @@ export declare class AppendixMinuteStatisticsRatesData implements IAppendixMinut
|
|
|
104950
105264
|
total_merchant?: number | undefined;
|
|
104951
105265
|
on_page?: AppendixOnPageLimitsRatesDataInfo | undefined;
|
|
104952
105266
|
total_on_page?: number | undefined;
|
|
104953
|
-
business_data?:
|
|
105267
|
+
business_data?: AppendixBusinessDataLimitsRatesDataInfo | undefined;
|
|
104954
105268
|
total_business_data?: number | undefined;
|
|
104955
105269
|
backlinks?: AppendixBacklinksLimitsRatesDataInfo | undefined;
|
|
104956
105270
|
total_backlinks?: number | undefined;
|
|
104957
|
-
app_data?:
|
|
105271
|
+
app_data?: AppendixAppDataLimitsRatesDataInfo | undefined;
|
|
104958
105272
|
total_app_data?: number | undefined;
|
|
104959
105273
|
content_analysis?: AppendixContentAnalysisLimitsRatesDataInfo | undefined;
|
|
104960
105274
|
total_content_analysis?: number | undefined;
|
|
104961
|
-
content_generation?:
|
|
105275
|
+
content_generation?: AppendixContentGenerationLimitsRatesDataInfo | undefined;
|
|
104962
105276
|
total_content_generation?: number | undefined;
|
|
104963
105277
|
/** time period for grouping
|
|
104964
105278
|
day in the yyyy-MM-dd format
|
|
104965
105279
|
minute in the yyyy-MM-dd HH:mm format */
|
|
104966
105280
|
value?: string | undefined;
|
|
104967
105281
|
[key: string]: any;
|
|
104968
|
-
constructor(data?:
|
|
105282
|
+
constructor(data?: IAppendixMinuteStatisticsDataInfo);
|
|
104969
105283
|
init(_data?: any): void;
|
|
104970
|
-
static fromJS(data: any):
|
|
105284
|
+
static fromJS(data: any): AppendixMinuteStatisticsDataInfo;
|
|
104971
105285
|
toJSON(data?: any): any;
|
|
104972
105286
|
}
|
|
104973
|
-
export interface
|
|
105287
|
+
export interface IAppendixMinuteStatisticsDataInfo {
|
|
104974
105288
|
serp?: AppendixSerpLimitsRatesDataInfo | undefined;
|
|
104975
105289
|
/** total amount of money deposited to your account */
|
|
104976
105290
|
total?: number | undefined;
|
|
@@ -104987,15 +105301,15 @@ export interface IAppendixMinuteStatisticsRatesData {
|
|
|
104987
105301
|
total_merchant?: number | undefined;
|
|
104988
105302
|
on_page?: AppendixOnPageLimitsRatesDataInfo | undefined;
|
|
104989
105303
|
total_on_page?: number | undefined;
|
|
104990
|
-
business_data?:
|
|
105304
|
+
business_data?: AppendixBusinessDataLimitsRatesDataInfo | undefined;
|
|
104991
105305
|
total_business_data?: number | undefined;
|
|
104992
105306
|
backlinks?: AppendixBacklinksLimitsRatesDataInfo | undefined;
|
|
104993
105307
|
total_backlinks?: number | undefined;
|
|
104994
|
-
app_data?:
|
|
105308
|
+
app_data?: AppendixAppDataLimitsRatesDataInfo | undefined;
|
|
104995
105309
|
total_app_data?: number | undefined;
|
|
104996
105310
|
content_analysis?: AppendixContentAnalysisLimitsRatesDataInfo | undefined;
|
|
104997
105311
|
total_content_analysis?: number | undefined;
|
|
104998
|
-
content_generation?:
|
|
105312
|
+
content_generation?: AppendixContentGenerationLimitsRatesDataInfo | undefined;
|
|
104999
105313
|
total_content_generation?: number | undefined;
|
|
105000
105314
|
/** time period for grouping
|
|
105001
105315
|
day in the yyyy-MM-dd format
|
|
@@ -105005,7 +105319,7 @@ minute in the yyyy-MM-dd HH:mm format */
|
|
|
105005
105319
|
}
|
|
105006
105320
|
export declare class AppendixStatisticsRatesData implements IAppendixStatisticsRatesData {
|
|
105007
105321
|
day?: AppendixDayStatisticsRatesData | undefined;
|
|
105008
|
-
minute?:
|
|
105322
|
+
minute?: AppendixMinuteStatisticsDataInfo | undefined;
|
|
105009
105323
|
[key: string]: any;
|
|
105010
105324
|
constructor(data?: IAppendixStatisticsRatesData);
|
|
105011
105325
|
init(_data?: any): void;
|
|
@@ -105014,7 +105328,7 @@ export declare class AppendixStatisticsRatesData implements IAppendixStatisticsR
|
|
|
105014
105328
|
}
|
|
105015
105329
|
export interface IAppendixStatisticsRatesData {
|
|
105016
105330
|
day?: AppendixDayStatisticsRatesData | undefined;
|
|
105017
|
-
minute?:
|
|
105331
|
+
minute?: AppendixMinuteStatisticsDataInfo | undefined;
|
|
105018
105332
|
[key: string]: any;
|
|
105019
105333
|
}
|
|
105020
105334
|
export declare class AppendixRatesData implements IAppendixRatesData {
|
|
@@ -105058,10 +105372,10 @@ export declare class AppendixSerpDayStatisticsMoneyData implements IAppendixSerp
|
|
|
105058
105372
|
live?: AppendixFunctionTypeInfo | undefined;
|
|
105059
105373
|
errors?: number | undefined;
|
|
105060
105374
|
tasks_fixed?: number | undefined;
|
|
105061
|
-
jobs?:
|
|
105375
|
+
jobs?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
105062
105376
|
screenshot?: number | undefined;
|
|
105063
|
-
ai_summary?: number | undefined;
|
|
105064
105377
|
refund_money?: number | undefined;
|
|
105378
|
+
ai_summary?: number | undefined;
|
|
105065
105379
|
[key: string]: any;
|
|
105066
105380
|
constructor(data?: IAppendixSerpDayStatisticsMoneyData);
|
|
105067
105381
|
init(_data?: any): void;
|
|
@@ -105077,10 +105391,10 @@ export interface IAppendixSerpDayStatisticsMoneyData {
|
|
|
105077
105391
|
live?: AppendixFunctionTypeInfo | undefined;
|
|
105078
105392
|
errors?: number | undefined;
|
|
105079
105393
|
tasks_fixed?: number | undefined;
|
|
105080
|
-
jobs?:
|
|
105394
|
+
jobs?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
105081
105395
|
screenshot?: number | undefined;
|
|
105082
|
-
ai_summary?: number | undefined;
|
|
105083
105396
|
refund_money?: number | undefined;
|
|
105397
|
+
ai_summary?: number | undefined;
|
|
105084
105398
|
[key: string]: any;
|
|
105085
105399
|
}
|
|
105086
105400
|
export declare class AppendixKeywordsDataDayStatisticsMoneyData implements IAppendixKeywordsDataDayStatisticsMoneyData {
|
|
@@ -105100,9 +105414,9 @@ export declare class AppendixKeywordsDataDayStatisticsMoneyData implements IAppe
|
|
|
105100
105414
|
google_ads?: AppendixGoogleAdsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
105101
105415
|
dataforseo_trends?: AppendixDataforseoTrendsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
105102
105416
|
clickstream_data?: AppendixClickstreamDataKeywordsDataLimitsRatesDataInfo | undefined;
|
|
105103
|
-
audience_estimation?:
|
|
105104
|
-
keyword_suggestions_for_url?:
|
|
105105
|
-
search_volume_history?:
|
|
105417
|
+
audience_estimation?: AppendixInfo | undefined;
|
|
105418
|
+
keyword_suggestions_for_url?: AppendixInfo | undefined;
|
|
105419
|
+
search_volume_history?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
105106
105420
|
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
105107
105421
|
[key: string]: any;
|
|
105108
105422
|
constructor(data?: IAppendixKeywordsDataDayStatisticsMoneyData);
|
|
@@ -105127,9 +105441,9 @@ export interface IAppendixKeywordsDataDayStatisticsMoneyData {
|
|
|
105127
105441
|
google_ads?: AppendixGoogleAdsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
105128
105442
|
dataforseo_trends?: AppendixDataforseoTrendsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
105129
105443
|
clickstream_data?: AppendixClickstreamDataKeywordsDataLimitsRatesDataInfo | undefined;
|
|
105130
|
-
audience_estimation?:
|
|
105131
|
-
keyword_suggestions_for_url?:
|
|
105132
|
-
search_volume_history?:
|
|
105444
|
+
audience_estimation?: AppendixInfo | undefined;
|
|
105445
|
+
keyword_suggestions_for_url?: AppendixInfo | undefined;
|
|
105446
|
+
search_volume_history?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
105133
105447
|
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
105134
105448
|
[key: string]: any;
|
|
105135
105449
|
}
|
|
@@ -105226,8 +105540,8 @@ export declare class AppendixAppDataDayStatisticsMoneyData implements IAppendixA
|
|
|
105226
105540
|
languages?: number | undefined;
|
|
105227
105541
|
locations?: number | undefined;
|
|
105228
105542
|
categories?: number | undefined;
|
|
105543
|
+
app_listings?: AppendixBusinessListingsBusinessDataLimitsRatesDataInfo | undefined;
|
|
105229
105544
|
tasks_ready?: number | undefined;
|
|
105230
|
-
app_listings?: AppendixBusinessDataDayLimitsRatesDataInfo | undefined;
|
|
105231
105545
|
refund_money?: number | undefined;
|
|
105232
105546
|
[key: string]: any;
|
|
105233
105547
|
constructor(data?: IAppendixAppDataDayStatisticsMoneyData);
|
|
@@ -105244,8 +105558,8 @@ export interface IAppendixAppDataDayStatisticsMoneyData {
|
|
|
105244
105558
|
languages?: number | undefined;
|
|
105245
105559
|
locations?: number | undefined;
|
|
105246
105560
|
categories?: number | undefined;
|
|
105561
|
+
app_listings?: AppendixBusinessListingsBusinessDataLimitsRatesDataInfo | undefined;
|
|
105247
105562
|
tasks_ready?: number | undefined;
|
|
105248
|
-
app_listings?: AppendixBusinessDataDayLimitsRatesDataInfo | undefined;
|
|
105249
105563
|
refund_money?: number | undefined;
|
|
105250
105564
|
[key: string]: any;
|
|
105251
105565
|
}
|
|
@@ -105282,7 +105596,7 @@ minute in the yyyy-MM-dd HH:mm format */
|
|
|
105282
105596
|
value?: string | undefined;
|
|
105283
105597
|
total_traffic_analytics?: number | undefined;
|
|
105284
105598
|
total_reviews?: number | undefined;
|
|
105285
|
-
reviews?:
|
|
105599
|
+
reviews?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
105286
105600
|
[key: string]: any;
|
|
105287
105601
|
constructor(data?: IAppendixDayStatisticsMoneyData);
|
|
105288
105602
|
init(_data?: any): void;
|
|
@@ -105322,82 +105636,12 @@ minute in the yyyy-MM-dd HH:mm format */
|
|
|
105322
105636
|
value?: string | undefined;
|
|
105323
105637
|
total_traffic_analytics?: number | undefined;
|
|
105324
105638
|
total_reviews?: number | undefined;
|
|
105325
|
-
reviews?:
|
|
105326
|
-
[key: string]: any;
|
|
105327
|
-
}
|
|
105328
|
-
export declare class AppendixMinuteStatisticsMoneyData implements IAppendixMinuteStatisticsMoneyData {
|
|
105329
|
-
serp?: AppendixSerpLimitsRatesDataInfo | undefined;
|
|
105330
|
-
/** total amount of money deposited to your account */
|
|
105331
|
-
total?: number | undefined;
|
|
105332
|
-
total_serp?: number | undefined;
|
|
105333
|
-
keywords_data?: AppendixKeywordsDatasRatesDataInfo | undefined;
|
|
105334
|
-
total_keywords_data?: number | undefined;
|
|
105335
|
-
appendix?: AppendixAppendixsRatesDataInfo | undefined;
|
|
105336
|
-
total_appendix?: number | undefined;
|
|
105337
|
-
dataforseo_labs?: AppendixDataforseoLabsLimitsRatesDataInfo | undefined;
|
|
105338
|
-
total_dataforseo_labs?: number | undefined;
|
|
105339
|
-
domain_analytics?: AppendixDomainAnalyticsLimitsRatesDataInfo | undefined;
|
|
105340
|
-
total_domain_analytics?: number | undefined;
|
|
105341
|
-
merchant?: AppendixMerchantLimitsRatesDataInfo | undefined;
|
|
105342
|
-
total_merchant?: number | undefined;
|
|
105343
|
-
on_page?: AppendixOnPageLimitsRatesDataInfo | undefined;
|
|
105344
|
-
total_on_page?: number | undefined;
|
|
105345
|
-
business_data?: AppendixBusinessDataLimitsRatesDataInfo | undefined;
|
|
105346
|
-
total_business_data?: number | undefined;
|
|
105347
|
-
backlinks?: AppendixBacklinksLimitsRatesDataInfo | undefined;
|
|
105348
|
-
total_backlinks?: number | undefined;
|
|
105349
|
-
app_data?: AppendixAppDataLimitsRatesDataInfo | undefined;
|
|
105350
|
-
total_app_data?: number | undefined;
|
|
105351
|
-
content_analysis?: AppendixContentAnalysisLimitsRatesDataInfo | undefined;
|
|
105352
|
-
total_content_analysis?: number | undefined;
|
|
105353
|
-
content_generation?: AppendixContentGenerationLimitsRatesDataInfo | undefined;
|
|
105354
|
-
total_content_generation?: number | undefined;
|
|
105355
|
-
/** time period for grouping
|
|
105356
|
-
day in the yyyy-MM-dd format
|
|
105357
|
-
minute in the yyyy-MM-dd HH:mm format */
|
|
105358
|
-
value?: string | undefined;
|
|
105359
|
-
[key: string]: any;
|
|
105360
|
-
constructor(data?: IAppendixMinuteStatisticsMoneyData);
|
|
105361
|
-
init(_data?: any): void;
|
|
105362
|
-
static fromJS(data: any): AppendixMinuteStatisticsMoneyData;
|
|
105363
|
-
toJSON(data?: any): any;
|
|
105364
|
-
}
|
|
105365
|
-
export interface IAppendixMinuteStatisticsMoneyData {
|
|
105366
|
-
serp?: AppendixSerpLimitsRatesDataInfo | undefined;
|
|
105367
|
-
/** total amount of money deposited to your account */
|
|
105368
|
-
total?: number | undefined;
|
|
105369
|
-
total_serp?: number | undefined;
|
|
105370
|
-
keywords_data?: AppendixKeywordsDatasRatesDataInfo | undefined;
|
|
105371
|
-
total_keywords_data?: number | undefined;
|
|
105372
|
-
appendix?: AppendixAppendixsRatesDataInfo | undefined;
|
|
105373
|
-
total_appendix?: number | undefined;
|
|
105374
|
-
dataforseo_labs?: AppendixDataforseoLabsLimitsRatesDataInfo | undefined;
|
|
105375
|
-
total_dataforseo_labs?: number | undefined;
|
|
105376
|
-
domain_analytics?: AppendixDomainAnalyticsLimitsRatesDataInfo | undefined;
|
|
105377
|
-
total_domain_analytics?: number | undefined;
|
|
105378
|
-
merchant?: AppendixMerchantLimitsRatesDataInfo | undefined;
|
|
105379
|
-
total_merchant?: number | undefined;
|
|
105380
|
-
on_page?: AppendixOnPageLimitsRatesDataInfo | undefined;
|
|
105381
|
-
total_on_page?: number | undefined;
|
|
105382
|
-
business_data?: AppendixBusinessDataLimitsRatesDataInfo | undefined;
|
|
105383
|
-
total_business_data?: number | undefined;
|
|
105384
|
-
backlinks?: AppendixBacklinksLimitsRatesDataInfo | undefined;
|
|
105385
|
-
total_backlinks?: number | undefined;
|
|
105386
|
-
app_data?: AppendixAppDataLimitsRatesDataInfo | undefined;
|
|
105387
|
-
total_app_data?: number | undefined;
|
|
105388
|
-
content_analysis?: AppendixContentAnalysisLimitsRatesDataInfo | undefined;
|
|
105389
|
-
total_content_analysis?: number | undefined;
|
|
105390
|
-
content_generation?: AppendixContentGenerationLimitsRatesDataInfo | undefined;
|
|
105391
|
-
total_content_generation?: number | undefined;
|
|
105392
|
-
/** time period for grouping
|
|
105393
|
-
day in the yyyy-MM-dd format
|
|
105394
|
-
minute in the yyyy-MM-dd HH:mm format */
|
|
105395
|
-
value?: string | undefined;
|
|
105639
|
+
reviews?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
105396
105640
|
[key: string]: any;
|
|
105397
105641
|
}
|
|
105398
105642
|
export declare class AppendixStatisticsMoneyData implements IAppendixStatisticsMoneyData {
|
|
105399
105643
|
day?: AppendixDayStatisticsMoneyData | undefined;
|
|
105400
|
-
minute?:
|
|
105644
|
+
minute?: AppendixMinuteStatisticsDataInfo | undefined;
|
|
105401
105645
|
[key: string]: any;
|
|
105402
105646
|
constructor(data?: IAppendixStatisticsMoneyData);
|
|
105403
105647
|
init(_data?: any): void;
|
|
@@ -105406,7 +105650,7 @@ export declare class AppendixStatisticsMoneyData implements IAppendixStatisticsM
|
|
|
105406
105650
|
}
|
|
105407
105651
|
export interface IAppendixStatisticsMoneyData {
|
|
105408
105652
|
day?: AppendixDayStatisticsMoneyData | undefined;
|
|
105409
|
-
minute?:
|
|
105653
|
+
minute?: AppendixMinuteStatisticsDataInfo | undefined;
|
|
105410
105654
|
[key: string]: any;
|
|
105411
105655
|
}
|
|
105412
105656
|
export declare class AppendixMoneyData implements IAppendixMoneyData {
|
|
@@ -105475,16 +105719,16 @@ export interface IAppendixTaskKeywordsDataPriceDataInfo {
|
|
|
105475
105719
|
priority_high?: (AppendixPriorityTasksReadyKeywordsDataPriceDataInfo | undefined)[] | undefined;
|
|
105476
105720
|
[key: string]: any;
|
|
105477
105721
|
}
|
|
105478
|
-
export declare class
|
|
105722
|
+
export declare class AppendixAKeywordsDataPriceDataInfo implements IAppendixAKeywordsDataPriceDataInfo {
|
|
105479
105723
|
task_get?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105480
105724
|
task_post?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105481
105725
|
[key: string]: any;
|
|
105482
|
-
constructor(data?:
|
|
105726
|
+
constructor(data?: IAppendixAKeywordsDataPriceDataInfo);
|
|
105483
105727
|
init(_data?: any): void;
|
|
105484
|
-
static fromJS(data: any):
|
|
105728
|
+
static fromJS(data: any): AppendixAKeywordsDataPriceDataInfo;
|
|
105485
105729
|
toJSON(data?: any): any;
|
|
105486
105730
|
}
|
|
105487
|
-
export interface
|
|
105731
|
+
export interface IAppendixAKeywordsDataPriceDataInfo {
|
|
105488
105732
|
task_get?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105489
105733
|
task_post?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105490
105734
|
[key: string]: any;
|
|
@@ -105597,21 +105841,21 @@ export interface IAppendixExploreKeywordsDataPriceData {
|
|
|
105597
105841
|
}
|
|
105598
105842
|
export declare class AppendixKeywordsDataPriceData implements IAppendixKeywordsDataPriceData {
|
|
105599
105843
|
tasks_ready?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105600
|
-
ad_traffic_by_keywords?:
|
|
105601
|
-
audience_estimation?:
|
|
105844
|
+
ad_traffic_by_keywords?: AppendixAKeywordsDataPriceDataInfo | undefined;
|
|
105845
|
+
audience_estimation?: AppendixAKeywordsDataPriceDataInfo | undefined;
|
|
105602
105846
|
bing?: AppendixBingKeywordsDataPriceData | undefined;
|
|
105603
105847
|
categories?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105604
105848
|
clickstream_data?: AppendixClickstreamDataKeywordsDataPriceData | undefined;
|
|
105605
105849
|
errors?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105606
105850
|
google_ads?: AppendixGoogleAdsKeywordsDataPriceData | undefined;
|
|
105607
|
-
keyword_performance?:
|
|
105608
|
-
keywords_for_keywords?:
|
|
105609
|
-
keywords_for_site?:
|
|
105610
|
-
keyword_suggestions_for_url?:
|
|
105851
|
+
keyword_performance?: AppendixAKeywordsDataPriceDataInfo | undefined;
|
|
105852
|
+
keywords_for_keywords?: AppendixAKeywordsDataPriceDataInfo | undefined;
|
|
105853
|
+
keywords_for_site?: AppendixAKeywordsDataPriceDataInfo | undefined;
|
|
105854
|
+
keyword_suggestions_for_url?: AppendixAKeywordsDataPriceDataInfo | undefined;
|
|
105611
105855
|
languages?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105612
105856
|
locations?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105613
105857
|
locations_and_languages?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105614
|
-
search_volume?:
|
|
105858
|
+
search_volume?: AppendixAKeywordsDataPriceDataInfo | undefined;
|
|
105615
105859
|
dataforseo_trends?: AppendixDataforseoTrendsKeywordsDataPriceData | undefined;
|
|
105616
105860
|
explore?: AppendixExploreKeywordsDataPriceData | undefined;
|
|
105617
105861
|
[key: string]: any;
|
|
@@ -105622,21 +105866,21 @@ export declare class AppendixKeywordsDataPriceData implements IAppendixKeywordsD
|
|
|
105622
105866
|
}
|
|
105623
105867
|
export interface IAppendixKeywordsDataPriceData {
|
|
105624
105868
|
tasks_ready?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105625
|
-
ad_traffic_by_keywords?:
|
|
105626
|
-
audience_estimation?:
|
|
105869
|
+
ad_traffic_by_keywords?: AppendixAKeywordsDataPriceDataInfo | undefined;
|
|
105870
|
+
audience_estimation?: AppendixAKeywordsDataPriceDataInfo | undefined;
|
|
105627
105871
|
bing?: AppendixBingKeywordsDataPriceData | undefined;
|
|
105628
105872
|
categories?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105629
105873
|
clickstream_data?: AppendixClickstreamDataKeywordsDataPriceData | undefined;
|
|
105630
105874
|
errors?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105631
105875
|
google_ads?: AppendixGoogleAdsKeywordsDataPriceData | undefined;
|
|
105632
|
-
keyword_performance?:
|
|
105633
|
-
keywords_for_keywords?:
|
|
105634
|
-
keywords_for_site?:
|
|
105635
|
-
keyword_suggestions_for_url?:
|
|
105876
|
+
keyword_performance?: AppendixAKeywordsDataPriceDataInfo | undefined;
|
|
105877
|
+
keywords_for_keywords?: AppendixAKeywordsDataPriceDataInfo | undefined;
|
|
105878
|
+
keywords_for_site?: AppendixAKeywordsDataPriceDataInfo | undefined;
|
|
105879
|
+
keyword_suggestions_for_url?: AppendixAKeywordsDataPriceDataInfo | undefined;
|
|
105636
105880
|
languages?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105637
105881
|
locations?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105638
105882
|
locations_and_languages?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105639
|
-
search_volume?:
|
|
105883
|
+
search_volume?: AppendixAKeywordsDataPriceDataInfo | undefined;
|
|
105640
105884
|
dataforseo_trends?: AppendixDataforseoTrendsKeywordsDataPriceData | undefined;
|
|
105641
105885
|
explore?: AppendixExploreKeywordsDataPriceData | undefined;
|
|
105642
105886
|
[key: string]: any;
|
|
@@ -105776,8 +106020,8 @@ export interface IAppendixMerchantPriceData {
|
|
|
105776
106020
|
[key: string]: any;
|
|
105777
106021
|
}
|
|
105778
106022
|
export declare class AppendixSerpPriceDataInfo implements IAppendixSerpPriceDataInfo {
|
|
105779
|
-
html?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105780
106023
|
regular?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
106024
|
+
html?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105781
106025
|
advanced?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105782
106026
|
[key: string]: any;
|
|
105783
106027
|
constructor(data?: IAppendixSerpPriceDataInfo);
|
|
@@ -105786,15 +106030,15 @@ export declare class AppendixSerpPriceDataInfo implements IAppendixSerpPriceData
|
|
|
105786
106030
|
toJSON(data?: any): any;
|
|
105787
106031
|
}
|
|
105788
106032
|
export interface IAppendixSerpPriceDataInfo {
|
|
105789
|
-
html?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105790
106033
|
regular?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
106034
|
+
html?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105791
106035
|
advanced?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105792
106036
|
[key: string]: any;
|
|
105793
106037
|
}
|
|
105794
106038
|
export declare class AppendixSerpPriceData implements IAppendixSerpPriceData {
|
|
105795
106039
|
tasks_fixed?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105796
106040
|
errors?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105797
|
-
jobs?:
|
|
106041
|
+
jobs?: AppendixAKeywordsDataPriceDataInfo | undefined;
|
|
105798
106042
|
languages?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105799
106043
|
live?: AppendixSerpPriceDataInfo | undefined;
|
|
105800
106044
|
locations?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
@@ -105811,7 +106055,7 @@ export declare class AppendixSerpPriceData implements IAppendixSerpPriceData {
|
|
|
105811
106055
|
export interface IAppendixSerpPriceData {
|
|
105812
106056
|
tasks_fixed?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105813
106057
|
errors?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105814
|
-
jobs?:
|
|
106058
|
+
jobs?: AppendixAKeywordsDataPriceDataInfo | undefined;
|
|
105815
106059
|
languages?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105816
106060
|
live?: AppendixSerpPriceDataInfo | undefined;
|
|
105817
106061
|
locations?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
@@ -105835,8 +106079,23 @@ export interface IAppendixAppendixPriceData {
|
|
|
105835
106079
|
user_data?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
105836
106080
|
[key: string]: any;
|
|
105837
106081
|
}
|
|
106082
|
+
export declare class AppendixAppListingsAppDataPriceData implements IAppendixAppListingsAppDataPriceData {
|
|
106083
|
+
categories_aggregation?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106084
|
+
search?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106085
|
+
[key: string]: any;
|
|
106086
|
+
constructor(data?: IAppendixAppListingsAppDataPriceData);
|
|
106087
|
+
init(_data?: any): void;
|
|
106088
|
+
static fromJS(data: any): AppendixAppListingsAppDataPriceData;
|
|
106089
|
+
toJSON(data?: any): any;
|
|
106090
|
+
}
|
|
106091
|
+
export interface IAppendixAppListingsAppDataPriceData {
|
|
106092
|
+
categories_aggregation?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106093
|
+
search?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106094
|
+
[key: string]: any;
|
|
106095
|
+
}
|
|
105838
106096
|
export declare class AppendixAppDataPriceData implements IAppendixAppDataPriceData {
|
|
105839
106097
|
app_info?: AppendixProductGoogleMerchantPriceDataInfo | undefined;
|
|
106098
|
+
app_listings?: AppendixAppListingsAppDataPriceData | undefined;
|
|
105840
106099
|
app_list?: AppendixProductGoogleMerchantPriceDataInfo | undefined;
|
|
105841
106100
|
app_reviews?: AppendixPriceDataInfo | undefined;
|
|
105842
106101
|
app_searches?: AppendixProductGoogleMerchantPriceDataInfo | undefined;
|
|
@@ -105853,6 +106112,7 @@ export declare class AppendixAppDataPriceData implements IAppendixAppDataPriceDa
|
|
|
105853
106112
|
}
|
|
105854
106113
|
export interface IAppendixAppDataPriceData {
|
|
105855
106114
|
app_info?: AppendixProductGoogleMerchantPriceDataInfo | undefined;
|
|
106115
|
+
app_listings?: AppendixAppListingsAppDataPriceData | undefined;
|
|
105856
106116
|
app_list?: AppendixProductGoogleMerchantPriceDataInfo | undefined;
|
|
105857
106117
|
app_reviews?: AppendixPriceDataInfo | undefined;
|
|
105858
106118
|
app_searches?: AppendixProductGoogleMerchantPriceDataInfo | undefined;
|
|
@@ -105972,7 +106232,7 @@ export interface IAppendixGoogleBusinessDataPriceDataInfo {
|
|
|
105972
106232
|
[key: string]: any;
|
|
105973
106233
|
}
|
|
105974
106234
|
export declare class AppendixGoogleBusinessDataPriceData implements IAppendixGoogleBusinessDataPriceData {
|
|
105975
|
-
extended_reviews?:
|
|
106235
|
+
extended_reviews?: AppendixAKeywordsDataPriceDataInfo | undefined;
|
|
105976
106236
|
hotel_info?: AppendixHotelInfoGoogleBusinessDataPriceData | undefined;
|
|
105977
106237
|
hotel_searches?: AppendixGoogleBusinessDataPriceDataInfo | undefined;
|
|
105978
106238
|
my_business_info?: AppendixGoogleBusinessDataPriceDataInfo | undefined;
|
|
@@ -105986,7 +106246,7 @@ export declare class AppendixGoogleBusinessDataPriceData implements IAppendixGoo
|
|
|
105986
106246
|
toJSON(data?: any): any;
|
|
105987
106247
|
}
|
|
105988
106248
|
export interface IAppendixGoogleBusinessDataPriceData {
|
|
105989
|
-
extended_reviews?:
|
|
106249
|
+
extended_reviews?: AppendixAKeywordsDataPriceDataInfo | undefined;
|
|
105990
106250
|
hotel_info?: AppendixHotelInfoGoogleBusinessDataPriceData | undefined;
|
|
105991
106251
|
hotel_searches?: AppendixGoogleBusinessDataPriceDataInfo | undefined;
|
|
105992
106252
|
my_business_info?: AppendixGoogleBusinessDataPriceDataInfo | undefined;
|
|
@@ -106132,12 +106392,14 @@ export declare class AppendixDataforseoLabsPriceData implements IAppendixDatafor
|
|
|
106132
106392
|
bulk_traffic_estimation?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106133
106393
|
categories?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
106134
106394
|
categories_for_domain?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106395
|
+
categories_for_keywords?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106135
106396
|
competitors_domain?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106136
106397
|
domain_intersection?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106137
106398
|
domain_metrics_by_categories?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106138
106399
|
domain_rank_overview?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106139
106400
|
domain_whois_overview?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106140
106401
|
errors?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
106402
|
+
historical_bulk_traffic_estimation?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106141
106403
|
historical_rank_overview?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106142
106404
|
historical_search_volume?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106143
106405
|
historical_serps?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
@@ -106173,12 +106435,14 @@ export interface IAppendixDataforseoLabsPriceData {
|
|
|
106173
106435
|
bulk_traffic_estimation?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106174
106436
|
categories?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
106175
106437
|
categories_for_domain?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106438
|
+
categories_for_keywords?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106176
106439
|
competitors_domain?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106177
106440
|
domain_intersection?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106178
106441
|
domain_metrics_by_categories?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106179
106442
|
domain_rank_overview?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106180
106443
|
domain_whois_overview?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106181
106444
|
errors?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
106445
|
+
historical_bulk_traffic_estimation?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106182
106446
|
historical_rank_overview?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106183
106447
|
historical_search_volume?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|
|
106184
106448
|
historical_serps?: AppendixBingKeywordsDataPriceDataInfo | undefined;
|