x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
<nav aria-label="API catalog" data-controller="tree-filter" data-action="turbo:before-cache@window->tree-filter#reset"> <div class="px-2 pb-3"> <label class="sr-only" for="engine-tree-filter"> Filter engines </label> <input type="text" value="" placeholder="Filter engines" class="min-w-0 appearance-none border transition-colors placeholder:text-ink-faint focus:outline-none focus:ring-3 read-only:text-ink-muted disabled:cursor-not-allowed disabled:text-ink-faint text-ink bg-surface-subtle block w-full rounded-sm text-sm font-sans border-line-strong hover:border-ink-faint focus:border-accent-line focus:ring-focus-ring read-only:border-line read-only:bg-surface-subtle read-only:hover:border-line disabled:border-line disabled:bg-surface-sunk h-7 px-2" autocomplete="off" data-tree-filter-target="input" data-action="input->tree-filter#schedule" id="engine-tree-filter"> </div> <p class="px-4 py-2 text-sm text-ink-faint" data-tree-filter-target="empty" hidden> No engines match. </p> <section data-tree-filter-target="band"> <h3 class="px-2 pb-1.5 text-xs font-medium uppercase tracking-wide text-ink-faint">Popular</h3> <ul class="space-y-1"> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" open> <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/google" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-4 shrink-0" aria-hidden="true" focusable="false"><path d="M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z" /></svg> Google Search </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="google search google"> <a href="/google" title="google" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-accent-line bg-nav-active font-medium text-nav-active-ink" data-engine-row aria-current="page">Google Search</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google light search google_light"> <a href="/google-light-api" title="google_light" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Light Search</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google images google_images"> <a href="/google-images" title="google_images" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Images</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google videos google_videos"> <a href="/google-videos" title="google_videos" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Videos</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google news google_news"> <a href="/google-news" title="google_news" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google News</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google news light google_news_light"> <a href="/google-news-light-api" title="google_news_light" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google News Light</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google news portal google_news_portal"> <a href="/google-news-portal-api" title="google_news_portal" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google News Portal</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google autocomplete google_autocomplete"> <a href="/google-autocomplete" title="google_autocomplete" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Autocomplete</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google lens google_lens"> <a href="/google-lens" title="google_lens" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Lens</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google local google_local"> <a href="/google-local-api" title="google_local" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Local</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google shopping google_shopping"> <a href="/google-shopping" title="google_shopping" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Shopping</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google product google_product"> <a href="/google-product" title="google_product" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Product</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google product page google_product_page"> <a href="/google-product-page" title="google_product_page" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Product Page</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google product reviews google_product_reviews"> <a href="/google-product-reviews" title="google_product_reviews" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Product Reviews</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google product specifications google_product_specifications"> <a href="/google-product-specifications" title="google_product_specifications" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Product Specifications</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google jobs google_jobs"> <a href="/google-jobs" title="google_jobs" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Jobs</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google events google_events"> <a href="/google-events-api" title="google_events" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Events</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google finance google_finance"> <a href="/google-finance" title="google_finance" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Finance</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google scholar google_scholar"> <a href="/google-scholar" title="google_scholar" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Scholar</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google scholar author google_scholar_author"> <a href="/google-scholar-author" title="google_scholar_author" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Scholar Author</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google scholar cite google_scholar_cite"> <a href="/google-scholar-cite" title="google_scholar_cite" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Scholar Cite</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google patents google_patents"> <a href="/google-patents" title="google_patents" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Patents</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google patents details google_patents_details"> <a href="/google-patents-details" title="google_patents_details" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Patents Details</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google books google_books"> <a href="/google-books-api" title="google_books" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Books</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google ai mode google_ai_mode"> <a href="/google-ai-mode-api" title="google_ai_mode" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google AI Mode</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google ai overview google_ai_overview"> <a href="/google-ai-overview-api" title="google_ai_overview" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google AI Overview</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google ads transparency center google_ads_transparency_center"> <a href="/google-ads-transparency-center-api" title="google_ads_transparency_center" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Ads Transparency Center</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google ads transparency center advertiser search google_ads_transparency_center_advertiser_search"> <a href="/google-ads-transparency-center-advertiser-search-api" title="google_ads_transparency_center_advertiser_search" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Ads Transparency Center Advertiser Search</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google ads advertiser info google_ads_advertiser_info"> <a href="/google-ads-advertiser-info-api" title="google_ads_advertiser_info" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Ads Advertiser Info</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google images light google_images_light"> <a href="/google-images-light-api" title="google_images_light" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Images Light</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google videos light google_videos_light"> <a href="/google-videos-light-api" title="google_videos_light" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Videos Light</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google shorts google_shorts"> <a href="/google-shorts-api" title="google_shorts" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Shorts</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google forums google_forums"> <a href="/google-forums-api" title="google_forums" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Forums</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google related questions google_related_questions"> <a href="/google-related-questions-api" title="google_related_questions" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Related Questions</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google about this domain google_about_this_domain"> <a href="/google-about-this-domain-api" title="google_about_this_domain" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google About This Domain</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google about this store google_about_this_store"> <a href="/google-about-this-store-api" title="google_about_this_store" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google About This Store</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google place google_place"> <a href="/google-place-api" title="google_place" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Place</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google rank tracking google_rank_tracking"> <a href="/google-rank-tracking-api" title="google_rank_tracking" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Rank Tracking</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google scholar case law google_scholar_case_law"> <a href="/google-scholar-case-law-api" title="google_scholar_case_law" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Scholar Case Law</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google product offers google_product_offers"> <a href="/google-product-offers" title="google_product_offers" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Product Offers</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google shopping filters google_shopping_filters"> <a href="/google-shopping-filters" title="google_shopping_filters" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Shopping Filters</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google shopping autocomplete google_shopping_autocomplete"> <a href="/google-shopping-autocomplete-api" title="google_shopping_autocomplete" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Shopping Autocomplete</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google ads transparency center ad details google_ads_transparency_center_ad_details"> <a href="/google-ads-transparency-center-ad-details-api" title="google_ads_transparency_center_ad_details" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Ads Transparency Center Ad Details</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/google-maps" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-4 shrink-0" aria-hidden="true" focusable="false"><path d="M19.527 4.799c1.212 2.608.937 5.678-.405 8.173-1.101 2.047-2.744 3.74-4.098 5.614-.619.858-1.244 1.75-1.669 2.727-.141.325-.263.658-.383.992-.121.333-.224.673-.34 1.008-.109.314-.236.684-.627.687h-.007c-.466-.001-.579-.53-.695-.887-.284-.874-.581-1.713-1.019-2.525-.51-.944-1.145-1.817-1.79-2.671L19.527 4.799zM8.545 7.705l-3.959 4.707c.724 1.54 1.821 2.863 2.871 4.18.247.31.494.622.737.936l4.984-5.925-.029.01c-1.741.601-3.691-.291-4.392-1.987a3.377 3.377 0 0 1-.209-.716c-.063-.437-.077-.761-.004-1.198l.001-.007zM5.492 3.149l-.003.004c-1.947 2.466-2.281 5.88-1.117 8.77l4.785-5.689-.058-.05-3.607-3.035zM14.661.436l-3.838 4.563a.295.295 0 0 1 .027-.01c1.6-.551 3.403.15 4.22 1.626.176.319.323.683.377 1.045.068.446.085.773.012 1.22l-.003.016 3.836-4.561A8.382 8.382 0 0 0 14.67.439l-.009-.003zM9.466 5.868L14.162.285l-.047-.012A8.31 8.31 0 0 0 11.986 0a8.439 8.439 0 0 0-6.169 2.766l-.016.018 3.665 3.084z" /></svg> Google Maps </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="google maps google_maps"> <a href="/google-maps" title="google_maps" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Maps</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google maps place google_maps_place"> <a href="/google-maps-place" title="google_maps_place" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Maps Place</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google maps reviews google_maps_reviews"> <a href="/google-maps-reviews" title="google_maps_reviews" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Maps Reviews</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google maps photos google_maps_photos"> <a href="/google-maps-photos" title="google_maps_photos" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Maps Photos</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google maps directions google_maps_directions"> <a href="/google-maps-directions-api" title="google_maps_directions" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Maps Directions</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google maps directions search along route google_maps_directions_search_along_route"> <a href="/google-maps-directions-search-along-route-api" title="google_maps_directions_search_along_route" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Maps Directions Search Along Route</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/google-trends" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-4 shrink-0" aria-hidden="true" focusable="false"><path d="M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z" /></svg> Google Trends </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="google trends google_trends"> <a href="/google-trends" title="google_trends" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Trends</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google trends autocomplete google_trends_autocomplete"> <a href="/google-trends-autocomplete" title="google_trends_autocomplete" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Trends Autocomplete</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google trends trending now google_trends_trending_now"> <a href="/google-trends-trending-now-api" title="google_trends_trending_now" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Trends Trending Now</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google trends trending now news google_trends_trending_now_news"> <a href="/google-trends-trending-now-news-api" title="google_trends_trending_now_news" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Trends Trending Now News</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/youtube" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-4 shrink-0" aria-hidden="true" focusable="false"><path d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z" /></svg> YouTube </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="youtube search youtube"> <a href="/youtube" title="youtube" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >YouTube Search</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="youtube video details youtube_video"> <a href="/youtube-video" title="youtube_video" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >YouTube Video Details</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="youtube channel youtube_channel"> <a href="/youtube-channel" title="youtube_channel" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >YouTube Channel</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="youtube channel videos youtube_channel_videos"> <a href="/youtube-channel-videos-api" title="youtube_channel_videos" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >YouTube Channel Videos</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="youtube comments youtube_comments"> <a href="/youtube-comments" title="youtube_comments" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >YouTube Comments</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="youtube transcripts youtube_transcripts"> <a href="/youtube-transcripts" title="youtube_transcripts" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >YouTube Transcripts</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="youtube trends youtube_trends"> <a href="/youtube-trends" title="youtube_trends" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >YouTube Trends</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/bing" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <span class="grid size-4 shrink-0 place-items-center rounded-sm bg-surface-sunk text-xs font-medium leading-none tracking-tight text-ink-muted" aria-hidden="true">B</span> Bing </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="bing search bing"> <a href="/bing" title="bing" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Bing Search</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="bing images bing_images"> <a href="/bing-images-api" title="bing_images" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Bing Images</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="bing news bing_news"> <a href="/bing-news" title="bing_news" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Bing News</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="bing videos bing_videos"> <a href="/bing-videos-api" title="bing_videos" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Bing Videos</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="bing shopping bing_shopping"> <a href="/bing-shopping-api" title="bing_shopping" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Bing Shopping</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="bing copilot bing_copilot"> <a href="/bing-copilot-api" title="bing_copilot" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Bing Copilot</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="bing product bing_product"> <a href="/bing-product-api" title="bing_product" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Bing Product</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/amazon" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <span class="grid size-4 shrink-0 place-items-center rounded-sm bg-surface-sunk text-xs font-medium leading-none tracking-tight text-ink-muted" aria-hidden="true">A</span> Amazon </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="amazon search amazon_search"> <a href="/amazon" title="amazon_search" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Amazon Search</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="amazon product amazon_product"> <a href="/amazon-product" title="amazon_product" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Amazon Product</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="amazon categories amazon_categories"> <a href="/amazon-categories-api" title="amazon_categories" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Amazon Categories</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="amazon offers amazon_offers"> <a href="/amazon-offers-api" title="amazon_offers" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Amazon Offers</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="amazon bestsellers amazon_bestsellers"> <a href="/amazon-bestsellers-api" title="amazon_bestsellers" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Amazon Bestsellers</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/walmart-search-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <span class="grid size-4 shrink-0 place-items-center rounded-sm bg-surface-sunk text-xs font-medium leading-none tracking-tight text-ink-muted" aria-hidden="true">W</span> Walmart </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="walmart search walmart_search"> <a href="/walmart-search-api" title="walmart_search" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Walmart Search</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="walmart product walmart_product"> <a href="/walmart-product-api" title="walmart_product" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Walmart Product</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="walmart reviews walmart_reviews"> <a href="/walmart-reviews-api" title="walmart_reviews" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Walmart Reviews</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/ebay-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-4 shrink-0" aria-hidden="true" focusable="false"><path d="M6.056 12.132v-4.92h1.2v3.026c.59-.703 1.402-.906 2.202-.906 1.34 0 2.828.904 2.828 2.855 0 .233-.015.457-.06.668.24-.953 1.274-1.305 2.896-1.344.51-.018 1.095-.018 1.56-.018v-.135c0-.885-.556-1.244-1.53-1.244-.72 0-1.245.3-1.305.81h-1.275c.136-1.29 1.5-1.62 2.686-1.62 1.064 0 1.995.27 2.415 1.02l-.436-.84h1.41l2.055 4.125 2.055-4.126H24l-3.72 7.305h-1.346l1.07-2.04-2.33-4.38c.13.255.2.555.2.93v2.46c0 .346.01.69.04 1.005H16.8a6.543 6.543 0 01-.046-.765c-.603.734-1.32.96-2.32.96-1.48 0-2.272-.78-2.272-1.695 0-.15.015-.284.037-.405-.3 1.246-1.36 2.086-2.767 2.086-.87 0-1.694-.315-2.2-.93 0 .24-.015.494-.04.734h-1.18c.02-.39.04-.855.04-1.245v-1.05h-4.83c.065 1.095.818 1.74 1.853 1.74.718 0 1.355-.3 1.568-.93h1.24c-.24 1.29-1.61 1.725-2.79 1.725C.95 15.009 0 13.822 0 12.232c0-1.754.982-2.91 3.116-2.91 1.688 0 2.93.886 2.94 2.806v.005zm9.137.183c-1.095.034-1.77.233-1.77.95 0 .465.36.97 1.305.97 1.26 0 1.935-.69 1.935-1.814v-.13c-.45 0-.99.006-1.484.022h.012zm-6.06 1.875c1.11 0 1.876-.806 1.876-2.02s-.768-2.02-1.893-2.02c-1.11 0-1.89.806-1.89 2.02s.765 2.02 1.875 2.02h.03zm-4.35-2.514c-.044-1.125-.854-1.546-1.725-1.546-.944 0-1.694.474-1.815 1.546z" /></svg> eBay </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="ebay search ebay_search"> <a href="/ebay-api" title="ebay_search" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >eBay Search</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="ebay product ebay_product"> <a href="/ebay-product-api" title="ebay_product" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >eBay Product</a> </li> </ul> </details> </li> </ul> </section> <section class="mt-6" data-tree-filter-target="band"> <h3 class="px-2 pb-1.5 text-xs font-medium uppercase tracking-wide text-ink-faint">All platforms</h3> <ul class="space-y-1"> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/airbnb-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <span class="grid size-4 shrink-0 place-items-center rounded-sm bg-surface-sunk text-xs font-medium leading-none tracking-tight text-ink-muted" aria-hidden="true">Ai</span> Airbnb </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="airbnb airbnb"> <a href="/airbnb-api" title="airbnb" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Airbnb</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="airbnb property airbnb_property"> <a href="/airbnb-property-api" title="airbnb_property" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Airbnb Property</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="airbnb property reviews airbnb_property_reviews"> <a href="/airbnb-property-reviews-api" title="airbnb_property_reviews" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Airbnb Property Reviews</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="airbnb property availability calendar airbnb_property_availability_calendar"> <a href="/airbnb-property-availability-calendar-api" title="airbnb_property_availability_calendar" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Airbnb Property Availability Calendar</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="airbnb experiences airbnb_experiences"> <a href="/airbnb-experiences-api" title="airbnb_experiences" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Airbnb Experiences</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="airbnb experience details airbnb_experience_details"> <a href="/airbnb-experience-details-api" title="airbnb_experience_details" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Airbnb Experience Details</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/apple-app-store" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-4 shrink-0" aria-hidden="true" focusable="false"><path d="M8.8086 14.9194l6.1107-11.0368c.0837-.1513.1682-.302.2437-.4584.0685-.142.1267-.2854.1646-.4403.0803-.3259.0588-.6656-.066-.9767-.1238-.3095-.3417-.5678-.6201-.7355a1.4175 1.4175 0 0 0-.921-.1924c-.3207.043-.6135.1935-.8443.4288-.1094.1118-.1996.2361-.2832.369-.092.1463-.175.2979-.259.4492l-.3864.6979-.3865-.6979c-.0837-.1515-.1667-.303-.2587-.4492-.0837-.1329-.1739-.2572-.2835-.369-.2305-.2353-.5233-.3857-.844-.429a1.4181 1.4181 0 0 0-.921.1926c-.2784.1677-.4964.426-.6203.7355-.1246.311-.1461.6508-.066.9767.038.155.0962.2984.1648.4403.0753.1564.1598.307.2437.4584l1.248 2.2543-4.8625 8.7825H2.0295c-.1676 0-.3351-.0007-.5026.0092-.1522.009-.3004.0284-.448.0714-.3108.0906-.5822.2798-.7783.548-.195.2665-.3006.5929-.3006.9279 0 .3352.1057.6612.3006.9277.196.2683.4675.4575.7782.548.1477.043.296.0623.4481.0715.1675.01.335.009.5026.009h13.0974c.0171-.0357.059-.1294.1-.2697.415-1.4151-.6156-2.843-2.0347-2.843zM3.113 18.5418l-.7922 1.5008c-.0818.1553-.1644.31-.2384.4705-.067.1458-.124.293-.1611.452-.0785.3346-.0576.6834.0645 1.0029.1212.3175.3346.583.607.7549.2727.172.5891.2416.9013.1975.3139-.044.6005-.1986.8263-.4402.1072-.1148.1954-.2424.2772-.3787.0902-.1503.1714-.3059.2535-.4612L6 19.4636c-.0896-.149-.9473-1.4704-2.887-.9218m20.5861-3.0056a1.4707 1.4707 0 0 0-.779-.5407c-.1476-.0425-.2961-.0616-.4483-.0705-.1678-.0099-.3352-.0091-.503-.0091H18.648l-4.3891-7.817c-.6655.7005-.9632 1.485-1.0773 2.1976-.1655 1.0333.0367 2.0934.546 3.0004l5.2741 9.3933c.084.1494.167.299.2591.4435.0837.131.1739.2537.2836.364.231.2323.5238.3809.8449.4232.3192.0424.643-.0244.9217-.1899.2784-.1653.4968-.4204.621-.7257.1246-.3072.146-.6425.0658-.9641-.0381-.1529-.0962-.2945-.165-.4346-.0753-.1543-.1598-.303-.2438-.4524l-1.216-2.1662h1.596c.1677 0 .3351.0009.5029-.009.1522-.009.3007-.028.4483-.0705a1.4707 1.4707 0 0 0 .779-.5407A1.5386 1.5386 0 0 0 24 16.452a1.539 1.539 0 0 0-.3009-.9158Z" /></svg> Apple App Store </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="apple app store search apple_app_store"> <a href="/apple-app-store" title="apple_app_store" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Apple App Store Search</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="apple app store details apple_product"> <a href="/apple-product-api" title="apple_product" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Apple App Store Details</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="apple app store reviews apple_product_reviews"> <a href="/apple-app-store-reviews-api" title="apple_product_reviews" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Apple App Store Reviews</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="apple app store top charts apple_app_store_top_charts"> <a href="/apple-app-store-top-charts-api" title="apple_app_store_top_charts" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Apple App Store Top Charts</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="apple app store top grossing apps apple_app_store_top_grossing"> <a href="/apple-app-store-top-grossing-api" title="apple_app_store_top_grossing" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Apple App Store Top Grossing Apps</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/apple-maps-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <span class="grid size-4 shrink-0 place-items-center rounded-sm bg-surface-sunk text-xs font-medium leading-none tracking-tight text-ink-muted" aria-hidden="true">AM</span> Apple Maps </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="apple maps apple_maps"> <a href="/apple-maps-api" title="apple_maps" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Apple Maps</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="apple maps places apple_maps_places"> <a href="/apple-maps-places-api" title="apple_maps_places" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Apple Maps Places</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="apple maps guides apple_maps_guides"> <a href="/apple-maps-guides-api" title="apple_maps_guides" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Apple Maps Guides</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/baidu" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-4 shrink-0" aria-hidden="true" focusable="false"><path d="M9.154 0C7.71 0 6.54 1.658 6.54 3.707c0 2.051 1.171 3.71 2.615 3.71 1.446 0 2.614-1.659 2.614-3.71C11.768 1.658 10.6 0 9.154 0zm7.025.594C14.86.58 13.347 2.589 13.2 3.927c-.187 1.745.25 3.487 2.179 3.735 1.933.25 3.175-1.806 3.422-3.364.252-1.555-.995-3.364-2.362-3.674a1.218 1.218 0 0 0-.261-.03zM3.582 5.535a2.811 2.811 0 0 0-.156.008c-2.118.19-2.428 3.24-2.428 3.24-.287 1.41.686 4.425 3.297 3.864 2.617-.561 2.262-3.68 2.183-4.362-.125-1.018-1.292-2.773-2.896-2.75zm16.534 1.753c-2.308 0-2.617 2.119-2.617 3.616 0 1.43.121 3.425 2.988 3.362 2.867-.063 2.553-3.238 2.553-3.988 0-.745-.62-2.99-2.924-2.99zm-8.264 2.478c-1.424.014-2.708.925-3.323 1.947-1.118 1.868-2.863 3.05-3.112 3.363-.25.309-3.61 2.116-2.864 5.42.746 3.301 3.365 3.237 3.365 3.237s1.93.19 4.171-.31c2.24-.495 4.17.123 4.17.123s5.233 1.748 6.665-1.616c1.43-3.364-.808-5.109-.808-5.109s-2.99-2.306-4.736-4.798c-1.072-1.665-2.348-2.268-3.528-2.257zm-2.234 3.84l1.542.024v8.197H7.758c-1.47-.291-2.055-1.292-2.13-1.462-.072-.173-.488-.976-.268-2.343.635-2.049 2.447-2.196 2.447-2.196h1.81zm3.964 2.39v3.881c.096.413.612.488.612.488h1.614v-4.343h1.689v5.782h-3.915c-1.517-.39-1.59-1.465-1.59-1.465v-4.317zm-5.458 1.147c-.66.197-.978.708-1.05.928-.076.22-.247.78-.1 1.269.294 1.095 1.248 1.144 1.248 1.144h1.37v-3.34z" /></svg> Baidu </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="baidu search baidu"> <a href="/baidu" title="baidu" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Baidu Search</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/bestbuy-search-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <span class="grid size-4 shrink-0 place-items-center rounded-sm bg-surface-sunk text-xs font-medium leading-none tracking-tight text-ink-muted" aria-hidden="true">BB</span> Best Buy </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="bestbuy search bestbuy_search"> <a href="/bestbuy-search-api" title="bestbuy_search" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >BestBuy Search</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="bestbuy product bestbuy_product"> <a href="/bestbuy-product-api" title="bestbuy_product" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >BestBuy Product</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/chatgpt-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <span class="grid size-4 shrink-0 place-items-center rounded-sm bg-surface-sunk text-xs font-medium leading-none tracking-tight text-ink-muted" aria-hidden="true">CG</span> ChatGPT </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="chatgpt chatgpt"> <a href="/chatgpt-api" title="chatgpt" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >ChatGPT</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/duckduckgo-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-4 shrink-0" aria-hidden="true" focusable="false"><path d="M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0zm0 .984C18.083.984 23.016 5.916 23.016 12S18.084 23.016 12 23.016.984 18.084.984 12C.984 5.917 5.916.984 12 .984zm0 .938C6.434 1.922 1.922 6.434 1.922 12c0 4.437 2.867 8.205 6.85 9.55-.237-.82-.776-2.753-1.6-6.052-1.184-4.741-2.064-8.606 2.379-9.813.047-.011.064-.064.03-.093-.514-.467-1.382-.548-2.233-.38a.06.06 0 0 1-.07-.058c0-.011 0-.023.011-.035.205-.286.572-.507.822-.64a1.843 1.843 0 0 0-.607-.335c-.059-.022-.059-.12-.006-.144.006-.006.012-.012.024-.012 1.749-.233 3.586.292 4.49 1.448.011.011.023.017.035.023 2.968.635 3.509 4.837 3.328 5.998a9.607 9.607 0 0 0 2.346-.576c.746-.286 1.008-.222 1.101-.053.1.193-.018.513-.28.81-.496.567-1.393 1.01-2.974 1.137-.546.044-1.029.024-1.445.006-.789-.035-1.339-.059-1.633.39-.192.298-.041.998 1.487 1.22 1.09.157 2.078.047 2.798-.034.643-.07 1.073-.118 1.172.069.21.402-.996 1.207-3.066 1.224-.158 0-.315-.006-.467-.011-1.283-.065-2.227-.414-2.816-.735a.094.094 0 0 1-.035-.017c-.105-.059-.31.045-.188.267.07.134.444.478 1.004.776-.058.466.087 1.184.338 2l.088-.016c.041-.009.087-.019.134-.025.507-.082.775.012.926.175.717-.536 1.913-1.294 2.03-1.154.583.694.66 2.332.53 2.99-.004.012-.017.024-.04.035-.274.117-1.783-.296-1.783-.511-.059-1.075-.26-1.173-.493-1.225h-.156c.006.006.012.018.018.03l.052.12c.093.257.24 1.063.13 1.26-.112.199-.835.297-1.284.303-.443.006-.543-.158-.637-.408-.07-.204-.103-.675-.103-.95a.857.857 0 0 1 .012-.216c-.134.058-.333.193-.397.281-.017.262-.017.682.123 1.149.07.221-1.518 1.164-1.74.99-.227-.181-.634-1.952-.459-2.67-.187.017-.338.075-.42.191-.367.508.093 2.933.582 3.248.257.169 1.54-.553 2.176-1.095.105.145.305.158.553.158.326-.012.782-.06 1.103-.158.192.45.423.972.613 1.388 4.47-1.032 7.803-5.037 7.803-9.82 0-5.566-4.512-10.078-10.078-10.078zm1.791 5.646c-.42 0-.678.146-.795.332-.023.047.047.094.094.07.14-.075.357-.161.701-.156.328.006.516.09.67.159l.023.01c.041.017.088-.03.059-.065-.134-.18-.332-.35-.752-.35zm-5.078.198a1.24 1.24 0 0 0-.522.082c-.454.169-.67.526-.67.76 0 .051.112.057.141.011.081-.123.21-.31.617-.478.408-.17.73-.146.951-.094.047.012.083-.041.041-.07a.989.989 0 0 0-.558-.211zm5.434 1.423a.651.651 0 0 0-.655.647.652.652 0 0 0 1.307 0 .646.646 0 0 0-.652-.647zm.283.262h.008a.17.17 0 0 1 .17.17c0 .093-.077.17-.17.17a.17.17 0 0 1-.17-.17c0-.09.072-.165.162-.17zm-5.358.076a.752.752 0 0 0-.758.758c0 .42.338.758.758.758s.758-.337.758-.758a.756.756 0 0 0-.758-.758zm.328.303h.01c.112 0 .2.089.2.2 0 .11-.088.197-.2.197a.195.195 0 0 1-.197-.198c0-.107.082-.194.187-.199z" /></svg> DuckDuckGo </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="duckduckgo search duckduckgo"> <a href="/duckduckgo-api" title="duckduckgo" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >DuckDuckGo Search</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="duckduckgo images duckduckgo_images"> <a href="/duckduckgo-images-api" title="duckduckgo_images" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >DuckDuckGo Images</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="duckduckgo videos duckduckgo_videos"> <a href="/duckduckgo-videos-api" title="duckduckgo_videos" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >DuckDuckGo Videos</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="duckduckgo light duckduckgo_light"> <a href="/duckduckgo-light-api" title="duckduckgo_light" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >DuckDuckGo Light</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/facebook-business-page-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-4 shrink-0" aria-hidden="true" focusable="false"><path d="M6.915 4.03c-1.968 0-3.683 1.28-4.871 3.113C.704 9.208 0 11.883 0 14.449c0 .706.07 1.369.21 1.973a6.624 6.624 0 0 0 .265.86 5.297 5.297 0 0 0 .371.761c.696 1.159 1.818 1.927 3.593 1.927 1.497 0 2.633-.671 3.965-2.444.76-1.012 1.144-1.626 2.663-4.32l.756-1.339.186-.325c.061.1.121.196.183.3l2.152 3.595c.724 1.21 1.665 2.556 2.47 3.314 1.046.987 1.992 1.22 3.06 1.22 1.075 0 1.876-.355 2.455-.843a3.743 3.743 0 0 0 .81-.973c.542-.939.861-2.127.861-3.745 0-2.72-.681-5.357-2.084-7.45-1.282-1.912-2.957-2.93-4.716-2.93-1.047 0-2.088.467-3.053 1.308-.652.57-1.257 1.29-1.82 2.05-.69-.875-1.335-1.547-1.958-2.056-1.182-.966-2.315-1.303-3.454-1.303zm10.16 2.053c1.147 0 2.188.758 2.992 1.999 1.132 1.748 1.647 4.195 1.647 6.4 0 1.548-.368 2.9-1.839 2.9-.58 0-1.027-.23-1.664-1.004-.496-.601-1.343-1.878-2.832-4.358l-.617-1.028a44.908 44.908 0 0 0-1.255-1.98c.07-.109.141-.224.211-.327 1.12-1.667 2.118-2.602 3.358-2.602zm-10.201.553c1.265 0 2.058.791 2.675 1.446.307.327.737.871 1.234 1.579l-1.02 1.566c-.757 1.163-1.882 3.017-2.837 4.338-1.191 1.649-1.81 1.817-2.486 1.817-.524 0-1.038-.237-1.383-.794-.263-.426-.464-1.13-.464-2.046 0-2.221.63-4.535 1.66-6.088.454-.687.964-1.226 1.533-1.533a2.264 2.264 0 0 1 1.088-.285z" /></svg> Facebook </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="facebook business page facebook_business_page"> <a href="/facebook-business-page-api" title="facebook_business_page" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Facebook Business Page</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="facebook business page reviews facebook_business_page_reviews"> <a href="/facebook-business-page-reviews-api" title="facebook_business_page_reviews" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Facebook Business Page Reviews</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/gemini-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-4 shrink-0" aria-hidden="true" focusable="false"><path d="M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z" /></svg> Gemini </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="gemini gemini"> <a href="/gemini-api" title="gemini" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Gemini</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/google-play" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-4 shrink-0" aria-hidden="true" focusable="false"><path d="M22.018 13.298l-3.919 2.218-3.515-3.493 3.543-3.521 3.891 2.202a1.49 1.49 0 0 1 0 2.594zM1.337.924a1.486 1.486 0 0 0-.112.568v21.017c0 .217.045.419.124.6l11.155-11.087L1.337.924zm12.207 10.065l3.258-3.238L3.45.195a1.466 1.466 0 0 0-.946-.179l11.04 10.973zm0 2.067l-11 10.933c.298.036.612-.016.906-.183l13.324-7.54-3.23-3.21z" /></svg> Google Play </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="google play store google_play_store"> <a href="/google-play" title="google_play_store" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Play Store</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google play product google_play_product"> <a href="/google-play-product" title="google_play_product" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Play Product</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/google-flights-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-4 shrink-0" aria-hidden="true" focusable="false"><path d="M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z" /></svg> Google Travel </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="google flights google_flights"> <a href="/google-flights-api" title="google_flights" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Flights</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google flights calendar google_flights_calendar"> <a href="/google-flights-calendar-api" title="google_flights_calendar" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Flights Calendar</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google hotels google_hotels"> <a href="/google-hotels-api" title="google_hotels" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Hotels</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google hotels property google_hotels_property"> <a href="/google-hotels-property-api" title="google_hotels_property" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Hotels Property</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google hotels autocomplete google_hotels_autocomplete"> <a href="/google-hotels-autocomplete-api" title="google_hotels_autocomplete" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Hotels Autocomplete</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google flights location search google_flights_location_search"> <a href="/google-flights-location-search-api" title="google_flights_location_search" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Flights Location Search</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google travel explore google_travel_explore"> <a href="/google-travel-explore-api" title="google_travel_explore" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Travel Explore</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="google travel explore destination google_travel_explore_destination"> <a href="/google-travel-explore-destination-api" title="google_travel_explore_destination" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Google Travel Explore Destination</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/instagram-profile-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-4 shrink-0" aria-hidden="true" focusable="false"><path d="M6.915 4.03c-1.968 0-3.683 1.28-4.871 3.113C.704 9.208 0 11.883 0 14.449c0 .706.07 1.369.21 1.973a6.624 6.624 0 0 0 .265.86 5.297 5.297 0 0 0 .371.761c.696 1.159 1.818 1.927 3.593 1.927 1.497 0 2.633-.671 3.965-2.444.76-1.012 1.144-1.626 2.663-4.32l.756-1.339.186-.325c.061.1.121.196.183.3l2.152 3.595c.724 1.21 1.665 2.556 2.47 3.314 1.046.987 1.992 1.22 3.06 1.22 1.075 0 1.876-.355 2.455-.843a3.743 3.743 0 0 0 .81-.973c.542-.939.861-2.127.861-3.745 0-2.72-.681-5.357-2.084-7.45-1.282-1.912-2.957-2.93-4.716-2.93-1.047 0-2.088.467-3.053 1.308-.652.57-1.257 1.29-1.82 2.05-.69-.875-1.335-1.547-1.958-2.056-1.182-.966-2.315-1.303-3.454-1.303zm10.16 2.053c1.147 0 2.188.758 2.992 1.999 1.132 1.748 1.647 4.195 1.647 6.4 0 1.548-.368 2.9-1.839 2.9-.58 0-1.027-.23-1.664-1.004-.496-.601-1.343-1.878-2.832-4.358l-.617-1.028a44.908 44.908 0 0 0-1.255-1.98c.07-.109.141-.224.211-.327 1.12-1.667 2.118-2.602 3.358-2.602zm-10.201.553c1.265 0 2.058.791 2.675 1.446.307.327.737.871 1.234 1.579l-1.02 1.566c-.757 1.163-1.882 3.017-2.837 4.338-1.191 1.649-1.81 1.817-2.486 1.817-.524 0-1.038-.237-1.383-.794-.263-.426-.464-1.13-.464-2.046 0-2.221.63-4.535 1.66-6.088.454-.687.964-1.226 1.533-1.533a2.264 2.264 0 0 1 1.088-.285z" /></svg> Instagram </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="instagram profile instagram_profile"> <a href="/instagram-profile-api" title="instagram_profile" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Instagram Profile</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/linkedin-ad-library-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <span class="grid size-4 shrink-0 place-items-center rounded-sm bg-surface-sunk text-xs font-medium leading-none tracking-tight text-ink-muted" aria-hidden="true">Li</span> LinkedIn Ad Library </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="linkedin ad library linkedin_ad_library"> <a href="/linkedin-ad-library-api" title="linkedin_ad_library" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >LinkedIn Ad Library</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/meta-ad-library-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-4 shrink-0" aria-hidden="true" focusable="false"><path d="M6.915 4.03c-1.968 0-3.683 1.28-4.871 3.113C.704 9.208 0 11.883 0 14.449c0 .706.07 1.369.21 1.973a6.624 6.624 0 0 0 .265.86 5.297 5.297 0 0 0 .371.761c.696 1.159 1.818 1.927 3.593 1.927 1.497 0 2.633-.671 3.965-2.444.76-1.012 1.144-1.626 2.663-4.32l.756-1.339.186-.325c.061.1.121.196.183.3l2.152 3.595c.724 1.21 1.665 2.556 2.47 3.314 1.046.987 1.992 1.22 3.06 1.22 1.075 0 1.876-.355 2.455-.843a3.743 3.743 0 0 0 .81-.973c.542-.939.861-2.127.861-3.745 0-2.72-.681-5.357-2.084-7.45-1.282-1.912-2.957-2.93-4.716-2.93-1.047 0-2.088.467-3.053 1.308-.652.57-1.257 1.29-1.82 2.05-.69-.875-1.335-1.547-1.958-2.056-1.182-.966-2.315-1.303-3.454-1.303zm10.16 2.053c1.147 0 2.188.758 2.992 1.999 1.132 1.748 1.647 4.195 1.647 6.4 0 1.548-.368 2.9-1.839 2.9-.58 0-1.027-.23-1.664-1.004-.496-.601-1.343-1.878-2.832-4.358l-.617-1.028a44.908 44.908 0 0 0-1.255-1.98c.07-.109.141-.224.211-.327 1.12-1.667 2.118-2.602 3.358-2.602zm-10.201.553c1.265 0 2.058.791 2.675 1.446.307.327.737.871 1.234 1.579l-1.02 1.566c-.757 1.163-1.882 3.017-2.837 4.338-1.191 1.649-1.81 1.817-2.486 1.817-.524 0-1.038-.237-1.383-.794-.263-.426-.464-1.13-.464-2.046 0-2.221.63-4.535 1.66-6.088.454-.687.964-1.226 1.533-1.533a2.264 2.264 0 0 1 1.088-.285z" /></svg> Meta Ad Library </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="meta ad library meta_ad_library"> <a href="/meta-ad-library-api" title="meta_ad_library" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Meta Ad Library</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="meta ad library page search meta_ad_library_page_search"> <a href="/meta-ad-library-page-search-api" title="meta_ad_library_page_search" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Meta Ad Library Page Search</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="meta ad library page info meta_ad_library_page_info"> <a href="/meta-ad-library-page-info-api" title="meta_ad_library_page_info" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Meta Ad Library Page Info</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="meta ad library ad details meta_ad_library_ad_details"> <a href="/meta-ad-library-ad-details-api" title="meta_ad_library_ad_details" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Meta Ad Library Ad Details</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/naver-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-4 shrink-0" aria-hidden="true" focusable="false"><path d="M16.273 12.845 7.376 0H0v24h7.726V11.156L16.624 24H24V0h-7.727v12.845Z" /></svg> Naver </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="naver search naver"> <a href="/naver-api" title="naver" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Naver Search</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/perplexity-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <span class="grid size-4 shrink-0 place-items-center rounded-sm bg-surface-sunk text-xs font-medium leading-none tracking-tight text-ink-muted" aria-hidden="true">Px</span> Perplexity </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="perplexity perplexity"> <a href="/perplexity-api" title="perplexity" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Perplexity</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/reddit-ad-library-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-4 shrink-0" aria-hidden="true" focusable="false"><path d="M12 0C5.373 0 0 5.373 0 12c0 3.314 1.343 6.314 3.515 8.485l-2.286 2.286C.775 23.225 1.097 24 1.738 24H12c6.627 0 12-5.373 12-12S18.627 0 12 0Zm4.388 3.199c1.104 0 1.999.895 1.999 1.999 0 1.105-.895 2-1.999 2-.946 0-1.739-.657-1.947-1.539v.002c-1.147.162-2.032 1.15-2.032 2.341v.007c1.776.067 3.4.567 4.686 1.363.473-.363 1.064-.58 1.707-.58 1.547 0 2.802 1.254 2.802 2.802 0 1.117-.655 2.081-1.601 2.531-.088 3.256-3.637 5.876-7.997 5.876-4.361 0-7.905-2.617-7.998-5.87-.954-.447-1.614-1.415-1.614-2.538 0-1.548 1.255-2.802 2.803-2.802.645 0 1.239.218 1.712.585 1.275-.79 2.881-1.291 4.64-1.365v-.01c0-1.663 1.263-3.034 2.88-3.207.188-.911.993-1.595 1.959-1.595Zm-8.085 8.376c-.784 0-1.459.78-1.506 1.797-.047 1.016.64 1.429 1.426 1.429.786 0 1.371-.369 1.418-1.385.047-1.017-.553-1.841-1.338-1.841Zm7.406 0c-.786 0-1.385.824-1.338 1.841.047 1.017.634 1.385 1.418 1.385.785 0 1.473-.413 1.426-1.429-.046-1.017-.721-1.797-1.506-1.797Zm-3.703 4.013c-.974 0-1.907.048-2.77.135-.147.015-.241.168-.183.305.483 1.154 1.622 1.964 2.953 1.964 1.33 0 2.47-.81 2.953-1.964.057-.137-.037-.29-.184-.305-.863-.087-1.795-.135-2.769-.135Z" /></svg> Reddit Ad Library </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="reddit ad library reddit_ad_library"> <a href="/reddit-ad-library-api" title="reddit_ad_library" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Reddit Ad Library</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/shein-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <span class="grid size-4 shrink-0 place-items-center rounded-sm bg-surface-sunk text-xs font-medium leading-none tracking-tight text-ink-muted" aria-hidden="true">Sh</span> Shein </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="shein search shein_search"> <a href="/shein-api" title="shein_search" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Shein Search</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="shein product shein_product"> <a href="/shein-product-api" title="shein_product" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Shein Product</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/tiktok-ads-library-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-4 shrink-0" aria-hidden="true" focusable="false"><path d="M12.525.02c1.31-.02 2.61-.01 3.91-.02.08 1.53.63 3.09 1.75 4.17 1.12 1.11 2.7 1.62 4.24 1.79v4.03c-1.44-.05-2.89-.35-4.2-.97-.57-.26-1.1-.59-1.62-.93-.01 2.92.01 5.84-.02 8.75-.08 1.4-.54 2.79-1.35 3.94-1.31 1.92-3.58 3.17-5.91 3.21-1.43.08-2.86-.31-4.08-1.03-2.02-1.19-3.44-3.37-3.65-5.71-.02-.5-.03-1-.01-1.49.18-1.9 1.12-3.72 2.58-4.96 1.66-1.44 3.98-2.13 6.15-1.72.02 1.48-.04 2.96-.04 4.44-.99-.32-2.15-.23-3.02.37-.63.41-1.11 1.04-1.36 1.75-.21.51-.15 1.07-.14 1.61.24 1.64 1.82 3.02 3.5 2.87 1.12-.01 2.19-.66 2.77-1.61.19-.33.4-.67.41-1.06.1-1.79.06-3.57.07-5.36.01-4.03-.01-8.05.02-12.07z" /></svg> TikTok </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="tiktok ads library tiktok_ads_library"> <a href="/tiktok-ads-library-api" title="tiktok_ads_library" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >TikTok Ads Library</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="tiktok ads library advertiser search tiktok_ads_library_advertiser_search"> <a href="/tiktok-ads-library-advertiser-search-api" title="tiktok_ads_library_advertiser_search" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >TikTok Ads Library Advertiser Search</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="tiktok ads library ad details tiktok_ads_library_ad_details"> <a href="/tiktok-ads-library-ad-details-api" title="tiktok_ads_library_ad_details" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >TikTok Ads Library Ad Details</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="tiktok profile tiktok_profile"> <a href="/tiktok-profile-api" title="tiktok_profile" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >TikTok Profile</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="tiktok profile videos tiktok_profile_videos"> <a href="/tiktok-profile-videos-api" title="tiktok_profile_videos" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >TikTok Profile Videos</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/tripadvisor-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <span class="grid size-4 shrink-0 place-items-center rounded-sm bg-surface-sunk text-xs font-medium leading-none tracking-tight text-ink-muted" aria-hidden="true">Tr</span> Tripadvisor </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="tripadvisor tripadvisor"> <a href="/tripadvisor-api" title="tripadvisor" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Tripadvisor</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="tripadvisor place tripadvisor_place"> <a href="/tripadvisor-place-api" title="tripadvisor_place" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Tripadvisor Place</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="tripadvisor reviews tripadvisor_reviews"> <a href="/tripadvisor-reviews-api" title="tripadvisor_reviews" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Tripadvisor Reviews</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/yahoo-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <span class="grid size-4 shrink-0 place-items-center rounded-sm bg-surface-sunk text-xs font-medium leading-none tracking-tight text-ink-muted" aria-hidden="true">Y</span> Yahoo </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="yahoo search yahoo"> <a href="/yahoo-api" title="yahoo" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Yahoo Search</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/yandex-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <span class="grid size-4 shrink-0 place-items-center rounded-sm bg-surface-sunk text-xs font-medium leading-none tracking-tight text-ink-muted" aria-hidden="true">Ya</span> Yandex </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="yandex search yandex"> <a href="/yandex-api" title="yandex" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Yandex Search</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="yandex reverse image yandex_reverse_image"> <a href="/yandex-reverse-image-api" title="yandex_reverse_image" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Yandex Reverse Image</a> </li> </ul> </details> </li> <li data-tree-filter-target="group"> <details class="group" name="engine-tree" data-controller="group-disclosure" > <summary class="group flex cursor-pointer list-none items-center gap-2 rounded-md px-2 py-1.5 text-sm font-medium text-ink transition-colors hover:bg-surface-subtle [&::-webkit-details-marker]:hidden"> <a href="/zillow-api" class="flex min-w-0 flex-1 items-center gap-2" data-group-link data-action="click->group-disclosure#collapse"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-4 shrink-0" aria-hidden="true" focusable="false"><path d="M12.006 0L1.086 8.627v3.868c3.386-2.013 11.219-5.13 14.763-6.015.11-.024.16.005.227.078.372.427 1.586 1.899 1.916 2.301a.128.128 0 0 1-.03.195 43.607 43.607 0 0 0-6.67 6.527c-.03.037-.006.043.012.03 2.642-1.134 8.828-2.94 11.622-3.452V8.627zm-.48 11.177c-2.136.708-8.195 3.307-10.452 4.576V24h21.852v-7.936c-2.99.506-11.902 3.16-15.959 5.246a.183.183 0 0 1-.23-.036l-2.044-2.429c-.055-.061-.062-.098.011-.208 1.574-2.3 4.789-5.899 6.833-7.418.042-.03.031-.06-.012-.042Z" /></svg> Zillow </a> <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="ml-auto size-3.5 shrink-0 text-ink-faint transition-transform group-open:rotate-180" aria-hidden="true"> <path d="M6 9l6 6 6-6" /> </svg> </summary> <ul class="ml-3.5"> <li data-tree-filter-target="row" data-tree-filter-text="zillow search zillow"> <a href="/zillow-api" title="zillow" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Zillow Search</a> </li> <li data-tree-filter-target="row" data-tree-filter-text="zillow property zillow_property"> <a href="/zillow-property-api" title="zillow_property" class="block border-l-2 py-1.5 pl-3 pr-2 text-sm transition-colors border-line text-ink-muted hover:bg-surface-subtle hover:text-ink" data-engine-row >Zillow Property</a> </li> </ul> </details> </li> </ul> </section></nav>1
render EngineTreeComponent.new(groups: self.class.groups(current: engine.presence || "google"))The docs sidebar: 31 services in two labelled bands — the popular ones the catalog leads with, then the alphabet — the current engine's service open and the rest collapsed, a filter on top. The rule down the left of the open group is the thing to look at — one continuous line that changes colour at the current row rather than a marker sitting beside it.
Google is the dense case, with 43 engines under it.