@hzlmy2002/web-market 0.1.0

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.
@@ -0,0 +1,847 @@
1
+ {
2
+ "source": "AIsa-team/docs/openapi/similarweb.json",
3
+ "revision": "286971377beec7304107a8515e5db129c113f802",
4
+ "sha256": "3ddebac85fe9511f569ef7c9dbf46219d24a229199dabcf08df77aa495a7e3fb",
5
+ "captured_at": "2026-09-05",
6
+ "operations": {
7
+ "/similarweb/website/traffic-engagement": {
8
+ "x-aisa-pricing": {
9
+ "model": "per_credit",
10
+ "currency": "USD",
11
+ "credit_price_usd": 0.1,
12
+ "credit_formula": "credits = 1 x metrics x periods",
13
+ "credit_rate": "1 credit / (metric x month)",
14
+ "cost_drivers": [
15
+ {
16
+ "param": "metrics",
17
+ "effect": "number of metrics requested"
18
+ },
19
+ {
20
+ "param": "periods",
21
+ "effect": "number of months in the date window"
22
+ }
23
+ ],
24
+ "cost_tier": "med",
25
+ "example": "minimal (1 metric + 1 month) = 1 credit ($0.10); cost grows with metrics and periods."
26
+ },
27
+ "summary": "Traffic & Engagement",
28
+ "description": "Traffic & Engagement. Response follows the SimilarWeb v5 envelope (meta + data). Date constraint: the start_date-end_date span must cover between 1 and 120 monthly buckets.",
29
+ "operationId": "get_similarweb_traffic_engagement",
30
+ "parameters": [
31
+ {
32
+ "name": "domain",
33
+ "in": "query",
34
+ "required": true,
35
+ "description": "Target domain, e.g. example.com.",
36
+ "schema": {
37
+ "type": "string"
38
+ }
39
+ },
40
+ {
41
+ "name": "start_date",
42
+ "in": "query",
43
+ "required": true,
44
+ "description": "Start month, format YYYY-MM.",
45
+ "schema": {
46
+ "type": "string"
47
+ }
48
+ },
49
+ {
50
+ "name": "end_date",
51
+ "in": "query",
52
+ "required": true,
53
+ "description": "End month, format YYYY-MM.",
54
+ "schema": {
55
+ "type": "string"
56
+ }
57
+ },
58
+ {
59
+ "name": "granularity",
60
+ "in": "query",
61
+ "required": false,
62
+ "description": "Time granularity. Allowed: monthly. Default: monthly.",
63
+ "schema": {
64
+ "type": "string",
65
+ "enum": [
66
+ "monthly"
67
+ ],
68
+ "default": "monthly"
69
+ }
70
+ },
71
+ {
72
+ "name": "metrics",
73
+ "in": "query",
74
+ "required": true,
75
+ "description": "Comma-separated metrics, e.g. visits,pages_per_visit.",
76
+ "schema": {
77
+ "type": "string"
78
+ }
79
+ },
80
+ {
81
+ "name": "country",
82
+ "in": "query",
83
+ "required": false,
84
+ "description": "Two-letter country code. Allowed: us, ww. Default: ww. Coverage is limited to ww and us on the current plan.",
85
+ "schema": {
86
+ "type": "string",
87
+ "enum": [
88
+ "us",
89
+ "ww"
90
+ ],
91
+ "default": "ww"
92
+ }
93
+ },
94
+ {
95
+ "name": "web_source",
96
+ "in": "query",
97
+ "required": false,
98
+ "description": "Traffic source device split. Allowed: desktop, mobile_web, total.",
99
+ "schema": {
100
+ "type": "string",
101
+ "enum": [
102
+ "desktop",
103
+ "mobile_web",
104
+ "total"
105
+ ]
106
+ }
107
+ },
108
+ {
109
+ "name": "main_domain_only",
110
+ "in": "query",
111
+ "required": false,
112
+ "description": "Restrict to the main domain only (true/false). Default: True.",
113
+ "schema": {
114
+ "type": "boolean",
115
+ "default": true
116
+ }
117
+ },
118
+ {
119
+ "name": "mtd",
120
+ "in": "query",
121
+ "required": false,
122
+ "description": "Month-to-date flag (true/false).",
123
+ "schema": {
124
+ "type": "boolean"
125
+ }
126
+ }
127
+ ],
128
+ "responses": {
129
+ "200": {
130
+ "description": "SimilarWeb v5 envelope (meta + data).",
131
+ "content": {
132
+ "application/json": {
133
+ "example": {
134
+ "meta": {
135
+ "request": {
136
+ "format": "json",
137
+ "domain": "cnn.com",
138
+ "granularity": "monthly",
139
+ "country": "us",
140
+ "start_date": "2026-06-01",
141
+ "end_date": "2026-06-30",
142
+ "web_source": "total",
143
+ "metrics": [
144
+ "visits",
145
+ "pages_per_visit",
146
+ "average_visit_duration",
147
+ "bounce_rate",
148
+ "new_users",
149
+ "page_views",
150
+ "returning_users",
151
+ "unique_visitors"
152
+ ],
153
+ "state": null,
154
+ "mtd": false,
155
+ "main_domain_only": true
156
+ },
157
+ "status": "success",
158
+ "last_updated": "2026-07-31"
159
+ },
160
+ "data": [
161
+ {
162
+ "date": "2026-06-01",
163
+ "visits": 182538329.78179574,
164
+ "bounce_rate": 0.6402229356798581,
165
+ "average_visit_duration": 194.8333714917004,
166
+ "pages_per_visit": 1.9970684926970637,
167
+ "page_views": 364541547.1167704,
168
+ "unique_visitors": 32705292.619999997,
169
+ "new_users": 10074246.080150243,
170
+ "returning_users": 22631046.540221456
171
+ }
172
+ ]
173
+ },
174
+ "schema": {
175
+ "type": "object",
176
+ "properties": {
177
+ "meta": {
178
+ "$ref": "#/components/schemas/SimilarWebMeta"
179
+ },
180
+ "data": {
181
+ "type": "array",
182
+ "items": {
183
+ "type": "object",
184
+ "properties": {
185
+ "date": {
186
+ "type": "string"
187
+ },
188
+ "visits": {
189
+ "type": "number"
190
+ },
191
+ "bounce_rate": {
192
+ "type": "number"
193
+ },
194
+ "average_visit_duration": {
195
+ "type": "number"
196
+ },
197
+ "pages_per_visit": {
198
+ "type": "number"
199
+ },
200
+ "page_views": {
201
+ "type": "number"
202
+ },
203
+ "unique_visitors": {
204
+ "type": "number"
205
+ },
206
+ "new_users": {
207
+ "type": "number"
208
+ },
209
+ "returning_users": {
210
+ "type": "number"
211
+ }
212
+ }
213
+ }
214
+ }
215
+ }
216
+ }
217
+ }
218
+ }
219
+ }
220
+ }
221
+ },
222
+ "/similarweb/website/similar-sites": {
223
+ "x-aisa-pricing": {
224
+ "model": "per_credit",
225
+ "currency": "USD",
226
+ "credit_price_usd": 0.1,
227
+ "credit_formula": "credits = ceil(5 x rows); rows capped at 20",
228
+ "credit_rate": "5 / row (max 20 rows)",
229
+ "cost_drivers": [
230
+ {
231
+ "param": "limit",
232
+ "effect": "charge scales with rows returned at 5 credit/row; at most 20 rows are billed"
233
+ }
234
+ ],
235
+ "cost_tier": "high",
236
+ "example": "20 rows = 100 credits ($10.00); limit=5 = 25 credits ($2.50)"
237
+ },
238
+ "summary": "SimilarSites",
239
+ "description": "SimilarSites. Response follows the SimilarWeb v5 envelope (meta + data). Date window (upstream SimilarWeb constraint): start_date and end_date must span EXACTLY 3 consecutive months — a 1- or 2-month span is rejected with upstream error 120 ('must span exactly 3 month(s)'). That span must also be SimilarWeb's most recent supported window, which advances forward each month; an older or out-of-range span is rejected with error 101 ('Dates not in range'). In practice, request the three most recent completed months (e.g. if the latest published month is 2026-07, use start_date=2026-05 and end_date=2026-07). To read the exact currently-supported range, call SimilarWeb's /describe endpoint for this API.",
240
+ "operationId": "get_similarweb_similar_sites",
241
+ "parameters": [
242
+ {
243
+ "name": "domain",
244
+ "in": "query",
245
+ "required": true,
246
+ "description": "Target domain, e.g. example.com.",
247
+ "schema": {
248
+ "type": "string"
249
+ }
250
+ },
251
+ {
252
+ "name": "start_date",
253
+ "in": "query",
254
+ "required": true,
255
+ "description": "Start month, format YYYY-MM. Must be exactly 2 months before end_date: the window has to span exactly 3 consecutive months within SimilarWeb's latest supported range (see the endpoint description).",
256
+ "schema": {
257
+ "type": "string"
258
+ }
259
+ },
260
+ {
261
+ "name": "end_date",
262
+ "in": "query",
263
+ "required": true,
264
+ "description": "End month, format YYYY-MM. Together with start_date must span exactly 3 consecutive months, and must be the most recent supported month (the window rolls forward monthly; see the endpoint description).",
265
+ "schema": {
266
+ "type": "string"
267
+ }
268
+ },
269
+ {
270
+ "name": "granularity",
271
+ "in": "query",
272
+ "required": false,
273
+ "description": "Time granularity. Allowed: monthly.",
274
+ "schema": {
275
+ "type": "string",
276
+ "enum": [
277
+ "monthly"
278
+ ]
279
+ }
280
+ },
281
+ {
282
+ "name": "limit",
283
+ "in": "query",
284
+ "required": true,
285
+ "description": "Number of rows to return; max 20, billed as 20 if exceeded.",
286
+ "schema": {
287
+ "type": "integer",
288
+ "default": 20,
289
+ "maximum": 20
290
+ }
291
+ },
292
+ {
293
+ "name": "country",
294
+ "in": "query",
295
+ "required": false,
296
+ "description": "Two-letter country code. Allowed: us, ww. Default: ww. Coverage is limited to ww and us on the current plan.",
297
+ "schema": {
298
+ "type": "string",
299
+ "enum": [
300
+ "us",
301
+ "ww"
302
+ ],
303
+ "default": "ww"
304
+ }
305
+ },
306
+ {
307
+ "name": "web_source",
308
+ "in": "query",
309
+ "required": false,
310
+ "description": "Traffic source device split. Allowed: desktop, mobile_web, total.",
311
+ "schema": {
312
+ "type": "string",
313
+ "enum": [
314
+ "desktop",
315
+ "mobile_web",
316
+ "total"
317
+ ]
318
+ }
319
+ },
320
+ {
321
+ "name": "main_domain_only",
322
+ "in": "query",
323
+ "required": false,
324
+ "description": "Restrict to the main domain only (true/false).",
325
+ "schema": {
326
+ "type": "boolean"
327
+ }
328
+ },
329
+ {
330
+ "name": "offset",
331
+ "in": "query",
332
+ "required": false,
333
+ "description": "Row offset for pagination.",
334
+ "schema": {
335
+ "type": "integer"
336
+ }
337
+ },
338
+ {
339
+ "name": "traffic_source",
340
+ "in": "query",
341
+ "required": false,
342
+ "description": "Traffic-source filter.",
343
+ "schema": {
344
+ "type": "string"
345
+ }
346
+ }
347
+ ],
348
+ "responses": {
349
+ "200": {
350
+ "description": "SimilarWeb v5 envelope (meta + data).",
351
+ "content": {
352
+ "application/json": {
353
+ "example": {
354
+ "meta": {
355
+ "query": {
356
+ "limit": 5,
357
+ "offset": 0,
358
+ "asc": null,
359
+ "sort": null
360
+ },
361
+ "request": {
362
+ "format": "json",
363
+ "domain": "cnn.com",
364
+ "granularity": "monthly",
365
+ "start_date": "2026-05-01",
366
+ "end_date": "2026-07-31",
367
+ "metrics": [
368
+ "rank",
369
+ "affinity",
370
+ "has_adsense"
371
+ ],
372
+ "category": null
373
+ },
374
+ "status": "success",
375
+ "last_updated": "2026-07-31"
376
+ },
377
+ "data": [
378
+ {
379
+ "domain": "bbc.com",
380
+ "category": "News_and_Media",
381
+ "rank": 95,
382
+ "affinity": 1,
383
+ "has_adsense": true
384
+ }
385
+ ]
386
+ },
387
+ "schema": {
388
+ "type": "object",
389
+ "properties": {
390
+ "meta": {
391
+ "$ref": "#/components/schemas/SimilarWebMeta"
392
+ },
393
+ "data": {
394
+ "type": "array",
395
+ "items": {
396
+ "type": "object",
397
+ "properties": {
398
+ "domain": {
399
+ "type": "string"
400
+ },
401
+ "category": {
402
+ "type": "string"
403
+ },
404
+ "rank": {
405
+ "type": "integer"
406
+ },
407
+ "affinity": {
408
+ "type": "number"
409
+ },
410
+ "has_adsense": {
411
+ "type": "boolean"
412
+ }
413
+ }
414
+ }
415
+ }
416
+ }
417
+ }
418
+ }
419
+ }
420
+ }
421
+ }
422
+ },
423
+ "/similarweb/search/website-keywords": {
424
+ "x-aisa-pricing": {
425
+ "model": "per_credit",
426
+ "currency": "USD",
427
+ "credit_price_usd": 0.1,
428
+ "credit_formula": "credits = ceil(0.1 x rows); rows capped at 20",
429
+ "credit_rate": "0.1 / row (max 20 rows)",
430
+ "cost_drivers": [
431
+ {
432
+ "param": "limit",
433
+ "effect": "charge scales with rows returned at 0.1 credit/row; at most 20 rows are billed"
434
+ }
435
+ ],
436
+ "cost_tier": "med",
437
+ "example": "20 rows = 2 credits ($0.20); limit=5 = 1 credit ($0.10)"
438
+ },
439
+ "summary": "Website Keywords",
440
+ "description": "Website Keywords. Response follows the SimilarWeb v5 envelope (meta + data). Date constraint: the start_date-end_date span must cover between 1 and 3 monthly buckets. Note: `data` may arrive grouped as an array of arrays; billing counts rows across all groups.",
441
+ "operationId": "get_similarweb_keywords",
442
+ "parameters": [
443
+ {
444
+ "name": "domain",
445
+ "in": "query",
446
+ "required": true,
447
+ "description": "Target domain, e.g. example.com.",
448
+ "schema": {
449
+ "type": "string"
450
+ }
451
+ },
452
+ {
453
+ "name": "start_date",
454
+ "in": "query",
455
+ "required": true,
456
+ "description": "Start month, format YYYY-MM.",
457
+ "schema": {
458
+ "type": "string"
459
+ }
460
+ },
461
+ {
462
+ "name": "end_date",
463
+ "in": "query",
464
+ "required": true,
465
+ "description": "End month, format YYYY-MM.",
466
+ "schema": {
467
+ "type": "string"
468
+ }
469
+ },
470
+ {
471
+ "name": "granularity",
472
+ "in": "query",
473
+ "required": true,
474
+ "description": "Time granularity. Allowed: monthly.",
475
+ "schema": {
476
+ "type": "string",
477
+ "enum": [
478
+ "monthly"
479
+ ]
480
+ }
481
+ },
482
+ {
483
+ "name": "limit",
484
+ "in": "query",
485
+ "required": true,
486
+ "description": "Number of rows to return; max 20, billed as 20 if exceeded.",
487
+ "schema": {
488
+ "type": "integer",
489
+ "maximum": 20,
490
+ "default": 20
491
+ }
492
+ },
493
+ {
494
+ "name": "country",
495
+ "in": "query",
496
+ "required": false,
497
+ "description": "Two-letter country code. Allowed: us, ww. Default: ww. Coverage is limited to ww and us on the current plan.",
498
+ "schema": {
499
+ "type": "string",
500
+ "enum": [
501
+ "us",
502
+ "ww"
503
+ ],
504
+ "default": "ww"
505
+ }
506
+ },
507
+ {
508
+ "name": "web_source",
509
+ "in": "query",
510
+ "required": false,
511
+ "description": "Traffic source device split. Allowed: total.",
512
+ "schema": {
513
+ "type": "string",
514
+ "enum": [
515
+ "total"
516
+ ]
517
+ }
518
+ },
519
+ {
520
+ "name": "main_domain_only",
521
+ "in": "query",
522
+ "required": false,
523
+ "description": "Restrict to the main domain only (true/false).",
524
+ "schema": {
525
+ "type": "boolean"
526
+ }
527
+ },
528
+ {
529
+ "name": "format",
530
+ "in": "query",
531
+ "required": false,
532
+ "description": "Response format. Allowed: json.",
533
+ "schema": {
534
+ "type": "string",
535
+ "enum": [
536
+ "json"
537
+ ]
538
+ }
539
+ }
540
+ ],
541
+ "responses": {
542
+ "200": {
543
+ "description": "SimilarWeb v5 envelope (meta + data).",
544
+ "content": {
545
+ "application/json": {
546
+ "example": {
547
+ "meta": {
548
+ "query": {
549
+ "limit": 5,
550
+ "offset": 0,
551
+ "asc": null,
552
+ "sort": null
553
+ },
554
+ "request": {
555
+ "branded_type": "all",
556
+ "keywords_filter_rules": [],
557
+ "format": "json",
558
+ "domain": "nike.com",
559
+ "granularity": "monthly",
560
+ "country": "us",
561
+ "start_date": "2026-06-01",
562
+ "end_date": "2026-06-30",
563
+ "traffic_source": "all",
564
+ "web_source": "total",
565
+ "metrics": [
566
+ "clicks",
567
+ "traffic_share",
568
+ "competition",
569
+ "primary_intent",
570
+ "secondary_intent",
571
+ "position",
572
+ "serp_features",
573
+ "top_url",
574
+ "url_count"
575
+ ]
576
+ },
577
+ "status": "success",
578
+ "last_updated": "2026-07-31"
579
+ },
580
+ "data": [
581
+ {
582
+ "keyword": "nike",
583
+ "clicks": 1001887.5658500849,
584
+ "traffic_share": 0.15853772273003125,
585
+ "competition": 100,
586
+ "primary_intent": "Navigational",
587
+ "secondary_intent": null,
588
+ "position": 1,
589
+ "serp_features": [
590
+ "organic_sitelinks",
591
+ "organic_expanded_sitelinks",
592
+ "apps",
593
+ "pla",
594
+ "images",
595
+ "related_searches",
596
+ "popular_products",
597
+ "paid_sitelinks",
598
+ "paid",
599
+ "news",
600
+ "video",
601
+ "organic",
602
+ "local_pack",
603
+ "related_questions"
604
+ ],
605
+ "top_url": "nike.com",
606
+ "url_count": 1581
607
+ }
608
+ ]
609
+ },
610
+ "schema": {
611
+ "type": "object",
612
+ "properties": {
613
+ "meta": {
614
+ "$ref": "#/components/schemas/SimilarWebMeta"
615
+ },
616
+ "data": {
617
+ "type": "array",
618
+ "items": {
619
+ "type": "object",
620
+ "properties": {
621
+ "keyword": {
622
+ "type": "string"
623
+ },
624
+ "clicks": {
625
+ "type": "number"
626
+ },
627
+ "traffic_share": {
628
+ "type": "number"
629
+ },
630
+ "competition": {
631
+ "type": "integer"
632
+ },
633
+ "primary_intent": {
634
+ "type": "string"
635
+ },
636
+ "secondary_intent": {
637
+ "type": "string"
638
+ },
639
+ "position": {
640
+ "type": "integer"
641
+ },
642
+ "serp_features": {
643
+ "type": "string"
644
+ },
645
+ "top_url": {
646
+ "type": "string"
647
+ },
648
+ "url_count": {
649
+ "type": "integer"
650
+ }
651
+ }
652
+ }
653
+ }
654
+ }
655
+ }
656
+ }
657
+ }
658
+ }
659
+ }
660
+ },
661
+ "/similarweb/website-top-geographies": {
662
+ "x-aisa-pricing": {
663
+ "model": "per_credit",
664
+ "currency": "USD",
665
+ "credit_price_usd": 0.1,
666
+ "credit_formula": "credits = ceil(3 x rows); rows capped at 10",
667
+ "credit_rate": "3 / row (max 10 rows)",
668
+ "cost_drivers": [
669
+ {
670
+ "param": "limit",
671
+ "effect": "charge scales with rows returned at 3 credit/row; at most 10 rows are billed"
672
+ }
673
+ ],
674
+ "cost_tier": "high",
675
+ "example": "10 rows = 30 credits ($3.00); limit=5 = 15 credits ($1.50)"
676
+ },
677
+ "summary": "Website Top Geographies",
678
+ "description": "Top countries by share of a domain's traffic for the latest available month (data.countries, up to 10 rows with country_code, country_name, share and visits). Geography coverage is worldwide (ww) and fixed: a country parameter is not accepted for this endpoint.",
679
+ "operationId": "get_similarweb_website_top_geographies",
680
+ "parameters": [
681
+ {
682
+ "name": "domain",
683
+ "in": "query",
684
+ "required": true,
685
+ "description": "Target domain, e.g. example.com.",
686
+ "schema": {
687
+ "type": "string"
688
+ }
689
+ }
690
+ ],
691
+ "responses": {
692
+ "200": {
693
+ "description": "SimilarWeb traffic response (meta + data). data.countries is ranked by traffic share (highest first).",
694
+ "content": {
695
+ "application/json": {
696
+ "schema": {
697
+ "type": "object",
698
+ "properties": {
699
+ "meta": {
700
+ "type": "object",
701
+ "properties": {
702
+ "country": {
703
+ "type": "string"
704
+ },
705
+ "end_date": {
706
+ "type": "string"
707
+ },
708
+ "granularity": {
709
+ "type": "string"
710
+ },
711
+ "request_id": {
712
+ "type": "string"
713
+ },
714
+ "retrieved_at": {
715
+ "type": "string"
716
+ },
717
+ "source": {
718
+ "type": "string"
719
+ },
720
+ "start_date": {
721
+ "type": "string"
722
+ }
723
+ }
724
+ },
725
+ "data": {
726
+ "type": "object",
727
+ "properties": {
728
+ "countries": {
729
+ "type": "array",
730
+ "items": {
731
+ "type": "object",
732
+ "properties": {
733
+ "country_code": {
734
+ "type": "string"
735
+ },
736
+ "country_name": {
737
+ "type": "string"
738
+ },
739
+ "rank": {
740
+ "type": "integer",
741
+ "nullable": true
742
+ },
743
+ "share": {
744
+ "type": "number"
745
+ },
746
+ "visits": {
747
+ "type": "number"
748
+ }
749
+ }
750
+ }
751
+ }
752
+ }
753
+ }
754
+ }
755
+ },
756
+ "example": {
757
+ "data": {
758
+ "countries": [
759
+ {
760
+ "country_code": "us",
761
+ "country_name": "United States",
762
+ "rank": null,
763
+ "share": 0.8135986038373749,
764
+ "visits": 184871830.97664917
765
+ },
766
+ {
767
+ "country_code": "ca",
768
+ "country_name": "Canada",
769
+ "rank": null,
770
+ "share": 0.1250244855835728,
771
+ "visits": 28408978.896636344
772
+ },
773
+ {
774
+ "country_code": "gb",
775
+ "country_name": "United Kingdom",
776
+ "rank": null,
777
+ "share": 0.0046361238147776184,
778
+ "visits": 1053453.9934433121
779
+ },
780
+ {
781
+ "country_code": "in",
782
+ "country_name": "India",
783
+ "rank": null,
784
+ "share": 0.004525631464841616,
785
+ "visits": 1028347.1127957336
786
+ },
787
+ {
788
+ "country_code": "au",
789
+ "country_name": "Australia",
790
+ "rank": null,
791
+ "share": 0.0038766416446363557,
792
+ "visits": 880878.8947080157
793
+ },
794
+ {
795
+ "country_code": "za",
796
+ "country_name": "South Africa",
797
+ "rank": null,
798
+ "share": 0.0032450884260539874,
799
+ "visits": 737372.7488913544
800
+ },
801
+ {
802
+ "country_code": "sg",
803
+ "country_name": "Singapore",
804
+ "rank": null,
805
+ "share": 0.0029357496450864123,
806
+ "visits": 667082.5264649267
807
+ },
808
+ {
809
+ "country_code": "de",
810
+ "country_name": "Germany",
811
+ "rank": null,
812
+ "share": 0.002332122537702222,
813
+ "visits": 529921.9560768788
814
+ },
815
+ {
816
+ "country_code": "nl",
817
+ "country_name": "Netherlands",
818
+ "rank": null,
819
+ "share": 0.0022503248115619393,
820
+ "visits": 511335.2779164732
821
+ },
822
+ {
823
+ "country_code": "nz",
824
+ "country_name": "New Zealand",
825
+ "rank": null,
826
+ "share": 0.002059521596153513,
827
+ "visits": 467979.5744744864
828
+ }
829
+ ]
830
+ },
831
+ "meta": {
832
+ "country": "ww",
833
+ "end_date": "2026-07",
834
+ "granularity": "monthly",
835
+ "request_id": "imc_7d699adfa9e84a0e867521b2d071c2bb35f887a6f6b7c1e5d95067a1dfc2f2fa",
836
+ "retrieved_at": "2026-08-27T14:47:22.508241524Z",
837
+ "source": "similarweb",
838
+ "start_date": "2026-07"
839
+ }
840
+ }
841
+ }
842
+ }
843
+ }
844
+ }
845
+ }
846
+ }
847
+ }