@apteva/integrations 0.15.10 → 0.15.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/dist/http-executor.d.ts.map +1 -1
  2. package/dist/http-executor.js +62 -8
  3. package/dist/http-executor.js.map +1 -1
  4. package/dist/mcp-generator.js +24 -0
  5. package/dist/mcp-generator.js.map +1 -1
  6. package/dist/types.d.ts +4 -0
  7. package/dist/types.d.ts.map +1 -1
  8. package/package.json +1 -1
  9. package/src/apps/anthropic-admin.json +183 -0
  10. package/src/apps/aws-ses.json +1 -1
  11. package/src/apps/braintree.json +53 -0
  12. package/src/apps/bunny-stream.json +50 -28
  13. package/src/apps/ccbill.json +142 -0
  14. package/src/apps/close.json +238 -301
  15. package/src/apps/craftcloud.json +251 -202
  16. package/src/apps/dataforseo.json +1700 -2
  17. package/src/apps/deepgram.json +288 -1
  18. package/src/apps/elevenlabs.json +9 -0
  19. package/src/apps/gladia.json +158 -0
  20. package/src/apps/gmail.json +2 -5
  21. package/src/apps/gumroad.json +569 -0
  22. package/src/apps/imaterialise.json +171 -262
  23. package/src/apps/jlcpcb.json +43 -0
  24. package/src/apps/jungle-scout.json +166 -0
  25. package/src/apps/ko-fi.json +34 -0
  26. package/src/apps/lemon-squeezy.json +270 -0
  27. package/src/apps/mollie.json +219 -0
  28. package/src/apps/paddle.json +199 -9
  29. package/src/apps/payhip.json +162 -0
  30. package/src/apps/paystack.json +207 -0
  31. package/src/apps/pipedrive.json +221 -212
  32. package/src/apps/razorpay.json +207 -0
  33. package/src/apps/ringover.json +69 -0
  34. package/src/apps/runpod.json +727 -0
  35. package/src/apps/salesforce-crm.json +192 -233
  36. package/src/apps/sculpteo.json +98 -180
  37. package/src/apps/segpay.json +215 -0
  38. package/src/apps/shapeways.json +114 -136
  39. package/src/apps/slant3d.json +260 -168
  40. package/src/apps/soniox.json +194 -0
  41. package/src/apps/speechmatics.json +167 -0
  42. package/src/apps/stripe.json +1 -0
  43. package/src/apps/surfer.json +511 -0
  44. package/src/apps/twitter-api.json +14 -1
  45. package/src/apps/verotel.json +124 -0
  46. package/src/apps/whop.json +364 -0
  47. package/src/apps/zendesk-sell.json +248 -0
  48. package/src/apps/zendesk.json +190 -259
@@ -170,7 +170,8 @@
170
170
  "required": [
171
171
  "keywords"
172
172
  ]
173
- }
173
+ },
174
+ "body_root_param": "tasks"
174
175
  },
175
176
  {
176
177
  "name": "keyword_difficulty",
@@ -266,7 +267,8 @@
266
267
  "required": [
267
268
  "keyword"
268
269
  ]
269
- }
270
+ },
271
+ "body_root_param": "tasks"
270
272
  },
271
273
  {
272
274
  "name": "serp_maps",
@@ -1273,6 +1275,1702 @@
1273
1275
  ]
1274
1276
  }
1275
1277
  },
1278
+ {
1279
+ "name": "youtube_locations",
1280
+ "description": "List supported YouTube SERP locations for DataForSEO YouTube endpoints.",
1281
+ "method": "GET",
1282
+ "path": "/serp/youtube/locations",
1283
+ "input_schema": {
1284
+ "type": "object",
1285
+ "properties": {}
1286
+ }
1287
+ },
1288
+ {
1289
+ "name": "youtube_languages",
1290
+ "description": "List supported YouTube SERP languages for DataForSEO YouTube endpoints.",
1291
+ "method": "GET",
1292
+ "path": "/serp/youtube/languages",
1293
+ "input_schema": {
1294
+ "type": "object",
1295
+ "properties": {}
1296
+ }
1297
+ },
1298
+ {
1299
+ "name": "youtube_organic_serp",
1300
+ "description": "Get live YouTube search results for a keyword, including ranked videos/channels and SERP metadata.",
1301
+ "method": "POST",
1302
+ "path": "/serp/youtube/organic/live/advanced",
1303
+ "body_root_param": "tasks",
1304
+ "input_schema": {
1305
+ "type": "object",
1306
+ "properties": {
1307
+ "keyword": {
1308
+ "type": "string",
1309
+ "description": "YouTube search query"
1310
+ },
1311
+ "location_code": {
1312
+ "type": "integer",
1313
+ "description": "Provider location code"
1314
+ },
1315
+ "location_name": {
1316
+ "type": "string",
1317
+ "description": "Provider location name"
1318
+ },
1319
+ "language_code": {
1320
+ "type": "string",
1321
+ "description": "Provider language code"
1322
+ },
1323
+ "language_name": {
1324
+ "type": "string",
1325
+ "description": "Provider language name"
1326
+ },
1327
+ "device": {
1328
+ "type": "string",
1329
+ "description": "Device type",
1330
+ "enum": [
1331
+ "desktop",
1332
+ "mobile"
1333
+ ],
1334
+ "default": "desktop"
1335
+ },
1336
+ "os": {
1337
+ "type": "string",
1338
+ "description": "Device operating system, such as windows, macos, android, or ios"
1339
+ },
1340
+ "depth": {
1341
+ "type": "integer",
1342
+ "description": "Number of results to return"
1343
+ }
1344
+ },
1345
+ "required": [
1346
+ "keyword"
1347
+ ]
1348
+ }
1349
+ },
1350
+ {
1351
+ "name": "youtube_video_info",
1352
+ "description": "Get live metadata for a YouTube video by video_id.",
1353
+ "method": "POST",
1354
+ "path": "/serp/youtube/video_info/live/advanced",
1355
+ "body_root_param": "tasks",
1356
+ "input_schema": {
1357
+ "type": "object",
1358
+ "properties": {
1359
+ "video_id": {
1360
+ "type": "string",
1361
+ "description": "YouTube video ID"
1362
+ },
1363
+ "location_code": {
1364
+ "type": "integer",
1365
+ "description": "Provider location code"
1366
+ },
1367
+ "location_name": {
1368
+ "type": "string",
1369
+ "description": "Provider location name"
1370
+ },
1371
+ "language_code": {
1372
+ "type": "string",
1373
+ "description": "Provider language code"
1374
+ },
1375
+ "language_name": {
1376
+ "type": "string",
1377
+ "description": "Provider language name"
1378
+ },
1379
+ "device": {
1380
+ "type": "string",
1381
+ "description": "Device type",
1382
+ "enum": [
1383
+ "desktop"
1384
+ ],
1385
+ "default": "desktop"
1386
+ },
1387
+ "os": {
1388
+ "type": "string",
1389
+ "description": "Desktop operating system, such as windows or macos"
1390
+ }
1391
+ },
1392
+ "required": [
1393
+ "video_id"
1394
+ ]
1395
+ }
1396
+ },
1397
+ {
1398
+ "name": "youtube_video_subtitles",
1399
+ "description": "Get live subtitles/transcript data for a YouTube video by video_id.",
1400
+ "method": "POST",
1401
+ "path": "/serp/youtube/video_subtitles/live/advanced",
1402
+ "body_root_param": "tasks",
1403
+ "input_schema": {
1404
+ "type": "object",
1405
+ "properties": {
1406
+ "video_id": {
1407
+ "type": "string",
1408
+ "description": "YouTube video ID"
1409
+ },
1410
+ "location_code": {
1411
+ "type": "integer",
1412
+ "description": "Provider location code"
1413
+ },
1414
+ "location_name": {
1415
+ "type": "string",
1416
+ "description": "Provider location name"
1417
+ },
1418
+ "language_code": {
1419
+ "type": "string",
1420
+ "description": "Provider language code"
1421
+ },
1422
+ "language_name": {
1423
+ "type": "string",
1424
+ "description": "Provider language name"
1425
+ },
1426
+ "device": {
1427
+ "type": "string",
1428
+ "description": "Device type",
1429
+ "enum": [
1430
+ "desktop",
1431
+ "mobile"
1432
+ ],
1433
+ "default": "desktop"
1434
+ },
1435
+ "os": {
1436
+ "type": "string",
1437
+ "description": "Device operating system, such as windows, macos, android, or ios"
1438
+ },
1439
+ "subtitles_language": {
1440
+ "type": "string",
1441
+ "description": "Original subtitles language code to retrieve"
1442
+ },
1443
+ "subtitles_translate_language": {
1444
+ "type": "string",
1445
+ "description": "Optional subtitles translation language code"
1446
+ }
1447
+ },
1448
+ "required": [
1449
+ "video_id"
1450
+ ]
1451
+ }
1452
+ },
1453
+ {
1454
+ "name": "youtube_video_comments",
1455
+ "description": "Get live YouTube video comments for a video by video_id.",
1456
+ "method": "POST",
1457
+ "path": "/serp/youtube/video_comments/live/advanced",
1458
+ "body_root_param": "tasks",
1459
+ "input_schema": {
1460
+ "type": "object",
1461
+ "properties": {
1462
+ "video_id": {
1463
+ "type": "string",
1464
+ "description": "YouTube video ID"
1465
+ },
1466
+ "location_code": {
1467
+ "type": "integer",
1468
+ "description": "Provider location code"
1469
+ },
1470
+ "location_name": {
1471
+ "type": "string",
1472
+ "description": "Provider location name"
1473
+ },
1474
+ "language_code": {
1475
+ "type": "string",
1476
+ "description": "Provider language code"
1477
+ },
1478
+ "language_name": {
1479
+ "type": "string",
1480
+ "description": "Provider language name"
1481
+ },
1482
+ "depth": {
1483
+ "type": "integer",
1484
+ "description": "Number of comments to return"
1485
+ },
1486
+ "sort_by": {
1487
+ "type": "string",
1488
+ "description": "Comment sort order, for example top or newest"
1489
+ },
1490
+ "device": {
1491
+ "type": "string",
1492
+ "description": "Device type",
1493
+ "enum": [
1494
+ "desktop",
1495
+ "mobile"
1496
+ ],
1497
+ "default": "desktop"
1498
+ },
1499
+ "os": {
1500
+ "type": "string",
1501
+ "description": "Device operating system, such as windows, macos, android, or ios"
1502
+ }
1503
+ },
1504
+ "required": [
1505
+ "video_id"
1506
+ ]
1507
+ }
1508
+ },
1509
+ {
1510
+ "name": "amazon_locations",
1511
+ "description": "List supported Amazon Merchant API locations.",
1512
+ "method": "GET",
1513
+ "path": "/merchant/amazon/locations",
1514
+ "input_schema": {
1515
+ "type": "object",
1516
+ "properties": {}
1517
+ }
1518
+ },
1519
+ {
1520
+ "name": "amazon_languages",
1521
+ "description": "List supported Amazon Merchant API languages.",
1522
+ "method": "GET",
1523
+ "path": "/merchant/amazon/languages",
1524
+ "input_schema": {
1525
+ "type": "object",
1526
+ "properties": {}
1527
+ }
1528
+ },
1529
+ {
1530
+ "name": "amazon_products_serp",
1531
+ "description": "Get live Amazon product search results for a keyword.",
1532
+ "method": "POST",
1533
+ "path": "/merchant/amazon/products/live/advanced",
1534
+ "body_root_param": "tasks",
1535
+ "input_schema": {
1536
+ "type": "object",
1537
+ "properties": {
1538
+ "keyword": {
1539
+ "type": "string",
1540
+ "description": "Amazon product search keyword"
1541
+ },
1542
+ "asin": {
1543
+ "type": "string",
1544
+ "description": "Optional ASIN for product context where supported"
1545
+ },
1546
+ "location_code": {
1547
+ "type": "integer",
1548
+ "description": "Provider location code"
1549
+ },
1550
+ "location_name": {
1551
+ "type": "string",
1552
+ "description": "Provider location name"
1553
+ },
1554
+ "language_code": {
1555
+ "type": "string",
1556
+ "description": "Provider language code"
1557
+ },
1558
+ "language_name": {
1559
+ "type": "string",
1560
+ "description": "Provider language name"
1561
+ },
1562
+ "se_domain": {
1563
+ "type": "string",
1564
+ "description": "Amazon search engine domain, e.g. amazon.com"
1565
+ },
1566
+ "depth": {
1567
+ "type": "integer",
1568
+ "description": "Number of product results"
1569
+ }
1570
+ },
1571
+ "required": [
1572
+ "keyword"
1573
+ ]
1574
+ }
1575
+ },
1576
+ {
1577
+ "name": "amazon_asin_info",
1578
+ "description": "Get live Amazon product details by ASIN.",
1579
+ "method": "POST",
1580
+ "path": "/merchant/amazon/asin/live/advanced",
1581
+ "body_root_param": "tasks",
1582
+ "input_schema": {
1583
+ "type": "object",
1584
+ "properties": {
1585
+ "asin": {
1586
+ "type": "string",
1587
+ "description": "Amazon ASIN"
1588
+ },
1589
+ "location_code": {
1590
+ "type": "integer",
1591
+ "description": "Provider location code"
1592
+ },
1593
+ "location_name": {
1594
+ "type": "string",
1595
+ "description": "Provider location name"
1596
+ },
1597
+ "language_code": {
1598
+ "type": "string",
1599
+ "description": "Provider language code"
1600
+ },
1601
+ "language_name": {
1602
+ "type": "string",
1603
+ "description": "Provider language name"
1604
+ },
1605
+ "se_domain": {
1606
+ "type": "string",
1607
+ "description": "Amazon search engine domain, e.g. amazon.com"
1608
+ }
1609
+ },
1610
+ "required": [
1611
+ "asin"
1612
+ ]
1613
+ }
1614
+ },
1615
+ {
1616
+ "name": "amazon_sellers",
1617
+ "description": "Get live Amazon sellers/offers for a product ASIN.",
1618
+ "method": "POST",
1619
+ "path": "/merchant/amazon/sellers/live/advanced",
1620
+ "body_root_param": "tasks",
1621
+ "input_schema": {
1622
+ "type": "object",
1623
+ "properties": {
1624
+ "asin": {
1625
+ "type": "string",
1626
+ "description": "Amazon ASIN"
1627
+ },
1628
+ "location_code": {
1629
+ "type": "integer",
1630
+ "description": "Provider location code"
1631
+ },
1632
+ "location_name": {
1633
+ "type": "string",
1634
+ "description": "Provider location name"
1635
+ },
1636
+ "language_code": {
1637
+ "type": "string",
1638
+ "description": "Provider language code"
1639
+ },
1640
+ "language_name": {
1641
+ "type": "string",
1642
+ "description": "Provider language name"
1643
+ },
1644
+ "se_domain": {
1645
+ "type": "string",
1646
+ "description": "Amazon search engine domain, e.g. amazon.com"
1647
+ }
1648
+ },
1649
+ "required": [
1650
+ "asin"
1651
+ ]
1652
+ }
1653
+ },
1654
+ {
1655
+ "name": "amazon_reviews_task_post",
1656
+ "description": "Create a DataForSEO task for Amazon product reviews by ASIN.",
1657
+ "method": "POST",
1658
+ "path": "/merchant/amazon/reviews/task_post",
1659
+ "body_root_param": "tasks",
1660
+ "input_schema": {
1661
+ "type": "object",
1662
+ "properties": {
1663
+ "asin": {
1664
+ "type": "string",
1665
+ "description": "Amazon ASIN"
1666
+ },
1667
+ "location_code": {
1668
+ "type": "integer",
1669
+ "description": "Provider location code"
1670
+ },
1671
+ "location_name": {
1672
+ "type": "string",
1673
+ "description": "Provider location name"
1674
+ },
1675
+ "language_code": {
1676
+ "type": "string",
1677
+ "description": "Provider language code"
1678
+ },
1679
+ "language_name": {
1680
+ "type": "string",
1681
+ "description": "Provider language name"
1682
+ },
1683
+ "se_domain": {
1684
+ "type": "string",
1685
+ "description": "Amazon search engine domain, e.g. amazon.com"
1686
+ },
1687
+ "depth": {
1688
+ "type": "integer",
1689
+ "description": "Number of reviews to retrieve"
1690
+ },
1691
+ "sort_by": {
1692
+ "type": "string",
1693
+ "description": "Review sorting mode"
1694
+ },
1695
+ "priority": {
1696
+ "type": "integer",
1697
+ "description": "Task priority: 1 normal, 2 high"
1698
+ },
1699
+ "tag": {
1700
+ "type": "string",
1701
+ "description": "User-defined task tag"
1702
+ }
1703
+ },
1704
+ "required": [
1705
+ "asin"
1706
+ ]
1707
+ }
1708
+ },
1709
+ {
1710
+ "name": "amazon_reviews_task_get",
1711
+ "description": "Get completed Amazon product reviews task results by DataForSEO task id.",
1712
+ "method": "GET",
1713
+ "path": "/merchant/amazon/reviews/task_get/advanced/{id}",
1714
+ "input_schema": {
1715
+ "type": "object",
1716
+ "properties": {
1717
+ "id": {
1718
+ "type": "string",
1719
+ "description": "DataForSEO task ID"
1720
+ }
1721
+ },
1722
+ "required": [
1723
+ "id"
1724
+ ]
1725
+ }
1726
+ },
1727
+ {
1728
+ "name": "amazon_labs_bulk_search_volume",
1729
+ "description": "Get Amazon keyword search volume in bulk from DataForSEO Labs.",
1730
+ "method": "POST",
1731
+ "path": "/dataforseo_labs/amazon/bulk_search_volume/live",
1732
+ "body_root_param": "tasks",
1733
+ "input_schema": {
1734
+ "type": "object",
1735
+ "properties": {
1736
+ "keywords": {
1737
+ "type": "array",
1738
+ "items": {
1739
+ "type": "string"
1740
+ },
1741
+ "description": "Amazon keywords to analyze"
1742
+ },
1743
+ "location_code": {
1744
+ "type": "integer",
1745
+ "description": "Provider location code"
1746
+ },
1747
+ "location_name": {
1748
+ "type": "string",
1749
+ "description": "Provider location name"
1750
+ },
1751
+ "language_code": {
1752
+ "type": "string",
1753
+ "description": "Provider language code"
1754
+ },
1755
+ "language_name": {
1756
+ "type": "string",
1757
+ "description": "Provider language name"
1758
+ }
1759
+ },
1760
+ "required": [
1761
+ "keywords"
1762
+ ]
1763
+ }
1764
+ },
1765
+ {
1766
+ "name": "amazon_labs_related_keywords",
1767
+ "description": "Get related Amazon keywords for a seed keyword from DataForSEO Labs.",
1768
+ "method": "POST",
1769
+ "path": "/dataforseo_labs/amazon/related_keywords/live",
1770
+ "body_root_param": "tasks",
1771
+ "input_schema": {
1772
+ "type": "object",
1773
+ "properties": {
1774
+ "keyword": {
1775
+ "type": "string",
1776
+ "description": "Seed Amazon keyword"
1777
+ },
1778
+ "location_code": {
1779
+ "type": "integer",
1780
+ "description": "Provider location code"
1781
+ },
1782
+ "location_name": {
1783
+ "type": "string",
1784
+ "description": "Provider location name"
1785
+ },
1786
+ "language_code": {
1787
+ "type": "string",
1788
+ "description": "Provider language code"
1789
+ },
1790
+ "language_name": {
1791
+ "type": "string",
1792
+ "description": "Provider language name"
1793
+ },
1794
+ "include_seed_keyword": {
1795
+ "type": "boolean",
1796
+ "description": "Include the seed keyword in results"
1797
+ },
1798
+ "limit": {
1799
+ "type": "integer",
1800
+ "description": "Maximum number of results"
1801
+ },
1802
+ "offset": {
1803
+ "type": "integer",
1804
+ "description": "Pagination offset"
1805
+ }
1806
+ },
1807
+ "required": [
1808
+ "keyword"
1809
+ ]
1810
+ }
1811
+ },
1812
+ {
1813
+ "name": "amazon_labs_ranked_keywords",
1814
+ "description": "Get Amazon keywords an ASIN ranks for from DataForSEO Labs.",
1815
+ "method": "POST",
1816
+ "path": "/dataforseo_labs/amazon/ranked_keywords/live",
1817
+ "body_root_param": "tasks",
1818
+ "input_schema": {
1819
+ "type": "object",
1820
+ "properties": {
1821
+ "asin": {
1822
+ "type": "string",
1823
+ "description": "Amazon ASIN"
1824
+ },
1825
+ "location_code": {
1826
+ "type": "integer",
1827
+ "description": "Provider location code"
1828
+ },
1829
+ "location_name": {
1830
+ "type": "string",
1831
+ "description": "Provider location name"
1832
+ },
1833
+ "language_code": {
1834
+ "type": "string",
1835
+ "description": "Provider language code"
1836
+ },
1837
+ "language_name": {
1838
+ "type": "string",
1839
+ "description": "Provider language name"
1840
+ },
1841
+ "limit": {
1842
+ "type": "integer",
1843
+ "description": "Maximum number of results"
1844
+ },
1845
+ "offset": {
1846
+ "type": "integer",
1847
+ "description": "Pagination offset"
1848
+ },
1849
+ "filters": {
1850
+ "type": "array",
1851
+ "description": "Optional DataForSEO filter conditions"
1852
+ },
1853
+ "order_by": {
1854
+ "type": "array",
1855
+ "description": "Optional DataForSEO ordering expressions"
1856
+ }
1857
+ },
1858
+ "required": [
1859
+ "asin"
1860
+ ]
1861
+ }
1862
+ },
1863
+ {
1864
+ "name": "amazon_labs_product_rank_overview",
1865
+ "description": "Get Amazon product ranking overview metrics by ASIN from DataForSEO Labs.",
1866
+ "method": "POST",
1867
+ "path": "/dataforseo_labs/amazon/product_rank_overview/live",
1868
+ "body_root_param": "tasks",
1869
+ "input_schema": {
1870
+ "type": "object",
1871
+ "properties": {
1872
+ "location_code": {
1873
+ "type": "integer",
1874
+ "description": "Provider location code"
1875
+ },
1876
+ "location_name": {
1877
+ "type": "string",
1878
+ "description": "Provider location name"
1879
+ },
1880
+ "language_code": {
1881
+ "type": "string",
1882
+ "description": "Provider language code"
1883
+ },
1884
+ "language_name": {
1885
+ "type": "string",
1886
+ "description": "Provider language name"
1887
+ },
1888
+ "asins": {
1889
+ "type": "array",
1890
+ "items": {
1891
+ "type": "string"
1892
+ },
1893
+ "description": "Amazon ASINs to analyze"
1894
+ }
1895
+ },
1896
+ "required": [
1897
+ "asins"
1898
+ ]
1899
+ }
1900
+ },
1901
+ {
1902
+ "name": "amazon_labs_product_competitors",
1903
+ "description": "Get competing Amazon products for an ASIN from DataForSEO Labs.",
1904
+ "method": "POST",
1905
+ "path": "/dataforseo_labs/amazon/product_competitors/live",
1906
+ "body_root_param": "tasks",
1907
+ "input_schema": {
1908
+ "type": "object",
1909
+ "properties": {
1910
+ "asin": {
1911
+ "type": "string",
1912
+ "description": "Amazon ASIN"
1913
+ },
1914
+ "location_code": {
1915
+ "type": "integer",
1916
+ "description": "Provider location code"
1917
+ },
1918
+ "location_name": {
1919
+ "type": "string",
1920
+ "description": "Provider location name"
1921
+ },
1922
+ "language_code": {
1923
+ "type": "string",
1924
+ "description": "Provider language code"
1925
+ },
1926
+ "language_name": {
1927
+ "type": "string",
1928
+ "description": "Provider language name"
1929
+ },
1930
+ "limit": {
1931
+ "type": "integer",
1932
+ "description": "Maximum number of results"
1933
+ },
1934
+ "offset": {
1935
+ "type": "integer",
1936
+ "description": "Pagination offset"
1937
+ },
1938
+ "filters": {
1939
+ "type": "array",
1940
+ "description": "Optional DataForSEO filter conditions"
1941
+ },
1942
+ "order_by": {
1943
+ "type": "array",
1944
+ "description": "Optional DataForSEO ordering expressions"
1945
+ }
1946
+ },
1947
+ "required": [
1948
+ "asin"
1949
+ ]
1950
+ }
1951
+ },
1952
+ {
1953
+ "name": "amazon_labs_product_keyword_intersections",
1954
+ "description": "Find Amazon keyword overlaps/gaps across ASINs from DataForSEO Labs.",
1955
+ "method": "POST",
1956
+ "path": "/dataforseo_labs/amazon/product_keyword_intersections/live",
1957
+ "body_root_param": "tasks",
1958
+ "input_schema": {
1959
+ "type": "object",
1960
+ "properties": {
1961
+ "asins": {
1962
+ "type": "object",
1963
+ "description": "Map of comparison slots to Amazon ASINs, e.g. {\"1\":\"B001...\",\"2\":\"B002...\"}",
1964
+ "additionalProperties": {
1965
+ "type": "string"
1966
+ }
1967
+ },
1968
+ "location_code": {
1969
+ "type": "integer",
1970
+ "description": "Provider location code"
1971
+ },
1972
+ "location_name": {
1973
+ "type": "string",
1974
+ "description": "Provider location name"
1975
+ },
1976
+ "language_code": {
1977
+ "type": "string",
1978
+ "description": "Provider language code"
1979
+ },
1980
+ "language_name": {
1981
+ "type": "string",
1982
+ "description": "Provider language name"
1983
+ },
1984
+ "limit": {
1985
+ "type": "integer",
1986
+ "description": "Maximum number of results"
1987
+ },
1988
+ "offset": {
1989
+ "type": "integer",
1990
+ "description": "Pagination offset"
1991
+ },
1992
+ "filters": {
1993
+ "type": "array",
1994
+ "description": "Optional DataForSEO filter conditions"
1995
+ },
1996
+ "order_by": {
1997
+ "type": "array",
1998
+ "description": "Optional DataForSEO ordering expressions"
1999
+ }
2000
+ },
2001
+ "required": [
2002
+ "asins"
2003
+ ]
2004
+ }
2005
+ },
2006
+ {
2007
+ "name": "app_data_google_locations",
2008
+ "description": "List supported Google Play locations for App Data API.",
2009
+ "method": "GET",
2010
+ "path": "/app_data/google/locations",
2011
+ "input_schema": {
2012
+ "type": "object",
2013
+ "properties": {}
2014
+ }
2015
+ },
2016
+ {
2017
+ "name": "app_data_google_languages",
2018
+ "description": "List supported Google Play languages for App Data API.",
2019
+ "method": "GET",
2020
+ "path": "/app_data/google/languages",
2021
+ "input_schema": {
2022
+ "type": "object",
2023
+ "properties": {}
2024
+ }
2025
+ },
2026
+ {
2027
+ "name": "app_data_google_categories",
2028
+ "description": "List Google Play app categories for App Data API.",
2029
+ "method": "GET",
2030
+ "path": "/app_data/google/categories",
2031
+ "input_schema": {
2032
+ "type": "object",
2033
+ "properties": {}
2034
+ }
2035
+ },
2036
+ {
2037
+ "name": "app_data_google_app_listings_categories",
2038
+ "description": "List Google Play app listing categories.",
2039
+ "method": "GET",
2040
+ "path": "/app_data/google/app_listings/categories",
2041
+ "input_schema": {
2042
+ "type": "object",
2043
+ "properties": {}
2044
+ }
2045
+ },
2046
+ {
2047
+ "name": "app_data_google_app_searches_task_post",
2048
+ "description": "Create a Google Play app search task for apps ranking for a keyword.",
2049
+ "method": "POST",
2050
+ "path": "/app_data/google/app_searches/task_post",
2051
+ "body_root_param": "tasks",
2052
+ "input_schema": {
2053
+ "type": "object",
2054
+ "properties": {
2055
+ "keyword": {
2056
+ "type": "string",
2057
+ "description": "App search keyword"
2058
+ },
2059
+ "location_code": {
2060
+ "type": "integer",
2061
+ "description": "Provider location code"
2062
+ },
2063
+ "location_name": {
2064
+ "type": "string",
2065
+ "description": "Provider location name"
2066
+ },
2067
+ "language_code": {
2068
+ "type": "string",
2069
+ "description": "Provider language code"
2070
+ },
2071
+ "language_name": {
2072
+ "type": "string",
2073
+ "description": "Provider language name"
2074
+ },
2075
+ "depth": {
2076
+ "type": "integer",
2077
+ "description": "Number of app results"
2078
+ },
2079
+ "priority": {
2080
+ "type": "integer",
2081
+ "description": "Task priority: 1 normal, 2 high"
2082
+ },
2083
+ "tag": {
2084
+ "type": "string",
2085
+ "description": "User-defined task tag"
2086
+ }
2087
+ },
2088
+ "required": [
2089
+ "keyword"
2090
+ ]
2091
+ }
2092
+ },
2093
+ {
2094
+ "name": "app_data_google_app_searches_task_get",
2095
+ "description": "Get completed Google Play app search task results by DataForSEO task id.",
2096
+ "method": "GET",
2097
+ "path": "/app_data/google/app_searches/task_get/advanced/{id}",
2098
+ "input_schema": {
2099
+ "type": "object",
2100
+ "properties": {
2101
+ "id": {
2102
+ "type": "string",
2103
+ "description": "DataForSEO task ID"
2104
+ }
2105
+ },
2106
+ "required": [
2107
+ "id"
2108
+ ]
2109
+ }
2110
+ },
2111
+ {
2112
+ "name": "app_data_google_app_info_task_post",
2113
+ "description": "Create a Google Play app info task by app_id.",
2114
+ "method": "POST",
2115
+ "path": "/app_data/google/app_info/task_post",
2116
+ "body_root_param": "tasks",
2117
+ "input_schema": {
2118
+ "type": "object",
2119
+ "properties": {
2120
+ "app_id": {
2121
+ "type": "string",
2122
+ "description": "Google Play app ID, e.g. org.telegram.messenger"
2123
+ },
2124
+ "location_code": {
2125
+ "type": "integer",
2126
+ "description": "Provider location code"
2127
+ },
2128
+ "location_name": {
2129
+ "type": "string",
2130
+ "description": "Provider location name"
2131
+ },
2132
+ "language_code": {
2133
+ "type": "string",
2134
+ "description": "Provider language code"
2135
+ },
2136
+ "language_name": {
2137
+ "type": "string",
2138
+ "description": "Provider language name"
2139
+ },
2140
+ "priority": {
2141
+ "type": "integer",
2142
+ "description": "Task priority: 1 normal, 2 high"
2143
+ },
2144
+ "tag": {
2145
+ "type": "string",
2146
+ "description": "User-defined task tag"
2147
+ }
2148
+ },
2149
+ "required": [
2150
+ "app_id"
2151
+ ]
2152
+ }
2153
+ },
2154
+ {
2155
+ "name": "app_data_google_app_info_task_get",
2156
+ "description": "Get completed Google Play app info task results by DataForSEO task id.",
2157
+ "method": "GET",
2158
+ "path": "/app_data/google/app_info/task_get/advanced/{id}",
2159
+ "input_schema": {
2160
+ "type": "object",
2161
+ "properties": {
2162
+ "id": {
2163
+ "type": "string",
2164
+ "description": "DataForSEO task ID"
2165
+ }
2166
+ },
2167
+ "required": [
2168
+ "id"
2169
+ ]
2170
+ }
2171
+ },
2172
+ {
2173
+ "name": "app_data_google_app_reviews_task_post",
2174
+ "description": "Create a Google Play app reviews task by app_id.",
2175
+ "method": "POST",
2176
+ "path": "/app_data/google/app_reviews/task_post",
2177
+ "body_root_param": "tasks",
2178
+ "input_schema": {
2179
+ "type": "object",
2180
+ "properties": {
2181
+ "app_id": {
2182
+ "type": "string",
2183
+ "description": "Google Play app ID"
2184
+ },
2185
+ "location_code": {
2186
+ "type": "integer",
2187
+ "description": "Provider location code"
2188
+ },
2189
+ "location_name": {
2190
+ "type": "string",
2191
+ "description": "Provider location name"
2192
+ },
2193
+ "language_code": {
2194
+ "type": "string",
2195
+ "description": "Provider language code"
2196
+ },
2197
+ "language_name": {
2198
+ "type": "string",
2199
+ "description": "Provider language name"
2200
+ },
2201
+ "depth": {
2202
+ "type": "integer",
2203
+ "description": "Number of reviews"
2204
+ },
2205
+ "rating": {
2206
+ "type": "integer",
2207
+ "description": "Optional rating filter from 1 to 5"
2208
+ },
2209
+ "sort_by": {
2210
+ "type": "string",
2211
+ "description": "Review sort order, such as newest or most_relevant"
2212
+ },
2213
+ "priority": {
2214
+ "type": "integer",
2215
+ "description": "Task priority: 1 normal, 2 high"
2216
+ },
2217
+ "tag": {
2218
+ "type": "string",
2219
+ "description": "User-defined task tag"
2220
+ }
2221
+ },
2222
+ "required": [
2223
+ "app_id"
2224
+ ]
2225
+ }
2226
+ },
2227
+ {
2228
+ "name": "app_data_google_app_reviews_task_get",
2229
+ "description": "Get completed Google Play app reviews task results by DataForSEO task id.",
2230
+ "method": "GET",
2231
+ "path": "/app_data/google/app_reviews/task_get/advanced/{id}",
2232
+ "input_schema": {
2233
+ "type": "object",
2234
+ "properties": {
2235
+ "id": {
2236
+ "type": "string",
2237
+ "description": "DataForSEO task ID"
2238
+ }
2239
+ },
2240
+ "required": [
2241
+ "id"
2242
+ ]
2243
+ }
2244
+ },
2245
+ {
2246
+ "name": "app_data_google_app_listings_search",
2247
+ "description": "Search Google Play app listings database live by title, description, and category filters.",
2248
+ "method": "POST",
2249
+ "path": "/app_data/google/app_listings/search/live",
2250
+ "body_root_param": "tasks",
2251
+ "input_schema": {
2252
+ "type": "object",
2253
+ "properties": {
2254
+ "title": {
2255
+ "type": "string",
2256
+ "description": "Title search text"
2257
+ },
2258
+ "description": {
2259
+ "type": "string",
2260
+ "description": "Description search text"
2261
+ },
2262
+ "categories": {
2263
+ "type": "array",
2264
+ "items": {
2265
+ "type": "string"
2266
+ },
2267
+ "description": "Categories to include"
2268
+ },
2269
+ "location_code": {
2270
+ "type": "integer",
2271
+ "description": "Provider location code"
2272
+ },
2273
+ "location_name": {
2274
+ "type": "string",
2275
+ "description": "Provider location name"
2276
+ },
2277
+ "language_code": {
2278
+ "type": "string",
2279
+ "description": "Provider language code"
2280
+ },
2281
+ "language_name": {
2282
+ "type": "string",
2283
+ "description": "Provider language name"
2284
+ },
2285
+ "limit": {
2286
+ "type": "integer",
2287
+ "description": "Maximum number of results"
2288
+ },
2289
+ "offset": {
2290
+ "type": "integer",
2291
+ "description": "Pagination offset"
2292
+ }
2293
+ }
2294
+ }
2295
+ },
2296
+ {
2297
+ "name": "google_play_labs_bulk_app_metrics",
2298
+ "description": "Get Google Play ranking metrics for up to 1000 apps from DataForSEO Labs.",
2299
+ "method": "POST",
2300
+ "path": "/dataforseo_labs/google/bulk_app_metrics/live",
2301
+ "body_root_param": "tasks",
2302
+ "input_schema": {
2303
+ "type": "object",
2304
+ "properties": {
2305
+ "app_ids": {
2306
+ "type": "array",
2307
+ "items": {
2308
+ "type": "string"
2309
+ },
2310
+ "description": "Google Play app IDs"
2311
+ },
2312
+ "location_code": {
2313
+ "type": "integer",
2314
+ "description": "Provider location code"
2315
+ },
2316
+ "location_name": {
2317
+ "type": "string",
2318
+ "description": "Provider location name"
2319
+ },
2320
+ "language_code": {
2321
+ "type": "string",
2322
+ "description": "Provider language code"
2323
+ },
2324
+ "language_name": {
2325
+ "type": "string",
2326
+ "description": "Provider language name"
2327
+ }
2328
+ },
2329
+ "required": [
2330
+ "app_ids"
2331
+ ]
2332
+ }
2333
+ },
2334
+ {
2335
+ "name": "google_play_labs_keywords_for_app",
2336
+ "description": "Get keywords a Google Play app ranks for from DataForSEO Labs.",
2337
+ "method": "POST",
2338
+ "path": "/dataforseo_labs/google/keywords_for_app/live",
2339
+ "body_root_param": "tasks",
2340
+ "input_schema": {
2341
+ "type": "object",
2342
+ "properties": {
2343
+ "app_id": {
2344
+ "type": "string",
2345
+ "description": "Google Play app ID"
2346
+ },
2347
+ "location_code": {
2348
+ "type": "integer",
2349
+ "description": "Provider location code"
2350
+ },
2351
+ "location_name": {
2352
+ "type": "string",
2353
+ "description": "Provider location name"
2354
+ },
2355
+ "language_code": {
2356
+ "type": "string",
2357
+ "description": "Provider language code"
2358
+ },
2359
+ "language_name": {
2360
+ "type": "string",
2361
+ "description": "Provider language name"
2362
+ },
2363
+ "limit": {
2364
+ "type": "integer",
2365
+ "description": "Maximum number of results"
2366
+ },
2367
+ "offset": {
2368
+ "type": "integer",
2369
+ "description": "Pagination offset"
2370
+ },
2371
+ "filters": {
2372
+ "type": "array",
2373
+ "description": "Optional DataForSEO filter conditions"
2374
+ },
2375
+ "order_by": {
2376
+ "type": "array",
2377
+ "description": "Optional DataForSEO ordering expressions"
2378
+ }
2379
+ },
2380
+ "required": [
2381
+ "app_id"
2382
+ ]
2383
+ }
2384
+ },
2385
+ {
2386
+ "name": "google_play_labs_app_competitors",
2387
+ "description": "Get Google Play app competitors from DataForSEO Labs.",
2388
+ "method": "POST",
2389
+ "path": "/dataforseo_labs/google/app_competitors/live",
2390
+ "body_root_param": "tasks",
2391
+ "input_schema": {
2392
+ "type": "object",
2393
+ "properties": {
2394
+ "app_id": {
2395
+ "type": "string",
2396
+ "description": "Google Play app ID"
2397
+ },
2398
+ "location_code": {
2399
+ "type": "integer",
2400
+ "description": "Provider location code"
2401
+ },
2402
+ "location_name": {
2403
+ "type": "string",
2404
+ "description": "Provider location name"
2405
+ },
2406
+ "language_code": {
2407
+ "type": "string",
2408
+ "description": "Provider language code"
2409
+ },
2410
+ "language_name": {
2411
+ "type": "string",
2412
+ "description": "Provider language name"
2413
+ },
2414
+ "limit": {
2415
+ "type": "integer",
2416
+ "description": "Maximum number of results"
2417
+ },
2418
+ "offset": {
2419
+ "type": "integer",
2420
+ "description": "Pagination offset"
2421
+ },
2422
+ "filters": {
2423
+ "type": "array",
2424
+ "description": "Optional DataForSEO filter conditions"
2425
+ },
2426
+ "order_by": {
2427
+ "type": "array",
2428
+ "description": "Optional DataForSEO ordering expressions"
2429
+ }
2430
+ },
2431
+ "required": [
2432
+ "app_id"
2433
+ ]
2434
+ }
2435
+ },
2436
+ {
2437
+ "name": "google_play_labs_app_intersection",
2438
+ "description": "Find Google Play keyword overlaps/gaps across apps from DataForSEO Labs.",
2439
+ "method": "POST",
2440
+ "path": "/dataforseo_labs/google/app_intersection/live",
2441
+ "body_root_param": "tasks",
2442
+ "input_schema": {
2443
+ "type": "object",
2444
+ "properties": {
2445
+ "app_ids": {
2446
+ "type": "object",
2447
+ "description": "Map of comparison slots to app IDs, e.g. {\"1\":\"app-a\",\"2\":\"app-b\"}",
2448
+ "additionalProperties": {
2449
+ "type": "string"
2450
+ }
2451
+ },
2452
+ "location_code": {
2453
+ "type": "integer",
2454
+ "description": "Provider location code"
2455
+ },
2456
+ "location_name": {
2457
+ "type": "string",
2458
+ "description": "Provider location name"
2459
+ },
2460
+ "language_code": {
2461
+ "type": "string",
2462
+ "description": "Provider language code"
2463
+ },
2464
+ "language_name": {
2465
+ "type": "string",
2466
+ "description": "Provider language name"
2467
+ },
2468
+ "limit": {
2469
+ "type": "integer",
2470
+ "description": "Maximum number of results"
2471
+ },
2472
+ "offset": {
2473
+ "type": "integer",
2474
+ "description": "Pagination offset"
2475
+ },
2476
+ "filters": {
2477
+ "type": "array",
2478
+ "description": "Optional DataForSEO filter conditions"
2479
+ },
2480
+ "order_by": {
2481
+ "type": "array",
2482
+ "description": "Optional DataForSEO ordering expressions"
2483
+ }
2484
+ },
2485
+ "required": [
2486
+ "app_ids"
2487
+ ]
2488
+ }
2489
+ },
2490
+ {
2491
+ "name": "app_data_apple_locations",
2492
+ "description": "List supported Apple App Store locations for App Data API.",
2493
+ "method": "GET",
2494
+ "path": "/app_data/apple/locations",
2495
+ "input_schema": {
2496
+ "type": "object",
2497
+ "properties": {}
2498
+ }
2499
+ },
2500
+ {
2501
+ "name": "app_data_apple_languages",
2502
+ "description": "List supported Apple App Store languages for App Data API.",
2503
+ "method": "GET",
2504
+ "path": "/app_data/apple/languages",
2505
+ "input_schema": {
2506
+ "type": "object",
2507
+ "properties": {}
2508
+ }
2509
+ },
2510
+ {
2511
+ "name": "app_data_apple_categories",
2512
+ "description": "List Apple App Store app categories for App Data API.",
2513
+ "method": "GET",
2514
+ "path": "/app_data/apple/categories",
2515
+ "input_schema": {
2516
+ "type": "object",
2517
+ "properties": {}
2518
+ }
2519
+ },
2520
+ {
2521
+ "name": "app_data_apple_app_listings_categories",
2522
+ "description": "List Apple App Store app listing categories.",
2523
+ "method": "GET",
2524
+ "path": "/app_data/apple/app_listings/categories",
2525
+ "input_schema": {
2526
+ "type": "object",
2527
+ "properties": {}
2528
+ }
2529
+ },
2530
+ {
2531
+ "name": "app_data_apple_app_searches_task_post",
2532
+ "description": "Create an Apple App Store app search task for apps ranking for a keyword.",
2533
+ "method": "POST",
2534
+ "path": "/app_data/apple/app_searches/task_post",
2535
+ "body_root_param": "tasks",
2536
+ "input_schema": {
2537
+ "type": "object",
2538
+ "properties": {
2539
+ "keyword": {
2540
+ "type": "string",
2541
+ "description": "App search keyword"
2542
+ },
2543
+ "location_code": {
2544
+ "type": "integer",
2545
+ "description": "Provider location code"
2546
+ },
2547
+ "location_name": {
2548
+ "type": "string",
2549
+ "description": "Provider location name"
2550
+ },
2551
+ "language_code": {
2552
+ "type": "string",
2553
+ "description": "Provider language code"
2554
+ },
2555
+ "language_name": {
2556
+ "type": "string",
2557
+ "description": "Provider language name"
2558
+ },
2559
+ "depth": {
2560
+ "type": "integer",
2561
+ "description": "Number of app results"
2562
+ },
2563
+ "priority": {
2564
+ "type": "integer",
2565
+ "description": "Task priority: 1 normal, 2 high"
2566
+ },
2567
+ "tag": {
2568
+ "type": "string",
2569
+ "description": "User-defined task tag"
2570
+ }
2571
+ },
2572
+ "required": [
2573
+ "keyword"
2574
+ ]
2575
+ }
2576
+ },
2577
+ {
2578
+ "name": "app_data_apple_app_searches_task_get",
2579
+ "description": "Get completed Apple App Store app search task results by DataForSEO task id.",
2580
+ "method": "GET",
2581
+ "path": "/app_data/apple/app_searches/task_get/advanced/{id}",
2582
+ "input_schema": {
2583
+ "type": "object",
2584
+ "properties": {
2585
+ "id": {
2586
+ "type": "string",
2587
+ "description": "DataForSEO task ID"
2588
+ }
2589
+ },
2590
+ "required": [
2591
+ "id"
2592
+ ]
2593
+ }
2594
+ },
2595
+ {
2596
+ "name": "app_data_apple_app_info_task_post",
2597
+ "description": "Create an Apple App Store app info task by app_id.",
2598
+ "method": "POST",
2599
+ "path": "/app_data/apple/app_info/task_post",
2600
+ "body_root_param": "tasks",
2601
+ "input_schema": {
2602
+ "type": "object",
2603
+ "properties": {
2604
+ "app_id": {
2605
+ "type": "string",
2606
+ "description": "Apple App Store app ID"
2607
+ },
2608
+ "location_code": {
2609
+ "type": "integer",
2610
+ "description": "Provider location code"
2611
+ },
2612
+ "location_name": {
2613
+ "type": "string",
2614
+ "description": "Provider location name"
2615
+ },
2616
+ "language_code": {
2617
+ "type": "string",
2618
+ "description": "Provider language code"
2619
+ },
2620
+ "language_name": {
2621
+ "type": "string",
2622
+ "description": "Provider language name"
2623
+ },
2624
+ "priority": {
2625
+ "type": "integer",
2626
+ "description": "Task priority: 1 normal, 2 high"
2627
+ },
2628
+ "tag": {
2629
+ "type": "string",
2630
+ "description": "User-defined task tag"
2631
+ }
2632
+ },
2633
+ "required": [
2634
+ "app_id"
2635
+ ]
2636
+ }
2637
+ },
2638
+ {
2639
+ "name": "app_data_apple_app_info_task_get",
2640
+ "description": "Get completed Apple App Store app info task results by DataForSEO task id.",
2641
+ "method": "GET",
2642
+ "path": "/app_data/apple/app_info/task_get/advanced/{id}",
2643
+ "input_schema": {
2644
+ "type": "object",
2645
+ "properties": {
2646
+ "id": {
2647
+ "type": "string",
2648
+ "description": "DataForSEO task ID"
2649
+ }
2650
+ },
2651
+ "required": [
2652
+ "id"
2653
+ ]
2654
+ }
2655
+ },
2656
+ {
2657
+ "name": "app_data_apple_app_reviews_task_post",
2658
+ "description": "Create an Apple App Store app reviews task by app_id.",
2659
+ "method": "POST",
2660
+ "path": "/app_data/apple/app_reviews/task_post",
2661
+ "body_root_param": "tasks",
2662
+ "input_schema": {
2663
+ "type": "object",
2664
+ "properties": {
2665
+ "app_id": {
2666
+ "type": "string",
2667
+ "description": "Apple App Store app ID"
2668
+ },
2669
+ "location_code": {
2670
+ "type": "integer",
2671
+ "description": "Provider location code"
2672
+ },
2673
+ "location_name": {
2674
+ "type": "string",
2675
+ "description": "Provider location name"
2676
+ },
2677
+ "language_code": {
2678
+ "type": "string",
2679
+ "description": "Provider language code"
2680
+ },
2681
+ "language_name": {
2682
+ "type": "string",
2683
+ "description": "Provider language name"
2684
+ },
2685
+ "depth": {
2686
+ "type": "integer",
2687
+ "description": "Number of reviews"
2688
+ },
2689
+ "rating": {
2690
+ "type": "integer",
2691
+ "description": "Optional rating filter from 1 to 5"
2692
+ },
2693
+ "sort_by": {
2694
+ "type": "string",
2695
+ "description": "Review sort order"
2696
+ },
2697
+ "priority": {
2698
+ "type": "integer",
2699
+ "description": "Task priority: 1 normal, 2 high"
2700
+ },
2701
+ "tag": {
2702
+ "type": "string",
2703
+ "description": "User-defined task tag"
2704
+ }
2705
+ },
2706
+ "required": [
2707
+ "app_id"
2708
+ ]
2709
+ }
2710
+ },
2711
+ {
2712
+ "name": "app_data_apple_app_reviews_task_get",
2713
+ "description": "Get completed Apple App Store app reviews task results by DataForSEO task id.",
2714
+ "method": "GET",
2715
+ "path": "/app_data/apple/app_reviews/task_get/advanced/{id}",
2716
+ "input_schema": {
2717
+ "type": "object",
2718
+ "properties": {
2719
+ "id": {
2720
+ "type": "string",
2721
+ "description": "DataForSEO task ID"
2722
+ }
2723
+ },
2724
+ "required": [
2725
+ "id"
2726
+ ]
2727
+ }
2728
+ },
2729
+ {
2730
+ "name": "app_data_apple_app_listings_search",
2731
+ "description": "Search Apple App Store app listings database live by title, description, and category filters.",
2732
+ "method": "POST",
2733
+ "path": "/app_data/apple/app_listings/search/live",
2734
+ "body_root_param": "tasks",
2735
+ "input_schema": {
2736
+ "type": "object",
2737
+ "properties": {
2738
+ "title": {
2739
+ "type": "string",
2740
+ "description": "Title search text"
2741
+ },
2742
+ "description": {
2743
+ "type": "string",
2744
+ "description": "Description search text"
2745
+ },
2746
+ "categories": {
2747
+ "type": "array",
2748
+ "items": {
2749
+ "type": "string"
2750
+ },
2751
+ "description": "Categories to include"
2752
+ },
2753
+ "location_code": {
2754
+ "type": "integer",
2755
+ "description": "Provider location code"
2756
+ },
2757
+ "location_name": {
2758
+ "type": "string",
2759
+ "description": "Provider location name"
2760
+ },
2761
+ "language_code": {
2762
+ "type": "string",
2763
+ "description": "Provider language code"
2764
+ },
2765
+ "language_name": {
2766
+ "type": "string",
2767
+ "description": "Provider language name"
2768
+ },
2769
+ "limit": {
2770
+ "type": "integer",
2771
+ "description": "Maximum number of results"
2772
+ },
2773
+ "offset": {
2774
+ "type": "integer",
2775
+ "description": "Pagination offset"
2776
+ }
2777
+ }
2778
+ }
2779
+ },
2780
+ {
2781
+ "name": "app_store_labs_bulk_app_metrics",
2782
+ "description": "Get App Store ranking metrics for up to 1000 apps from DataForSEO Labs.",
2783
+ "method": "POST",
2784
+ "path": "/dataforseo_labs/apple/bulk_app_metrics/live",
2785
+ "body_root_param": "tasks",
2786
+ "input_schema": {
2787
+ "type": "object",
2788
+ "properties": {
2789
+ "app_ids": {
2790
+ "type": "array",
2791
+ "items": {
2792
+ "type": "string"
2793
+ },
2794
+ "description": "Apple App Store app IDs"
2795
+ },
2796
+ "location_code": {
2797
+ "type": "integer",
2798
+ "description": "Provider location code"
2799
+ },
2800
+ "location_name": {
2801
+ "type": "string",
2802
+ "description": "Provider location name"
2803
+ },
2804
+ "language_code": {
2805
+ "type": "string",
2806
+ "description": "Provider language code"
2807
+ },
2808
+ "language_name": {
2809
+ "type": "string",
2810
+ "description": "Provider language name"
2811
+ }
2812
+ },
2813
+ "required": [
2814
+ "app_ids"
2815
+ ]
2816
+ }
2817
+ },
2818
+ {
2819
+ "name": "app_store_labs_keywords_for_app",
2820
+ "description": "Get keywords an App Store app ranks for from DataForSEO Labs.",
2821
+ "method": "POST",
2822
+ "path": "/dataforseo_labs/apple/keywords_for_app/live",
2823
+ "body_root_param": "tasks",
2824
+ "input_schema": {
2825
+ "type": "object",
2826
+ "properties": {
2827
+ "app_id": {
2828
+ "type": "string",
2829
+ "description": "Apple App Store app ID"
2830
+ },
2831
+ "location_code": {
2832
+ "type": "integer",
2833
+ "description": "Provider location code"
2834
+ },
2835
+ "location_name": {
2836
+ "type": "string",
2837
+ "description": "Provider location name"
2838
+ },
2839
+ "language_code": {
2840
+ "type": "string",
2841
+ "description": "Provider language code"
2842
+ },
2843
+ "language_name": {
2844
+ "type": "string",
2845
+ "description": "Provider language name"
2846
+ },
2847
+ "limit": {
2848
+ "type": "integer",
2849
+ "description": "Maximum number of results"
2850
+ },
2851
+ "offset": {
2852
+ "type": "integer",
2853
+ "description": "Pagination offset"
2854
+ },
2855
+ "filters": {
2856
+ "type": "array",
2857
+ "description": "Optional DataForSEO filter conditions"
2858
+ },
2859
+ "order_by": {
2860
+ "type": "array",
2861
+ "description": "Optional DataForSEO ordering expressions"
2862
+ }
2863
+ },
2864
+ "required": [
2865
+ "app_id"
2866
+ ]
2867
+ }
2868
+ },
2869
+ {
2870
+ "name": "app_store_labs_app_competitors",
2871
+ "description": "Get App Store app competitors from DataForSEO Labs.",
2872
+ "method": "POST",
2873
+ "path": "/dataforseo_labs/apple/app_competitors/live",
2874
+ "body_root_param": "tasks",
2875
+ "input_schema": {
2876
+ "type": "object",
2877
+ "properties": {
2878
+ "app_id": {
2879
+ "type": "string",
2880
+ "description": "Apple App Store app ID"
2881
+ },
2882
+ "location_code": {
2883
+ "type": "integer",
2884
+ "description": "Provider location code"
2885
+ },
2886
+ "location_name": {
2887
+ "type": "string",
2888
+ "description": "Provider location name"
2889
+ },
2890
+ "language_code": {
2891
+ "type": "string",
2892
+ "description": "Provider language code"
2893
+ },
2894
+ "language_name": {
2895
+ "type": "string",
2896
+ "description": "Provider language name"
2897
+ },
2898
+ "limit": {
2899
+ "type": "integer",
2900
+ "description": "Maximum number of results"
2901
+ },
2902
+ "offset": {
2903
+ "type": "integer",
2904
+ "description": "Pagination offset"
2905
+ },
2906
+ "filters": {
2907
+ "type": "array",
2908
+ "description": "Optional DataForSEO filter conditions"
2909
+ },
2910
+ "order_by": {
2911
+ "type": "array",
2912
+ "description": "Optional DataForSEO ordering expressions"
2913
+ }
2914
+ },
2915
+ "required": [
2916
+ "app_id"
2917
+ ]
2918
+ }
2919
+ },
2920
+ {
2921
+ "name": "app_store_labs_app_intersection",
2922
+ "description": "Find App Store keyword overlaps/gaps across apps from DataForSEO Labs.",
2923
+ "method": "POST",
2924
+ "path": "/dataforseo_labs/apple/app_intersection/live",
2925
+ "body_root_param": "tasks",
2926
+ "input_schema": {
2927
+ "type": "object",
2928
+ "properties": {
2929
+ "app_ids": {
2930
+ "type": "object",
2931
+ "description": "Map of comparison slots to app IDs, e.g. {\"1\":\"app-a\",\"2\":\"app-b\"}",
2932
+ "additionalProperties": {
2933
+ "type": "string"
2934
+ }
2935
+ },
2936
+ "location_code": {
2937
+ "type": "integer",
2938
+ "description": "Provider location code"
2939
+ },
2940
+ "location_name": {
2941
+ "type": "string",
2942
+ "description": "Provider location name"
2943
+ },
2944
+ "language_code": {
2945
+ "type": "string",
2946
+ "description": "Provider language code"
2947
+ },
2948
+ "language_name": {
2949
+ "type": "string",
2950
+ "description": "Provider language name"
2951
+ },
2952
+ "limit": {
2953
+ "type": "integer",
2954
+ "description": "Maximum number of results"
2955
+ },
2956
+ "offset": {
2957
+ "type": "integer",
2958
+ "description": "Pagination offset"
2959
+ },
2960
+ "filters": {
2961
+ "type": "array",
2962
+ "description": "Optional DataForSEO filter conditions"
2963
+ },
2964
+ "order_by": {
2965
+ "type": "array",
2966
+ "description": "Optional DataForSEO ordering expressions"
2967
+ }
2968
+ },
2969
+ "required": [
2970
+ "app_ids"
2971
+ ]
2972
+ }
2973
+ },
1276
2974
  {
1277
2975
  "name": "account_info",
1278
2976
  "description": "Get account balance, rate limits, and usage statistics",