@whop/sdk 0.0.29 → 0.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/client.d.mts +2 -4
- package/client.d.mts.map +1 -1
- package/client.d.ts +2 -4
- package/client.d.ts.map +1 -1
- package/client.js.map +1 -1
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/checkout-configurations.d.mts +0 -13
- package/resources/checkout-configurations.d.mts.map +1 -1
- package/resources/checkout-configurations.d.ts +0 -13
- package/resources/checkout-configurations.d.ts.map +1 -1
- package/resources/checkout-configurations.js.map +1 -1
- package/resources/checkout-configurations.mjs.map +1 -1
- package/resources/companies.d.mts +0 -33
- package/resources/companies.d.mts.map +1 -1
- package/resources/companies.d.ts +0 -33
- package/resources/companies.d.ts.map +1 -1
- package/resources/companies.js.map +1 -1
- package/resources/companies.mjs.map +1 -1
- package/resources/index.d.mts +1 -1
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +1 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs.map +1 -1
- package/resources/payments.d.mts +0 -13
- package/resources/payments.d.mts.map +1 -1
- package/resources/payments.d.ts +0 -13
- package/resources/payments.d.ts.map +1 -1
- package/resources/payments.js.map +1 -1
- package/resources/payments.mjs.map +1 -1
- package/resources/products.d.mts +1 -29
- package/resources/products.d.mts.map +1 -1
- package/resources/products.d.ts +1 -29
- package/resources/products.d.ts.map +1 -1
- package/resources/shared.d.mts +0 -32
- package/resources/shared.d.mts.map +1 -1
- package/resources/shared.d.ts +0 -32
- package/resources/shared.d.ts.map +1 -1
- package/src/client.ts +0 -4
- package/src/resources/checkout-configurations.ts +0 -16
- package/src/resources/companies.ts +0 -41
- package/src/resources/index.ts +0 -1
- package/src/resources/payments.ts +0 -16
- package/src/resources/products.ts +0 -174
- package/src/resources/shared.ts +0 -2000
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/src/resources/shared.ts
CHANGED
|
@@ -357,31 +357,6 @@ export type AuthorizedUserRoles =
|
|
|
357
357
|
| 'support'
|
|
358
358
|
| 'manager';
|
|
359
359
|
|
|
360
|
-
/**
|
|
361
|
-
* The different business types a company can be.
|
|
362
|
-
*/
|
|
363
|
-
export type BusinessTypes =
|
|
364
|
-
| 'education_program'
|
|
365
|
-
| 'coaching'
|
|
366
|
-
| 'software'
|
|
367
|
-
| 'paid_group'
|
|
368
|
-
| 'newsletter'
|
|
369
|
-
| 'agency'
|
|
370
|
-
| 'physical_products'
|
|
371
|
-
| 'brick_and_mortar'
|
|
372
|
-
| 'events'
|
|
373
|
-
| 'coaching_and_courses'
|
|
374
|
-
| 'other'
|
|
375
|
-
| 'services'
|
|
376
|
-
| 'gig_economy'
|
|
377
|
-
| 'marketplace'
|
|
378
|
-
| 'telehealth'
|
|
379
|
-
| 'class_action_settlement'
|
|
380
|
-
| 'physical_product'
|
|
381
|
-
| 'saas'
|
|
382
|
-
| 'course'
|
|
383
|
-
| 'community';
|
|
384
|
-
|
|
385
360
|
/**
|
|
386
361
|
* A real-time chat feed attached to an experience, with configurable moderation
|
|
387
362
|
* and posting permissions.
|
|
@@ -618,11 +593,6 @@ export interface Company {
|
|
|
618
593
|
*/
|
|
619
594
|
id: string;
|
|
620
595
|
|
|
621
|
-
/**
|
|
622
|
-
* The different business types a company can be.
|
|
623
|
-
*/
|
|
624
|
-
business_type: BusinessTypes | null;
|
|
625
|
-
|
|
626
596
|
/**
|
|
627
597
|
* The datetime the company was created.
|
|
628
598
|
*/
|
|
@@ -634,11 +604,6 @@ export interface Company {
|
|
|
634
604
|
*/
|
|
635
605
|
description: string | null;
|
|
636
606
|
|
|
637
|
-
/**
|
|
638
|
-
* The different industry types a company can be in.
|
|
639
|
-
*/
|
|
640
|
-
industry_type: IndustryTypes | null;
|
|
641
|
-
|
|
642
607
|
/**
|
|
643
608
|
* The company's logo.
|
|
644
609
|
*/
|
|
@@ -1556,1951 +1521,6 @@ export type FriendlyReceiptStatus =
|
|
|
1556
1521
|
*/
|
|
1557
1522
|
export type GlobalAffiliateStatus = 'enabled' | 'disabled';
|
|
1558
1523
|
|
|
1559
|
-
/**
|
|
1560
|
-
* The different industry types a company can be in.
|
|
1561
|
-
*/
|
|
1562
|
-
export type IndustryTypes =
|
|
1563
|
-
| 'trading'
|
|
1564
|
-
| 'sports_betting'
|
|
1565
|
-
| 'reselling'
|
|
1566
|
-
| 'fitness'
|
|
1567
|
-
| 'amazon_fba'
|
|
1568
|
-
| 'real_estate'
|
|
1569
|
-
| 'kindle_book_publishing'
|
|
1570
|
-
| 'dating'
|
|
1571
|
-
| 'agencies'
|
|
1572
|
-
| 'health_and_wellness'
|
|
1573
|
-
| 'social_media'
|
|
1574
|
-
| 'sales'
|
|
1575
|
-
| 'business'
|
|
1576
|
-
| 'ecommerce'
|
|
1577
|
-
| 'video_games'
|
|
1578
|
-
| 'home_services'
|
|
1579
|
-
| 'ai'
|
|
1580
|
-
| 'public_speaking'
|
|
1581
|
-
| 'personal_finance'
|
|
1582
|
-
| 'careers'
|
|
1583
|
-
| 'travel'
|
|
1584
|
-
| 'clipping'
|
|
1585
|
-
| 'spirituality'
|
|
1586
|
-
| 'vas'
|
|
1587
|
-
| 'personal_development'
|
|
1588
|
-
| 'software'
|
|
1589
|
-
| 'other'
|
|
1590
|
-
| 'marketing_agency'
|
|
1591
|
-
| 'sales_agency'
|
|
1592
|
-
| 'ai_agency'
|
|
1593
|
-
| 'design_agency'
|
|
1594
|
-
| 'coaching_agency'
|
|
1595
|
-
| 'development_agency'
|
|
1596
|
-
| 'recruiting_agency'
|
|
1597
|
-
| 'customer_support_agency'
|
|
1598
|
-
| 'clipping_agency'
|
|
1599
|
-
| 'clothing'
|
|
1600
|
-
| 'supplements'
|
|
1601
|
-
| 'beauty_and_personal_care'
|
|
1602
|
-
| 'fitness_gear'
|
|
1603
|
-
| 'accessories'
|
|
1604
|
-
| 'home_goods'
|
|
1605
|
-
| 'electronics_and_gadgets'
|
|
1606
|
-
| 'food_and_beverages'
|
|
1607
|
-
| 'gym'
|
|
1608
|
-
| 'restaurant'
|
|
1609
|
-
| 'retail_store'
|
|
1610
|
-
| 'coffee_shop'
|
|
1611
|
-
| 'salon_spa'
|
|
1612
|
-
| 'medical_dentist_office'
|
|
1613
|
-
| 'hotel_lodging'
|
|
1614
|
-
| 'auto_repair_shop'
|
|
1615
|
-
| 'masterminds'
|
|
1616
|
-
| 'webinars'
|
|
1617
|
-
| 'bootcamps'
|
|
1618
|
-
| 'convention'
|
|
1619
|
-
| 'concerts'
|
|
1620
|
-
| 'meetups'
|
|
1621
|
-
| 'parties'
|
|
1622
|
-
| 'forex_trading'
|
|
1623
|
-
| 'stock_trading'
|
|
1624
|
-
| 'options_trading'
|
|
1625
|
-
| 'crypto_trading'
|
|
1626
|
-
| 'futures_trading'
|
|
1627
|
-
| 'day_trading'
|
|
1628
|
-
| 'swing_trading'
|
|
1629
|
-
| 'algorithmic_trading'
|
|
1630
|
-
| 'prop_firm_trading'
|
|
1631
|
-
| 'value_investing'
|
|
1632
|
-
| 'real_estate_investing'
|
|
1633
|
-
| 'alternative_investments'
|
|
1634
|
-
| 'penny_stock_trading'
|
|
1635
|
-
| 'dividend_investing'
|
|
1636
|
-
| 'index_fund_investing'
|
|
1637
|
-
| 'gold_precious_metals'
|
|
1638
|
-
| 'venture_capital_education'
|
|
1639
|
-
| 'private_equity_education'
|
|
1640
|
-
| 'technical_analysis'
|
|
1641
|
-
| 'forex_scalping'
|
|
1642
|
-
| 'ict_smc_trading'
|
|
1643
|
-
| 'personalized_investment_advice'
|
|
1644
|
-
| 'sports_betting_picks'
|
|
1645
|
-
| 'fantasy_sports'
|
|
1646
|
-
| 'horse_racing'
|
|
1647
|
-
| 'poker_coaching'
|
|
1648
|
-
| 'esports_betting'
|
|
1649
|
-
| 'sports_analytics'
|
|
1650
|
-
| 'nfl_betting'
|
|
1651
|
-
| 'nba_betting'
|
|
1652
|
-
| 'mlb_betting'
|
|
1653
|
-
| 'soccer_betting'
|
|
1654
|
-
| 'mma_ufc_betting'
|
|
1655
|
-
| 'bodybuilding_coaching'
|
|
1656
|
-
| 'strength_training'
|
|
1657
|
-
| 'weight_loss_coaching'
|
|
1658
|
-
| 'athletic_performance'
|
|
1659
|
-
| 'yoga_instruction'
|
|
1660
|
-
| 'martial_arts_instruction'
|
|
1661
|
-
| 'running_coaching'
|
|
1662
|
-
| 'calisthenics'
|
|
1663
|
-
| 'flexibility_mobility'
|
|
1664
|
-
| 'nutrition_coaching'
|
|
1665
|
-
| 'swimming_coaching'
|
|
1666
|
-
| 'cycling_coaching'
|
|
1667
|
-
| 'boxing_coaching'
|
|
1668
|
-
| 'mma_coaching'
|
|
1669
|
-
| 'jiu_jitsu_coaching'
|
|
1670
|
-
| 'wrestling_coaching'
|
|
1671
|
-
| 'gymnastics_coaching'
|
|
1672
|
-
| 'pilates_instruction'
|
|
1673
|
-
| 'sports_nutrition'
|
|
1674
|
-
| 'body_recomposition'
|
|
1675
|
-
| 'golf_coaching'
|
|
1676
|
-
| 'tennis_coaching'
|
|
1677
|
-
| 'basketball_training'
|
|
1678
|
-
| 'soccer_training'
|
|
1679
|
-
| 'racket_sports_coaching'
|
|
1680
|
-
| 'mental_health_coaching'
|
|
1681
|
-
| 'life_coaching'
|
|
1682
|
-
| 'biohacking'
|
|
1683
|
-
| 'holistic_health'
|
|
1684
|
-
| 'addiction_recovery_coaching'
|
|
1685
|
-
| 'breathwork'
|
|
1686
|
-
| 'meditation_mindfulness'
|
|
1687
|
-
| 'gut_health_coaching'
|
|
1688
|
-
| 'longevity_coaching'
|
|
1689
|
-
| 'womens_health_coaching'
|
|
1690
|
-
| 'mens_health_coaching'
|
|
1691
|
-
| 'fertility_wellness'
|
|
1692
|
-
| 'stress_management'
|
|
1693
|
-
| 'grief_coaching'
|
|
1694
|
-
| 'trauma_recovery_coaching'
|
|
1695
|
-
| 'adhd_coaching'
|
|
1696
|
-
| 'biomarker_health_coaching'
|
|
1697
|
-
| 'fitness_newsletter'
|
|
1698
|
-
| 'mental_health_newsletter'
|
|
1699
|
-
| 'longevity_newsletter'
|
|
1700
|
-
| 'medical_newsletter'
|
|
1701
|
-
| 'biohacking_newsletter'
|
|
1702
|
-
| 'womens_health_newsletter'
|
|
1703
|
-
| 'mens_health_newsletter'
|
|
1704
|
-
| 'pharma_biotech_newsletter'
|
|
1705
|
-
| 'ecommerce_education'
|
|
1706
|
-
| 'amazon_fba_coaching'
|
|
1707
|
-
| 'dropshipping_coaching'
|
|
1708
|
-
| 'print_on_demand_coaching'
|
|
1709
|
-
| 'retail_arbitrage'
|
|
1710
|
-
| 'wholesale_coaching'
|
|
1711
|
-
| 'startup_coaching'
|
|
1712
|
-
| 'business_strategy'
|
|
1713
|
-
| 'agency_building'
|
|
1714
|
-
| 'smma_coaching'
|
|
1715
|
-
| 'consulting_business'
|
|
1716
|
-
| 'saas_entrepreneurship'
|
|
1717
|
-
| 'local_business_coaching'
|
|
1718
|
-
| 'cleaning_business_coaching'
|
|
1719
|
-
| 'trucking_business_coaching'
|
|
1720
|
-
| 'vending_machine_business'
|
|
1721
|
-
| 'atm_business_coaching'
|
|
1722
|
-
| 'car_wash_business'
|
|
1723
|
-
| 'airbnb_business_coaching'
|
|
1724
|
-
| 'private_label_coaching'
|
|
1725
|
-
| 'etsy_coaching'
|
|
1726
|
-
| 'merch_business_coaching'
|
|
1727
|
-
| 'licensing_business'
|
|
1728
|
-
| 'business_acquisition'
|
|
1729
|
-
| 'women_entrepreneurship'
|
|
1730
|
-
| 'affiliate_marketing_education'
|
|
1731
|
-
| 'coaching_business_coaching'
|
|
1732
|
-
| 'startup_newsletter'
|
|
1733
|
-
| 'ecommerce_newsletter'
|
|
1734
|
-
| 'marketing_newsletter'
|
|
1735
|
-
| 'sales_newsletter'
|
|
1736
|
-
| 'small_business_newsletter'
|
|
1737
|
-
| 'leadership_newsletter'
|
|
1738
|
-
| 'agency_newsletter'
|
|
1739
|
-
| 'saas_newsletter'
|
|
1740
|
-
| 'hr_people_newsletter'
|
|
1741
|
-
| 'legal_business_newsletter'
|
|
1742
|
-
| 'real_estate_business_newsletter'
|
|
1743
|
-
| 'solopreneur_newsletter'
|
|
1744
|
-
| 'high_ticket_sales'
|
|
1745
|
-
| 'b2b_sales_coaching'
|
|
1746
|
-
| 'door_to_door_sales'
|
|
1747
|
-
| 'sales_funnel_coaching'
|
|
1748
|
-
| 'appointment_setting_coaching'
|
|
1749
|
-
| 'insurance_sales_coaching'
|
|
1750
|
-
| 'car_sales_coaching'
|
|
1751
|
-
| 'retail_sales_coaching'
|
|
1752
|
-
| 'solar_sales_coaching'
|
|
1753
|
-
| 'facebook_ads'
|
|
1754
|
-
| 'google_ads'
|
|
1755
|
-
| 'tiktok_marketing'
|
|
1756
|
-
| 'youtube_marketing'
|
|
1757
|
-
| 'instagram_growth'
|
|
1758
|
-
| 'seo_coaching'
|
|
1759
|
-
| 'email_marketing_coaching'
|
|
1760
|
-
| 'copywriting_coaching'
|
|
1761
|
-
| 'affiliate_marketing'
|
|
1762
|
-
| 'local_seo'
|
|
1763
|
-
| 'ai_marketing'
|
|
1764
|
-
| 'webinar_marketing'
|
|
1765
|
-
| 'event_marketing'
|
|
1766
|
-
| 'saas_marketing_coaching'
|
|
1767
|
-
| 'digital_marketing'
|
|
1768
|
-
| 'video_editing_education'
|
|
1769
|
-
| 'photography_coaching'
|
|
1770
|
-
| 'music_production'
|
|
1771
|
-
| 'ui_ux_design_education'
|
|
1772
|
-
| 'clipping_education'
|
|
1773
|
-
| 'ugc_creation'
|
|
1774
|
-
| '3d_modeling_education'
|
|
1775
|
-
| 'dj_education'
|
|
1776
|
-
| 'youtube_automation'
|
|
1777
|
-
| 'blog_monetization'
|
|
1778
|
-
| 'wedding_photography_education'
|
|
1779
|
-
| 'calligraphy_lettering'
|
|
1780
|
-
| 'illustration_education'
|
|
1781
|
-
| 'fashion_design_education'
|
|
1782
|
-
| 'interior_design_education'
|
|
1783
|
-
| 'influencer_education'
|
|
1784
|
-
| 'ai_content_creator_education'
|
|
1785
|
-
| 'web_development_education'
|
|
1786
|
-
| 'ai_ml_education'
|
|
1787
|
-
| 'data_science_education'
|
|
1788
|
-
| 'cybersecurity_education'
|
|
1789
|
-
| 'cloud_computing_education'
|
|
1790
|
-
| 'blockchain_education'
|
|
1791
|
-
| 'no_code_education'
|
|
1792
|
-
| 'automation_education'
|
|
1793
|
-
| 'game_development_education'
|
|
1794
|
-
| 'prompt_engineering'
|
|
1795
|
-
| 'python_programming'
|
|
1796
|
-
| 'javascript_programming'
|
|
1797
|
-
| 'react_development'
|
|
1798
|
-
| 'database_engineering'
|
|
1799
|
-
| 'aws_certification'
|
|
1800
|
-
| 'data_engineering'
|
|
1801
|
-
| 'robotics_education'
|
|
1802
|
-
| 'vr_ar_development'
|
|
1803
|
-
| 'linux_sysadmin'
|
|
1804
|
-
| 'wordpress_development'
|
|
1805
|
-
| 'ai_agent_building'
|
|
1806
|
-
| 'real_estate_wholesaling'
|
|
1807
|
-
| 'house_flipping'
|
|
1808
|
-
| 'property_development'
|
|
1809
|
-
| 'rental_property'
|
|
1810
|
-
| 'airbnb_str'
|
|
1811
|
-
| 'commercial_real_estate'
|
|
1812
|
-
| 'land_investing'
|
|
1813
|
-
| 'section_8_housing'
|
|
1814
|
-
| 'mobile_home_investing'
|
|
1815
|
-
| 'multifamily_investing'
|
|
1816
|
-
| 'self_storage_investing'
|
|
1817
|
-
| 'property_management_education'
|
|
1818
|
-
| 'vacation_rental_management'
|
|
1819
|
-
| 'credit_repair_education'
|
|
1820
|
-
| 'budgeting_coaching'
|
|
1821
|
-
| 'tax_strategy_education'
|
|
1822
|
-
| 'wealth_building'
|
|
1823
|
-
| 'student_loan_strategy'
|
|
1824
|
-
| 'credit_card_optimization'
|
|
1825
|
-
| 'career_coaching'
|
|
1826
|
-
| 'executive_coaching'
|
|
1827
|
-
| 'management_coaching'
|
|
1828
|
-
| 'tech_career_coaching'
|
|
1829
|
-
| 'medical_career_coaching'
|
|
1830
|
-
| 'trade_skills_education'
|
|
1831
|
-
| 'va_training'
|
|
1832
|
-
| 'bookkeeping_education'
|
|
1833
|
-
| 'data_career_coaching'
|
|
1834
|
-
| 'cybersecurity_career'
|
|
1835
|
-
| 'consulting_career'
|
|
1836
|
-
| 'investment_banking_career'
|
|
1837
|
-
| 'law_career_coaching'
|
|
1838
|
-
| 'nursing_career_coaching'
|
|
1839
|
-
| 'teaching_career_coaching'
|
|
1840
|
-
| 'personal_branding_career'
|
|
1841
|
-
| 'mens_dating_coaching'
|
|
1842
|
-
| 'womens_dating_coaching'
|
|
1843
|
-
| 'relationship_coaching'
|
|
1844
|
-
| 'marriage_coaching'
|
|
1845
|
-
| 'communication_coaching'
|
|
1846
|
-
| 'masculinity_coaching'
|
|
1847
|
-
| 'femininity_coaching'
|
|
1848
|
-
| 'breakup_recovery'
|
|
1849
|
-
| 'manifestation_coaching'
|
|
1850
|
-
| 'astrology_coaching'
|
|
1851
|
-
| 'energy_healing'
|
|
1852
|
-
| 'spiritual_coaching'
|
|
1853
|
-
| 'faith_based_coaching'
|
|
1854
|
-
| 'psychic_development'
|
|
1855
|
-
| 'numerology_coaching'
|
|
1856
|
-
| 'chakra_healing'
|
|
1857
|
-
| 'shamanic_healing'
|
|
1858
|
-
| 'biblical_coaching'
|
|
1859
|
-
| 'islamic_coaching'
|
|
1860
|
-
| 'productivity_coaching'
|
|
1861
|
-
| 'public_speaking_coaching'
|
|
1862
|
-
| 'mindset_coaching'
|
|
1863
|
-
| 'stoicism_philosophy'
|
|
1864
|
-
| 'mens_self_improvement'
|
|
1865
|
-
| 'womens_self_improvement'
|
|
1866
|
-
| 'leadership_development'
|
|
1867
|
-
| 'anger_management'
|
|
1868
|
-
| 'neurolinguistic_programming'
|
|
1869
|
-
| 'appearance_and_grooming_coaching'
|
|
1870
|
-
| 'amazon_kdp'
|
|
1871
|
-
| 'self_publishing'
|
|
1872
|
-
| 'audiobook_publishing'
|
|
1873
|
-
| 'course_creation'
|
|
1874
|
-
| 'digital_product_creation'
|
|
1875
|
-
| 'ghostwriting_business'
|
|
1876
|
-
| 'template_creation'
|
|
1877
|
-
| 'ai_book_publishing'
|
|
1878
|
-
| 'language_learning'
|
|
1879
|
-
| 'tutoring'
|
|
1880
|
-
| 'college_admissions_coaching'
|
|
1881
|
-
| 'cpa_exam_prep'
|
|
1882
|
-
| 'bar_exam_prep'
|
|
1883
|
-
| 'real_estate_exam_prep'
|
|
1884
|
-
| 'medical_board_prep'
|
|
1885
|
-
| 'pmp_certification_prep'
|
|
1886
|
-
| 'aws_certification_prep'
|
|
1887
|
-
| 'comptia_certification'
|
|
1888
|
-
| 'ap_exam_prep'
|
|
1889
|
-
| 'graduate_school_prep'
|
|
1890
|
-
| 'scholarship_coaching'
|
|
1891
|
-
| 'homeschool_education'
|
|
1892
|
-
| 'stem_education'
|
|
1893
|
-
| 'financial_certification'
|
|
1894
|
-
| 'coding_bootcamp_prep'
|
|
1895
|
-
| 'cooking_culinary'
|
|
1896
|
-
| 'travel_coaching'
|
|
1897
|
-
| 'parenting_coaching'
|
|
1898
|
-
| 'pet_training'
|
|
1899
|
-
| 'gardening_education'
|
|
1900
|
-
| 'diy_crafts'
|
|
1901
|
-
| 'survival_prepping'
|
|
1902
|
-
| 'baking_pastry'
|
|
1903
|
-
| 'wine_sommelier'
|
|
1904
|
-
| 'beer_brewing'
|
|
1905
|
-
| 'mixology_bartending'
|
|
1906
|
-
| 'woodworking'
|
|
1907
|
-
| 'pottery_ceramics'
|
|
1908
|
-
| 'knitting_crocheting'
|
|
1909
|
-
| 'jewelry_making'
|
|
1910
|
-
| 'aquarium_fishkeeping'
|
|
1911
|
-
| 'bird_watching'
|
|
1912
|
-
| 'astronomy_education'
|
|
1913
|
-
| 'magic_illusion'
|
|
1914
|
-
| 'car_restoration'
|
|
1915
|
-
| 'motorcycle_riding'
|
|
1916
|
-
| 'sailing_boating'
|
|
1917
|
-
| 'scuba_diving'
|
|
1918
|
-
| 'rock_climbing'
|
|
1919
|
-
| 'skiing_snowboarding'
|
|
1920
|
-
| 'surfing_education'
|
|
1921
|
-
| 'homesteading'
|
|
1922
|
-
| 'tiny_house_living'
|
|
1923
|
-
| 'van_life'
|
|
1924
|
-
| 'fashion_styling'
|
|
1925
|
-
| 'floral_design'
|
|
1926
|
-
| 'travel_planning_service'
|
|
1927
|
-
| 'collectibles_coaching'
|
|
1928
|
-
| 'esports_coaching'
|
|
1929
|
-
| 'game_specific_coaching'
|
|
1930
|
-
| 'legal_education'
|
|
1931
|
-
| 'music_theory'
|
|
1932
|
-
| 'music_business'
|
|
1933
|
-
| 'acting_coaching'
|
|
1934
|
-
| 'dance_instruction'
|
|
1935
|
-
| 'voice_acting'
|
|
1936
|
-
| 'english_coaching'
|
|
1937
|
-
| 'spanish_coaching'
|
|
1938
|
-
| 'mandarin_coaching'
|
|
1939
|
-
| 'french_coaching'
|
|
1940
|
-
| 'german_coaching'
|
|
1941
|
-
| 'japanese_coaching'
|
|
1942
|
-
| 'korean_coaching'
|
|
1943
|
-
| 'arabic_coaching'
|
|
1944
|
-
| 'sign_language_education'
|
|
1945
|
-
| 'accent_reduction'
|
|
1946
|
-
| 'business_english'
|
|
1947
|
-
| 'smma'
|
|
1948
|
-
| 'performance_marketing_agency'
|
|
1949
|
-
| 'seo_agency'
|
|
1950
|
-
| 'content_marketing_agency'
|
|
1951
|
-
| 'email_marketing_agency'
|
|
1952
|
-
| 'influencer_marketing_agency'
|
|
1953
|
-
| 'pr_agency'
|
|
1954
|
-
| 'branding_agency'
|
|
1955
|
-
| 'video_marketing_agency'
|
|
1956
|
-
| 'amazon_marketing_agency'
|
|
1957
|
-
| 'podcast_marketing_agency'
|
|
1958
|
-
| 'tiktok_agency'
|
|
1959
|
-
| 'linkedin_agency'
|
|
1960
|
-
| 'local_marketing_agency'
|
|
1961
|
-
| 'dental_marketing_agency'
|
|
1962
|
-
| 'real_estate_marketing_agency'
|
|
1963
|
-
| 'restaurant_marketing_agency'
|
|
1964
|
-
| 'ecommerce_marketing_agency'
|
|
1965
|
-
| 'b2b_marketing_agency'
|
|
1966
|
-
| 'growth_marketing_agency'
|
|
1967
|
-
| 'affiliate_management_agency'
|
|
1968
|
-
| 'conversion_optimization_agency'
|
|
1969
|
-
| 'event_marketing_agency'
|
|
1970
|
-
| 'click_farm_service'
|
|
1971
|
-
| 'data_scraping_service'
|
|
1972
|
-
| 'lead_list_sales'
|
|
1973
|
-
| 'social_media_bot_farm'
|
|
1974
|
-
| 'lead_generation_agency'
|
|
1975
|
-
| 'cold_email_agency'
|
|
1976
|
-
| 'cold_calling_agency'
|
|
1977
|
-
| 'sales_outsourcing'
|
|
1978
|
-
| 'crm_implementation'
|
|
1979
|
-
| 'appointment_setting_agency'
|
|
1980
|
-
| 'sales_training_agency'
|
|
1981
|
-
| 'revenue_operations_agency'
|
|
1982
|
-
| 'inbound_teleservices'
|
|
1983
|
-
| 'outbound_telemarketing'
|
|
1984
|
-
| 'ai_chatbot_agency'
|
|
1985
|
-
| 'ai_automation_agency'
|
|
1986
|
-
| 'ai_consulting'
|
|
1987
|
-
| 'workflow_automation_agency'
|
|
1988
|
-
| 'data_analytics_agency'
|
|
1989
|
-
| 'ai_voice_agent_agency'
|
|
1990
|
-
| 'ai_content_agency'
|
|
1991
|
-
| 'machine_learning_agency'
|
|
1992
|
-
| 'computer_vision_agency'
|
|
1993
|
-
| 'web_design_agency'
|
|
1994
|
-
| 'graphic_design_agency'
|
|
1995
|
-
| 'ui_ux_agency'
|
|
1996
|
-
| 'motion_design_agency'
|
|
1997
|
-
| 'product_design_agency'
|
|
1998
|
-
| 'logo_design_agency'
|
|
1999
|
-
| 'presentation_design_agency'
|
|
2000
|
-
| '3d_visualization_agency'
|
|
2001
|
-
| 'fashion_design_agency'
|
|
2002
|
-
| 'web_development_agency'
|
|
2003
|
-
| 'mobile_app_agency'
|
|
2004
|
-
| 'saas_development_agency'
|
|
2005
|
-
| 'ecommerce_development'
|
|
2006
|
-
| 'blockchain_development_agency'
|
|
2007
|
-
| 'game_development_agency'
|
|
2008
|
-
| 'devops_agency'
|
|
2009
|
-
| 'ai_development_agency'
|
|
2010
|
-
| 'wordpress_agency'
|
|
2011
|
-
| 'shopify_agency'
|
|
2012
|
-
| 'api_integration_agency'
|
|
2013
|
-
| 'cybersecurity_agency'
|
|
2014
|
-
| 'data_engineering_agency'
|
|
2015
|
-
| 'vr_ar_development_agency'
|
|
2016
|
-
| 'hacking_tools_malware'
|
|
2017
|
-
| 'stalkerware_monitoring'
|
|
2018
|
-
| 'tech_recruiting_agency'
|
|
2019
|
-
| 'executive_recruiting'
|
|
2020
|
-
| 'staffing_agency'
|
|
2021
|
-
| 'remote_staffing'
|
|
2022
|
-
| 'healthcare_recruiting'
|
|
2023
|
-
| 'va_placement_agency'
|
|
2024
|
-
| 'sales_recruiting'
|
|
2025
|
-
| 'creative_recruiting'
|
|
2026
|
-
| 'finance_recruiting'
|
|
2027
|
-
| 'legal_recruiting'
|
|
2028
|
-
| 'construction_staffing'
|
|
2029
|
-
| 'hospitality_staffing'
|
|
2030
|
-
| 'customer_support_outsourcing'
|
|
2031
|
-
| 'live_chat_agency'
|
|
2032
|
-
| 'technical_support_agency'
|
|
2033
|
-
| 'call_center_agency'
|
|
2034
|
-
| 'multilingual_support_agency'
|
|
2035
|
-
| 'community_management_agency'
|
|
2036
|
-
| 'video_clipping_agency'
|
|
2037
|
-
| 'video_production_agency'
|
|
2038
|
-
| 'ugc_agency'
|
|
2039
|
-
| 'content_writing_agency'
|
|
2040
|
-
| 'translation_agency'
|
|
2041
|
-
| 'social_media_management'
|
|
2042
|
-
| 'ghostwriting_agency'
|
|
2043
|
-
| 'podcast_editing_agency'
|
|
2044
|
-
| 'thumbnail_design_agency'
|
|
2045
|
-
| 'scriptwriting_agency'
|
|
2046
|
-
| 'seo_content_agency'
|
|
2047
|
-
| 'technical_writing_agency'
|
|
2048
|
-
| 'management_consulting'
|
|
2049
|
-
| 'financial_consulting'
|
|
2050
|
-
| 'hr_consulting'
|
|
2051
|
-
| 'operations_consulting'
|
|
2052
|
-
| 'it_consulting'
|
|
2053
|
-
| 'sustainability_consulting'
|
|
2054
|
-
| 'legal_consulting'
|
|
2055
|
-
| 'compliance_consulting'
|
|
2056
|
-
| 'supply_chain_consulting'
|
|
2057
|
-
| 'change_management_consulting'
|
|
2058
|
-
| 'digital_transformation_consulting'
|
|
2059
|
-
| 'healthcare_consulting'
|
|
2060
|
-
| 'real_estate_consulting'
|
|
2061
|
-
| 'franchise_consulting'
|
|
2062
|
-
| 'export_trade_consulting'
|
|
2063
|
-
| 'nonprofit_consulting'
|
|
2064
|
-
| 'education_consulting'
|
|
2065
|
-
| 'cannabis_consulting'
|
|
2066
|
-
| 'restaurant_consulting'
|
|
2067
|
-
| 'm_and_a_consulting'
|
|
2068
|
-
| 'pricing_strategy_consulting'
|
|
2069
|
-
| 'brand_strategy_consulting'
|
|
2070
|
-
| 'saas_marketing_consulting'
|
|
2071
|
-
| 'done_for_you_services'
|
|
2072
|
-
| 'prop_firm_passing_service'
|
|
2073
|
-
| 'trading_account_management'
|
|
2074
|
-
| 'done_for_you_trading'
|
|
2075
|
-
| 'accounting_bookkeeping'
|
|
2076
|
-
| 'tax_preparation'
|
|
2077
|
-
| 'legal_services'
|
|
2078
|
-
| 'notary_services'
|
|
2079
|
-
| 'insurance_brokerage'
|
|
2080
|
-
| 'financial_planning_service'
|
|
2081
|
-
| 'real_estate_services'
|
|
2082
|
-
| 'property_management'
|
|
2083
|
-
| 'mortgage_brokerage'
|
|
2084
|
-
| 'immigration_services'
|
|
2085
|
-
| 'patent_trademark_services'
|
|
2086
|
-
| 'business_formation_services'
|
|
2087
|
-
| 'shell_company_formation'
|
|
2088
|
-
| 'payroll_services'
|
|
2089
|
-
| 'audit_services'
|
|
2090
|
-
| 'forensic_accounting'
|
|
2091
|
-
| 'actuarial_services'
|
|
2092
|
-
| 'appraisal_services'
|
|
2093
|
-
| 'mediation_arbitration'
|
|
2094
|
-
| 'background_check_services'
|
|
2095
|
-
| 'bail_bond_services'
|
|
2096
|
-
| 'bnpl_service'
|
|
2097
|
-
| 'check_cashing_service'
|
|
2098
|
-
| 'cloud_mining_schemes'
|
|
2099
|
-
| 'consumer_lending'
|
|
2100
|
-
| 'credit_repair_service'
|
|
2101
|
-
| 'crowdfunding_platform'
|
|
2102
|
-
| 'crypto_exchange_brokerage'
|
|
2103
|
-
| 'debt_collection_agency'
|
|
2104
|
-
| 'debt_relief_settlement'
|
|
2105
|
-
| 'document_falsification'
|
|
2106
|
-
| 'escrow_service'
|
|
2107
|
-
| 'essay_mill_paper_mill'
|
|
2108
|
-
| 'fake_id_services'
|
|
2109
|
-
| 'fake_reference_services'
|
|
2110
|
-
| 'foreign_exchange_service'
|
|
2111
|
-
| 'government_service_facilitation'
|
|
2112
|
-
| 'immigration_services_unlicensed'
|
|
2113
|
-
| 'licensed_legal_services'
|
|
2114
|
-
| 'payment_facilitation'
|
|
2115
|
-
| 'personalized_tax_services'
|
|
2116
|
-
| 'prediction_market_exchange'
|
|
2117
|
-
| 'private_investigation'
|
|
2118
|
-
| 'repossession_services'
|
|
2119
|
-
| 'stablecoin_issuance'
|
|
2120
|
-
| 'standalone_tipping'
|
|
2121
|
-
| 'token_sales_ico'
|
|
2122
|
-
| 'tokenized_rwa'
|
|
2123
|
-
| 'unlicensed_legal_services'
|
|
2124
|
-
| 'yield_staking_products'
|
|
2125
|
-
| 'photography_service'
|
|
2126
|
-
| 'videography_service'
|
|
2127
|
-
| 'music_production_service'
|
|
2128
|
-
| 'voice_over_service'
|
|
2129
|
-
| 'event_photography'
|
|
2130
|
-
| 'drone_services'
|
|
2131
|
-
| 'commercial_photography'
|
|
2132
|
-
| 'portrait_photography_service'
|
|
2133
|
-
| 'real_estate_photography'
|
|
2134
|
-
| 'food_photography_service'
|
|
2135
|
-
| 'live_event_production'
|
|
2136
|
-
| 'podcast_production_service'
|
|
2137
|
-
| 'record_label'
|
|
2138
|
-
| 'book_publishing_house'
|
|
2139
|
-
| 'news_media_outlet'
|
|
2140
|
-
| 'radio_broadcasting'
|
|
2141
|
-
| 'tv_production_company'
|
|
2142
|
-
| 'film_studio'
|
|
2143
|
-
| 'magazine_publisher'
|
|
2144
|
-
| 'music_licensing_agency'
|
|
2145
|
-
| 'talent_management_agency'
|
|
2146
|
-
| 'advertising_network'
|
|
2147
|
-
| 'ad_tech_platform'
|
|
2148
|
-
| 'cleaning_service'
|
|
2149
|
-
| 'landscaping_service'
|
|
2150
|
-
| 'plumbing_service'
|
|
2151
|
-
| 'electrical_service'
|
|
2152
|
-
| 'hvac_service'
|
|
2153
|
-
| 'roofing_service'
|
|
2154
|
-
| 'painting_service'
|
|
2155
|
-
| 'moving_service'
|
|
2156
|
-
| 'handyman_service'
|
|
2157
|
-
| 'pest_control'
|
|
2158
|
-
| 'pool_service'
|
|
2159
|
-
| 'solar_installation'
|
|
2160
|
-
| 'home_renovation'
|
|
2161
|
-
| 'pressure_washing'
|
|
2162
|
-
| 'junk_removal'
|
|
2163
|
-
| 'garage_door_service'
|
|
2164
|
-
| 'fencing_service'
|
|
2165
|
-
| 'concrete_masonry'
|
|
2166
|
-
| 'tree_service'
|
|
2167
|
-
| 'window_cleaning'
|
|
2168
|
-
| 'gutter_service'
|
|
2169
|
-
| 'flooring_service'
|
|
2170
|
-
| 'cabinet_countertop'
|
|
2171
|
-
| 'home_inspection'
|
|
2172
|
-
| 'septic_service'
|
|
2173
|
-
| 'waterproofing_service'
|
|
2174
|
-
| 'insulation_service'
|
|
2175
|
-
| 'chimney_service'
|
|
2176
|
-
| 'locksmith_service'
|
|
2177
|
-
| 'glass_window_service'
|
|
2178
|
-
| 'epoxy_coating'
|
|
2179
|
-
| 'private_security_guard_service'
|
|
2180
|
-
| 'armored_car_transport'
|
|
2181
|
-
| 'executive_protection_bodyguard'
|
|
2182
|
-
| 'event_security_service'
|
|
2183
|
-
| 'alarm_system_installation'
|
|
2184
|
-
| 'cctv_installation'
|
|
2185
|
-
| 'private_investigation_agency'
|
|
2186
|
-
| 'background_check_provider'
|
|
2187
|
-
| 'locksmith_commercial'
|
|
2188
|
-
| 'bounty_hunter_bail_enforcement'
|
|
2189
|
-
| 'personal_styling'
|
|
2190
|
-
| 'personal_chef'
|
|
2191
|
-
| 'personal_assistant_service'
|
|
2192
|
-
| 'tutoring_service'
|
|
2193
|
-
| 'pet_services'
|
|
2194
|
-
| 'wedding_planning'
|
|
2195
|
-
| 'concierge_service'
|
|
2196
|
-
| 'personal_training_service'
|
|
2197
|
-
| 'nanny_service'
|
|
2198
|
-
| 'elder_care_service'
|
|
2199
|
-
| 'errand_service'
|
|
2200
|
-
| 'life_organization'
|
|
2201
|
-
| 'relocation_service'
|
|
2202
|
-
| 'adult_dating_services'
|
|
2203
|
-
| 'escort_services'
|
|
2204
|
-
| 'hotel_accommodation_bookings'
|
|
2205
|
-
| 'mail_order_spouse'
|
|
2206
|
-
| 'psychic_fortune_telling'
|
|
2207
|
-
| 'timeshare_sales'
|
|
2208
|
-
| 'freight_brokerage'
|
|
2209
|
-
| 'courier_service'
|
|
2210
|
-
| 'warehousing_service'
|
|
2211
|
-
| 'last_mile_delivery'
|
|
2212
|
-
| 'auto_transport'
|
|
2213
|
-
| 'international_shipping'
|
|
2214
|
-
| 'cold_chain_logistics'
|
|
2215
|
-
| 'commercial_airline_tickets'
|
|
2216
|
-
| 'cruise_line_bookings'
|
|
2217
|
-
| 'contract_manufacturing'
|
|
2218
|
-
| 'cnc_machining_service'
|
|
2219
|
-
| '3d_printing_service_commercial'
|
|
2220
|
-
| 'plastic_injection_molding'
|
|
2221
|
-
| 'metal_fabrication'
|
|
2222
|
-
| 'pcba_assembly'
|
|
2223
|
-
| 'chemical_manufacturing'
|
|
2224
|
-
| 'textile_manufacturing'
|
|
2225
|
-
| 'food_processing_facility'
|
|
2226
|
-
| 'packaging_manufacturing'
|
|
2227
|
-
| 'industrial_automation_integrator'
|
|
2228
|
-
| 'mining_and_extraction'
|
|
2229
|
-
| 'oil_and_gas_services'
|
|
2230
|
-
| 'renewable_energy_generation'
|
|
2231
|
-
| 'waste_management_recycling'
|
|
2232
|
-
| 'hazardous_waste_disposal'
|
|
2233
|
-
| 'aerospace_defense_contracting'
|
|
2234
|
-
| 'personal_training_studio'
|
|
2235
|
-
| 'nutrition_consulting'
|
|
2236
|
-
| 'mental_health_counseling'
|
|
2237
|
-
| 'physical_therapy_service'
|
|
2238
|
-
| 'occupational_therapy_service'
|
|
2239
|
-
| 'speech_therapy_service'
|
|
2240
|
-
| 'chiropractic_service'
|
|
2241
|
-
| 'acupuncture_service'
|
|
2242
|
-
| 'massage_therapy_service'
|
|
2243
|
-
| 'midwifery_doula'
|
|
2244
|
-
| 'lactation_consulting'
|
|
2245
|
-
| 'dietitian_service'
|
|
2246
|
-
| 'addiction_recovery_services'
|
|
2247
|
-
| 'dtc_lab_testing'
|
|
2248
|
-
| 'iv_therapy_infusion'
|
|
2249
|
-
| 'medspa_aesthetic_services'
|
|
2250
|
-
| 'prescription_delivery_services'
|
|
2251
|
-
| 'registered_dietitian_services'
|
|
2252
|
-
| 'unlicensed_therapy_counseling'
|
|
2253
|
-
| 'streetwear'
|
|
2254
|
-
| 'athleisure'
|
|
2255
|
-
| 'luxury_fashion'
|
|
2256
|
-
| 'kids_clothing'
|
|
2257
|
-
| 'custom_apparel'
|
|
2258
|
-
| 'workwear'
|
|
2259
|
-
| 'swimwear'
|
|
2260
|
-
| 'lingerie_intimates'
|
|
2261
|
-
| 'vintage_clothing'
|
|
2262
|
-
| 'plus_size_fashion'
|
|
2263
|
-
| 'maternity_clothing'
|
|
2264
|
-
| 'sleepwear_loungewear'
|
|
2265
|
-
| 'denim_brand'
|
|
2266
|
-
| 'outerwear_jackets'
|
|
2267
|
-
| 'socks_hosiery'
|
|
2268
|
-
| 'costumes_cosplay'
|
|
2269
|
-
| 'scrubs_medical_apparel'
|
|
2270
|
-
| 'dance_performance_wear'
|
|
2271
|
-
| 'hunting_camo_apparel'
|
|
2272
|
-
| 'casual_everyday_clothing'
|
|
2273
|
-
| 'protein_supplements'
|
|
2274
|
-
| 'vitamins_minerals'
|
|
2275
|
-
| 'pre_workout'
|
|
2276
|
-
| 'nootropics'
|
|
2277
|
-
| 'herbal_supplements'
|
|
2278
|
-
| 'weight_management_supplements'
|
|
2279
|
-
| 'gut_health'
|
|
2280
|
-
| 'cbd_products'
|
|
2281
|
-
| 'mushroom_supplements'
|
|
2282
|
-
| 'collagen_supplements'
|
|
2283
|
-
| 'testosterone_boosters'
|
|
2284
|
-
| 'sleep_supplements'
|
|
2285
|
-
| 'immune_support'
|
|
2286
|
-
| 'joint_bone_health'
|
|
2287
|
-
| 'greens_powder'
|
|
2288
|
-
| 'creatine_supplements'
|
|
2289
|
-
| 'electrolyte_hydration'
|
|
2290
|
-
| 'prenatal_supplements'
|
|
2291
|
-
| 'kids_supplements'
|
|
2292
|
-
| 'pet_supplements'
|
|
2293
|
-
| 'ayurvedic_supplements'
|
|
2294
|
-
| 'keto_supplements'
|
|
2295
|
-
| 'cannabis_thc_products'
|
|
2296
|
-
| 'cbd_hemp_products_compliant'
|
|
2297
|
-
| 'delta8_thc_products'
|
|
2298
|
-
| 'dietary_supplements'
|
|
2299
|
-
| 'drug_precursor_chemicals'
|
|
2300
|
-
| 'illegal_drugs'
|
|
2301
|
-
| 'kratom_kava_products'
|
|
2302
|
-
| 'medical_treatment_claims_product'
|
|
2303
|
-
| 'nutraceutical_products'
|
|
2304
|
-
| 'otc_medication_sales'
|
|
2305
|
-
| 'performance_enhancing_drugs'
|
|
2306
|
-
| 'research_chemicals_dangerous'
|
|
2307
|
-
| 'research_peptides'
|
|
2308
|
-
| 'sexual_enhancement_products'
|
|
2309
|
-
| 'tobacco_products'
|
|
2310
|
-
| 'unlicensed_rx_sales'
|
|
2311
|
-
| 'skincare'
|
|
2312
|
-
| 'haircare'
|
|
2313
|
-
| 'cosmetics_makeup'
|
|
2314
|
-
| 'mens_grooming'
|
|
2315
|
-
| 'fragrance'
|
|
2316
|
-
| 'oral_care'
|
|
2317
|
-
| 'sunscreen_spf'
|
|
2318
|
-
| 'hair_growth_products'
|
|
2319
|
-
| 'body_care'
|
|
2320
|
-
| 'deodorant'
|
|
2321
|
-
| 'lip_care'
|
|
2322
|
-
| 'acne_treatment'
|
|
2323
|
-
| 'men_skincare'
|
|
2324
|
-
| 'baby_skincare'
|
|
2325
|
-
| 'tattoo_aftercare'
|
|
2326
|
-
| 'intimate_care'
|
|
2327
|
-
| 'home_gym_equipment'
|
|
2328
|
-
| 'yoga_equipment'
|
|
2329
|
-
| 'combat_sports_gear'
|
|
2330
|
-
| 'outdoor_fitness_gear'
|
|
2331
|
-
| 'wearable_fitness'
|
|
2332
|
-
| 'recovery_equipment'
|
|
2333
|
-
| 'weightlifting_equipment'
|
|
2334
|
-
| 'cardio_equipment'
|
|
2335
|
-
| 'gymnastics_equipment'
|
|
2336
|
-
| 'swimming_gear'
|
|
2337
|
-
| 'jump_rope_equipment'
|
|
2338
|
-
| 'grip_strength_tools'
|
|
2339
|
-
| 'sauna_cold_plunge'
|
|
2340
|
-
| 'posture_correctors'
|
|
2341
|
-
| 'jewelry'
|
|
2342
|
-
| 'sunglasses_eyewear'
|
|
2343
|
-
| 'bags_wallets'
|
|
2344
|
-
| 'hats_headwear'
|
|
2345
|
-
| 'phone_accessories'
|
|
2346
|
-
| 'travel_accessories'
|
|
2347
|
-
| 'scarves_wraps'
|
|
2348
|
-
| 'belts'
|
|
2349
|
-
| 'hair_accessories'
|
|
2350
|
-
| 'tech_accessories'
|
|
2351
|
-
| 'keychains_charms'
|
|
2352
|
-
| 'custom_engraved_accessories'
|
|
2353
|
-
| 'cannabis_accessories_non_drug'
|
|
2354
|
-
| 'drug_paraphernalia'
|
|
2355
|
-
| 'high_value_goods_over_500'
|
|
2356
|
-
| 'precious_metals_stones'
|
|
2357
|
-
| 'replica_counterfeit_goods'
|
|
2358
|
-
| 'home_decor'
|
|
2359
|
-
| 'candles_scents'
|
|
2360
|
-
| 'kitchenware'
|
|
2361
|
-
| 'bedding_linens'
|
|
2362
|
-
| 'smart_home'
|
|
2363
|
-
| 'cleaning_products'
|
|
2364
|
-
| 'outdoor_furniture'
|
|
2365
|
-
| 'organization_storage'
|
|
2366
|
-
| 'wall_art_prints'
|
|
2367
|
-
| 'rugs_carpets'
|
|
2368
|
-
| 'lighting_fixtures'
|
|
2369
|
-
| 'planters_garden_decor'
|
|
2370
|
-
| 'bathroom_accessories'
|
|
2371
|
-
| 'luxury_home_goods'
|
|
2372
|
-
| 'seasonal_holiday_decor'
|
|
2373
|
-
| 'pet_home_products'
|
|
2374
|
-
| 'home_fragrance_diffusers'
|
|
2375
|
-
| 'hazardous_chemicals_b2c'
|
|
2376
|
-
| 'pre_orders_delayed_delivery'
|
|
2377
|
-
| 'audio_equipment'
|
|
2378
|
-
| 'camera_equipment'
|
|
2379
|
-
| 'gaming_hardware'
|
|
2380
|
-
| 'drones_robotics'
|
|
2381
|
-
| 'ev_accessories'
|
|
2382
|
-
| 'charging_power'
|
|
2383
|
-
| 'smart_wearables'
|
|
2384
|
-
| 'home_security_devices'
|
|
2385
|
-
| '3d_printers'
|
|
2386
|
-
| 'projectors_displays'
|
|
2387
|
-
| 'streaming_devices'
|
|
2388
|
-
| 'vr_headsets'
|
|
2389
|
-
| 'e_readers'
|
|
2390
|
-
| 'portable_tech'
|
|
2391
|
-
| 'hardware_wallets'
|
|
2392
|
-
| 'regulated_medical_devices'
|
|
2393
|
-
| 'signal_jamming_devices'
|
|
2394
|
-
| 'spy_cameras_hidden_recording'
|
|
2395
|
-
| 'specialty_coffee_tea'
|
|
2396
|
-
| 'health_food'
|
|
2397
|
-
| 'snacks_treats'
|
|
2398
|
-
| 'sauces_condiments'
|
|
2399
|
-
| 'alcohol_spirits'
|
|
2400
|
-
| 'meal_kits'
|
|
2401
|
-
| 'baked_goods'
|
|
2402
|
-
| 'beverages'
|
|
2403
|
-
| 'pet_food_treats'
|
|
2404
|
-
| 'protein_bars_snacks'
|
|
2405
|
-
| 'jerky_meat_snacks'
|
|
2406
|
-
| 'chocolate_confections'
|
|
2407
|
-
| 'honey_sweeteners'
|
|
2408
|
-
| 'olive_oil_vinegar'
|
|
2409
|
-
| 'hot_sauce'
|
|
2410
|
-
| 'dried_fruit_nuts'
|
|
2411
|
-
| 'baby_food'
|
|
2412
|
-
| 'plant_based_food'
|
|
2413
|
-
| 'gluten_free_food'
|
|
2414
|
-
| 'keto_food_products'
|
|
2415
|
-
| 'subscription_food_box'
|
|
2416
|
-
| 'kombucha_fermented'
|
|
2417
|
-
| 'alcohol_sales'
|
|
2418
|
-
| 'baby_products'
|
|
2419
|
-
| 'kids_toys'
|
|
2420
|
-
| 'kids_educational'
|
|
2421
|
-
| 'baby_clothing_accessories'
|
|
2422
|
-
| 'nursery_decor'
|
|
2423
|
-
| 'kids_outdoor_play'
|
|
2424
|
-
| 'kids_books'
|
|
2425
|
-
| 'baby_safety_products'
|
|
2426
|
-
| 'kids_arts_crafts'
|
|
2427
|
-
| 'camping_hiking'
|
|
2428
|
-
| 'fishing_gear'
|
|
2429
|
-
| 'hunting_gear'
|
|
2430
|
-
| 'cycling_gear'
|
|
2431
|
-
| 'water_sports_gear'
|
|
2432
|
-
| 'golf_equipment'
|
|
2433
|
-
| 'snow_sports_gear'
|
|
2434
|
-
| 'climbing_gear'
|
|
2435
|
-
| 'archery_equipment'
|
|
2436
|
-
| 'skateboarding_gear'
|
|
2437
|
-
| 'pickleball_equipment'
|
|
2438
|
-
| 'tennis_equipment'
|
|
2439
|
-
| 'equestrian_gear'
|
|
2440
|
-
| 'tactical_gear'
|
|
2441
|
-
| 'overlanding_gear'
|
|
2442
|
-
| 'explosives_fireworks'
|
|
2443
|
-
| 'firearms_sales'
|
|
2444
|
-
| 'self_defense_products'
|
|
2445
|
-
| 'weapon_components'
|
|
2446
|
-
| 'craft_kits'
|
|
2447
|
-
| 'sewing_textiles'
|
|
2448
|
-
| 'stationery'
|
|
2449
|
-
| 'scrapbooking_supplies'
|
|
2450
|
-
| 'beading_jewelry_supplies'
|
|
2451
|
-
| 'pottery_supplies'
|
|
2452
|
-
| 'printmaking_supplies'
|
|
2453
|
-
| 'car_accessories'
|
|
2454
|
-
| 'detailing_products'
|
|
2455
|
-
| 'motorcycle_gear'
|
|
2456
|
-
| 'truck_accessories'
|
|
2457
|
-
| 'off_road_parts'
|
|
2458
|
-
| 'car_audio_electronics'
|
|
2459
|
-
| 'performance_parts'
|
|
2460
|
-
| 'car_care_products'
|
|
2461
|
-
| 'ev_charging_accessories'
|
|
2462
|
-
| 'auto_repair_service'
|
|
2463
|
-
| 'auto_body_shop'
|
|
2464
|
-
| 'car_dealership'
|
|
2465
|
-
| 'car_wash'
|
|
2466
|
-
| 'tire_shop'
|
|
2467
|
-
| 'oil_change_shop'
|
|
2468
|
-
| 'auto_parts_store'
|
|
2469
|
-
| 'motorcycle_shop'
|
|
2470
|
-
| 'ev_charging_station'
|
|
2471
|
-
| 'transmission_shop'
|
|
2472
|
-
| 'muffler_exhaust_shop'
|
|
2473
|
-
| 'auto_glass_shop'
|
|
2474
|
-
| 'auto_upholstery_shop'
|
|
2475
|
-
| 'car_audio_shop'
|
|
2476
|
-
| 'smog_emissions_shop'
|
|
2477
|
-
| 'truck_repair_shop'
|
|
2478
|
-
| 'rv_repair_shop'
|
|
2479
|
-
| 'boat_repair_shop'
|
|
2480
|
-
| 'used_car_lot'
|
|
2481
|
-
| 'auto_auction'
|
|
2482
|
-
| 'dog_products'
|
|
2483
|
-
| 'cat_products'
|
|
2484
|
-
| 'aquarium_supplies'
|
|
2485
|
-
| 'bird_supplies'
|
|
2486
|
-
| 'reptile_supplies'
|
|
2487
|
-
| 'horse_supplies'
|
|
2488
|
-
| 'pet_apparel'
|
|
2489
|
-
| 'pet_tech'
|
|
2490
|
-
| 'pet_grooming_products'
|
|
2491
|
-
| 'hand_tools'
|
|
2492
|
-
| 'power_tools_and_accessories'
|
|
2493
|
-
| 'hardware_and_fasteners'
|
|
2494
|
-
| 'workshop_equipment_and_storage'
|
|
2495
|
-
| 'safety_and_work_gear'
|
|
2496
|
-
| 'painting_and_building_supplies'
|
|
2497
|
-
| 'office_supplies'
|
|
2498
|
-
| 'desk_accessories'
|
|
2499
|
-
| 'printing_supplies'
|
|
2500
|
-
| 'shipping_packaging'
|
|
2501
|
-
| 'reusable_products'
|
|
2502
|
-
| 'solar_powered_products'
|
|
2503
|
-
| 'handmade_goods_marketplace'
|
|
2504
|
-
| 'vintage_resale_marketplace'
|
|
2505
|
-
| 'electronics_marketplace'
|
|
2506
|
-
| 'auto_parts_marketplace'
|
|
2507
|
-
| 'luxury_goods_marketplace'
|
|
2508
|
-
| 'collectibles_marketplace'
|
|
2509
|
-
| 'wholesale_marketplace'
|
|
2510
|
-
| 'local_goods_marketplace'
|
|
2511
|
-
| 'sneaker_marketplace'
|
|
2512
|
-
| 'book_marketplace'
|
|
2513
|
-
| 'furniture_marketplace'
|
|
2514
|
-
| 'musical_instrument_marketplace'
|
|
2515
|
-
| 'art_marketplace'
|
|
2516
|
-
| 'ticket_marketplace'
|
|
2517
|
-
| 'industrial_equipment_marketplace'
|
|
2518
|
-
| 'craft_supply_marketplace'
|
|
2519
|
-
| 'baby_kids_marketplace'
|
|
2520
|
-
| 'outdoor_gear_marketplace'
|
|
2521
|
-
| 'pet_marketplace'
|
|
2522
|
-
| 'sustainable_goods_marketplace'
|
|
2523
|
-
| '3d_weapon_files'
|
|
2524
|
-
| 'cultural_artifacts_looted'
|
|
2525
|
-
| 'dropshipping_operations'
|
|
2526
|
-
| 'endangered_animal_products'
|
|
2527
|
-
| 'human_body_parts_tissue'
|
|
2528
|
-
| 'nft_marketplace'
|
|
2529
|
-
| 'penny_auction'
|
|
2530
|
-
| 'primary_event_ticketing'
|
|
2531
|
-
| 'freelancer_marketplace'
|
|
2532
|
-
| 'home_services_marketplace'
|
|
2533
|
-
| 'tutoring_marketplace'
|
|
2534
|
-
| 'legal_services_marketplace'
|
|
2535
|
-
| 'healthcare_marketplace'
|
|
2536
|
-
| 'wedding_services_marketplace'
|
|
2537
|
-
| 'creative_services_marketplace'
|
|
2538
|
-
| 'beauty_services_marketplace'
|
|
2539
|
-
| 'fitness_trainer_marketplace'
|
|
2540
|
-
| 'pet_services_marketplace'
|
|
2541
|
-
| 'childcare_marketplace'
|
|
2542
|
-
| 'elder_care_marketplace'
|
|
2543
|
-
| 'translation_marketplace'
|
|
2544
|
-
| 'coaching_marketplace'
|
|
2545
|
-
| 'therapy_marketplace'
|
|
2546
|
-
| 'photography_marketplace'
|
|
2547
|
-
| 'dj_entertainment_marketplace'
|
|
2548
|
-
| 'auto_services_marketplace'
|
|
2549
|
-
| 'freelance_marketplace_operator'
|
|
2550
|
-
| 'equipment_rental_marketplace'
|
|
2551
|
-
| 'vehicle_rental_marketplace'
|
|
2552
|
-
| 'space_rental_marketplace'
|
|
2553
|
-
| 'vacation_rental_marketplace'
|
|
2554
|
-
| 'clothing_rental_marketplace'
|
|
2555
|
-
| 'camera_gear_rental'
|
|
2556
|
-
| 'rv_camper_rental'
|
|
2557
|
-
| 'boat_rental_marketplace'
|
|
2558
|
-
| 'storage_rental_marketplace'
|
|
2559
|
-
| 'office_coworking_rental'
|
|
2560
|
-
| 'parking_rental_marketplace'
|
|
2561
|
-
| 'restaurant_marketplace'
|
|
2562
|
-
| 'grocery_marketplace'
|
|
2563
|
-
| 'catering_marketplace'
|
|
2564
|
-
| 'homemade_food_marketplace'
|
|
2565
|
-
| 'meal_prep_marketplace'
|
|
2566
|
-
| 'bakery_marketplace'
|
|
2567
|
-
| 'farm_produce_marketplace'
|
|
2568
|
-
| 'chef_booking_marketplace'
|
|
2569
|
-
| 'course_marketplace'
|
|
2570
|
-
| 'template_marketplace'
|
|
2571
|
-
| 'stock_media_marketplace'
|
|
2572
|
-
| 'music_beats_marketplace'
|
|
2573
|
-
| 'ebook_marketplace'
|
|
2574
|
-
| 'plugin_theme_marketplace'
|
|
2575
|
-
| '3d_model_marketplace'
|
|
2576
|
-
| 'prompt_marketplace'
|
|
2577
|
-
| 'code_snippet_marketplace'
|
|
2578
|
-
| 'affiliate_marketing_platform'
|
|
2579
|
-
| 'game_account_selling'
|
|
2580
|
-
| 'game_cheats_hacks'
|
|
2581
|
-
| 'pirated_digital_content'
|
|
2582
|
-
| 'unauthorized_ingame_currency'
|
|
2583
|
-
| 'weapon_blueprint_distribution'
|
|
2584
|
-
| 'saas_marketplace'
|
|
2585
|
-
| 'agency_marketplace'
|
|
2586
|
-
| 'manufacturing_marketplace'
|
|
2587
|
-
| 'logistics_marketplace'
|
|
2588
|
-
| 'commercial_real_estate_marketplace'
|
|
2589
|
-
| 'business_for_sale_marketplace'
|
|
2590
|
-
| 'food_delivery'
|
|
2591
|
-
| 'grocery_delivery'
|
|
2592
|
-
| 'package_delivery'
|
|
2593
|
-
| 'moving_labor'
|
|
2594
|
-
| 'alcohol_delivery'
|
|
2595
|
-
| 'pharmacy_delivery'
|
|
2596
|
-
| 'flower_delivery_gig'
|
|
2597
|
-
| 'furniture_delivery_gig'
|
|
2598
|
-
| 'catering_delivery'
|
|
2599
|
-
| 'rideshare'
|
|
2600
|
-
| 'chauffeur_service'
|
|
2601
|
-
| 'bike_scooter_rental'
|
|
2602
|
-
| 'boat_charter_gig'
|
|
2603
|
-
| 'moving_truck_rental_gig'
|
|
2604
|
-
| 'assembly_installation'
|
|
2605
|
-
| 'waiting_line_service'
|
|
2606
|
-
| 'personal_shopping'
|
|
2607
|
-
| 'grocery_shopping_gig'
|
|
2608
|
-
| 'gift_wrapping_gig'
|
|
2609
|
-
| 'notary_gig'
|
|
2610
|
-
| 'laundry_gig'
|
|
2611
|
-
| 'car_wash_gig'
|
|
2612
|
-
| 'cleaning_gig'
|
|
2613
|
-
| 'lawn_care_gig'
|
|
2614
|
-
| 'handyman_gig'
|
|
2615
|
-
| 'pet_care_gig'
|
|
2616
|
-
| 'childcare_gig'
|
|
2617
|
-
| 'elder_care_gig'
|
|
2618
|
-
| 'painting_gig'
|
|
2619
|
-
| 'snow_removal_gig'
|
|
2620
|
-
| 'pool_cleaning_gig'
|
|
2621
|
-
| 'organizing_gig'
|
|
2622
|
-
| 'pressure_washing_gig'
|
|
2623
|
-
| 'junk_removal_gig'
|
|
2624
|
-
| 'freelance_design_gig'
|
|
2625
|
-
| 'freelance_writing_gig'
|
|
2626
|
-
| 'freelance_dev_gig'
|
|
2627
|
-
| 'music_performance_gig'
|
|
2628
|
-
| 'event_staffing_gig'
|
|
2629
|
-
| 'model_talent_gig'
|
|
2630
|
-
| 'photography_gig'
|
|
2631
|
-
| 'videography_gig'
|
|
2632
|
-
| 'voiceover_gig'
|
|
2633
|
-
| 'illustration_gig'
|
|
2634
|
-
| 'social_media_gig'
|
|
2635
|
-
| 'dj_gig'
|
|
2636
|
-
| 'face_painting_gig'
|
|
2637
|
-
| 'clipping_gig'
|
|
2638
|
-
| 'consulting_gig'
|
|
2639
|
-
| 'accounting_gig'
|
|
2640
|
-
| 'legal_gig'
|
|
2641
|
-
| 'healthcare_gig'
|
|
2642
|
-
| 'teaching_gig'
|
|
2643
|
-
| 'translation_gig'
|
|
2644
|
-
| 'data_entry_gig'
|
|
2645
|
-
| 'research_gig'
|
|
2646
|
-
| 'virtual_assistant_gig'
|
|
2647
|
-
| 'sales_gig'
|
|
2648
|
-
| 'recruiting_gig'
|
|
2649
|
-
| 'mystery_shopping'
|
|
2650
|
-
| 'focus_group_gig'
|
|
2651
|
-
| 'product_testing_gig'
|
|
2652
|
-
| 'drone_pilot_gig'
|
|
2653
|
-
| 'fitness_instruction_gig'
|
|
2654
|
-
| 'tour_guide_gig'
|
|
2655
|
-
| 'forex_signals_group'
|
|
2656
|
-
| 'stock_signals_group'
|
|
2657
|
-
| 'crypto_signals_group'
|
|
2658
|
-
| 'options_alerts_group'
|
|
2659
|
-
| 'futures_signals_group'
|
|
2660
|
-
| 'trading_education_group'
|
|
2661
|
-
| 'investing_community'
|
|
2662
|
-
| 'prediction_markets_group'
|
|
2663
|
-
| 'nft_alpha_group'
|
|
2664
|
-
| 'penny_stock_group'
|
|
2665
|
-
| 'dividend_investing_group'
|
|
2666
|
-
| 'real_estate_investing_group'
|
|
2667
|
-
| 'prop_firm_group'
|
|
2668
|
-
| 'sports_picks_group'
|
|
2669
|
-
| 'dfs_group'
|
|
2670
|
-
| 'horse_racing_group'
|
|
2671
|
-
| 'esports_picks_group'
|
|
2672
|
-
| 'nfl_picks_group'
|
|
2673
|
-
| 'nba_picks_group'
|
|
2674
|
-
| 'soccer_picks_group'
|
|
2675
|
-
| 'mlb_picks_group'
|
|
2676
|
-
| 'mma_picks_group'
|
|
2677
|
-
| 'prop_bets_group'
|
|
2678
|
-
| 'fantasy_sports_free_to_play'
|
|
2679
|
-
| 'licensed_gambling_operations'
|
|
2680
|
-
| 'unlicensed_gambling'
|
|
2681
|
-
| 'ecommerce_community'
|
|
2682
|
-
| 'agency_community'
|
|
2683
|
-
| 'saas_community'
|
|
2684
|
-
| 'saas_marketing_community'
|
|
2685
|
-
| 'real_estate_community'
|
|
2686
|
-
| 'sales_community'
|
|
2687
|
-
| 'affiliate_community'
|
|
2688
|
-
| 'reselling_community'
|
|
2689
|
-
| 'amazon_seller_community'
|
|
2690
|
-
| 'dropshipping_community'
|
|
2691
|
-
| 'freelancer_community'
|
|
2692
|
-
| 'startup_founder_community'
|
|
2693
|
-
| 'ceo_executive_community'
|
|
2694
|
-
| 'women_business_community'
|
|
2695
|
-
| 'marketing_community'
|
|
2696
|
-
| 'ai_business_community'
|
|
2697
|
-
| 'content_business_community'
|
|
2698
|
-
| 'local_business_community'
|
|
2699
|
-
| 'private_equity_community'
|
|
2700
|
-
| 'wholesaling_community'
|
|
2701
|
-
| 'coaching_business_community'
|
|
2702
|
-
| 'make_money_online_community'
|
|
2703
|
-
| 'fitness_accountability'
|
|
2704
|
-
| 'nutrition_community'
|
|
2705
|
-
| 'weight_loss_group'
|
|
2706
|
-
| 'bodybuilding_community'
|
|
2707
|
-
| 'running_community'
|
|
2708
|
-
| 'martial_arts_community'
|
|
2709
|
-
| 'mental_health_group'
|
|
2710
|
-
| 'biohacking_community'
|
|
2711
|
-
| 'addiction_support_group'
|
|
2712
|
-
| 'yoga_community'
|
|
2713
|
-
| 'crossfit_community'
|
|
2714
|
-
| 'longevity_community'
|
|
2715
|
-
| 'womens_fitness_community'
|
|
2716
|
-
| 'postpartum_fitness_group'
|
|
2717
|
-
| 'chronic_illness_support'
|
|
2718
|
-
| 'skincare_community'
|
|
2719
|
-
| 'content_creator_community'
|
|
2720
|
-
| 'video_editing_community'
|
|
2721
|
-
| 'music_producer_community'
|
|
2722
|
-
| 'photography_community'
|
|
2723
|
-
| 'writing_community'
|
|
2724
|
-
| 'design_community'
|
|
2725
|
-
| 'youtube_creator_community'
|
|
2726
|
-
| 'tiktok_creator_community'
|
|
2727
|
-
| 'podcast_community'
|
|
2728
|
-
| 'filmmaker_community'
|
|
2729
|
-
| 'clipping_community'
|
|
2730
|
-
| 'youtube_automation_community'
|
|
2731
|
-
| 'developer_community'
|
|
2732
|
-
| 'ai_community'
|
|
2733
|
-
| 'cybersecurity_community'
|
|
2734
|
-
| 'no_code_community'
|
|
2735
|
-
| 'indie_hacker_community'
|
|
2736
|
-
| 'devops_community'
|
|
2737
|
-
| 'data_science_community'
|
|
2738
|
-
| 'product_community'
|
|
2739
|
-
| 'open_source_community'
|
|
2740
|
-
| 'dating_community'
|
|
2741
|
-
| 'personal_development_community'
|
|
2742
|
-
| 'spirituality_community'
|
|
2743
|
-
| 'parenting_community'
|
|
2744
|
-
| 'travel_community'
|
|
2745
|
-
| 'networking_community'
|
|
2746
|
-
| 'faith_community'
|
|
2747
|
-
| 'mens_community'
|
|
2748
|
-
| 'womens_community'
|
|
2749
|
-
| 'expat_community'
|
|
2750
|
-
| 'adult_community_nsfw'
|
|
2751
|
-
| 'hate_violence_communities'
|
|
2752
|
-
| 'personal_fundraising'
|
|
2753
|
-
| 'political_fundraising'
|
|
2754
|
-
| 'political_organizations'
|
|
2755
|
-
| 'pornographic_content'
|
|
2756
|
-
| 'registered_501c3'
|
|
2757
|
-
| 'religious_organization'
|
|
2758
|
-
| 'unregistered_charities'
|
|
2759
|
-
| 'gaming_community'
|
|
2760
|
-
| 'car_enthusiast_community'
|
|
2761
|
-
| 'sneakerhead_community'
|
|
2762
|
-
| 'watch_collector_community'
|
|
2763
|
-
| 'wine_enthusiast_community'
|
|
2764
|
-
| 'cigar_community'
|
|
2765
|
-
| 'cooking_community'
|
|
2766
|
-
| 'gardening_community'
|
|
2767
|
-
| 'fishing_community'
|
|
2768
|
-
| 'hunting_community'
|
|
2769
|
-
| 'diy_maker_community'
|
|
2770
|
-
| 'golf_community'
|
|
2771
|
-
| 'collectibles_community'
|
|
2772
|
-
| 'sweepstakes_raffles'
|
|
2773
|
-
| 'event_ticket_community'
|
|
2774
|
-
| 'forex_trading_bot'
|
|
2775
|
-
| 'stock_trading_platform'
|
|
2776
|
-
| 'crypto_trading_bot'
|
|
2777
|
-
| 'futures_trading_bot'
|
|
2778
|
-
| 'options_flow_tool'
|
|
2779
|
-
| 'portfolio_tracker'
|
|
2780
|
-
| 'financial_modeling_software'
|
|
2781
|
-
| 'accounting_software'
|
|
2782
|
-
| 'invoicing_software'
|
|
2783
|
-
| 'tax_software'
|
|
2784
|
-
| 'risk_management_software'
|
|
2785
|
-
| 'prop_trading_platform'
|
|
2786
|
-
| 'backtesting_software'
|
|
2787
|
-
| 'trading_indicators'
|
|
2788
|
-
| 'market_data_feed'
|
|
2789
|
-
| 'stock_research_tool'
|
|
2790
|
-
| 'banking_software'
|
|
2791
|
-
| 'lending_platform'
|
|
2792
|
-
| 'insurance_software'
|
|
2793
|
-
| 'crypto_trading_tools_software'
|
|
2794
|
-
| 'non_custodial_wallet_tools'
|
|
2795
|
-
| 'ai_outreach_tool'
|
|
2796
|
-
| 'ai_chatbot_software'
|
|
2797
|
-
| 'ai_writing_tool'
|
|
2798
|
-
| 'ai_image_generator'
|
|
2799
|
-
| 'ai_video_tool'
|
|
2800
|
-
| 'ai_voice_tool'
|
|
2801
|
-
| 'ai_data_analysis'
|
|
2802
|
-
| 'ai_code_assistant'
|
|
2803
|
-
| 'ai_meeting_assistant'
|
|
2804
|
-
| 'workflow_automation_software'
|
|
2805
|
-
| 'ai_sales_tool'
|
|
2806
|
-
| 'ai_customer_support'
|
|
2807
|
-
| 'ai_recruiting_tool'
|
|
2808
|
-
| 'ai_translation_tool'
|
|
2809
|
-
| 'ai_music_tool'
|
|
2810
|
-
| 'ai_presentation_tool'
|
|
2811
|
-
| 'ai_research_tool'
|
|
2812
|
-
| 'ai_seo_tool'
|
|
2813
|
-
| 'ai_social_media_tool'
|
|
2814
|
-
| 'ai_phone_agent'
|
|
2815
|
-
| 'ai_legal_tool'
|
|
2816
|
-
| 'ai_healthcare_tool'
|
|
2817
|
-
| 'llm_api_platform'
|
|
2818
|
-
| 'ai_agent_platform'
|
|
2819
|
-
| 'generative_ai_platform'
|
|
2820
|
-
| 'celebrity_impersonation'
|
|
2821
|
-
| 'deepfake_service'
|
|
2822
|
-
| 'crm_software'
|
|
2823
|
-
| 'email_marketing_software'
|
|
2824
|
-
| 'sms_marketing_software'
|
|
2825
|
-
| 'seo_tool'
|
|
2826
|
-
| 'landing_page_builder'
|
|
2827
|
-
| 'ad_management_tool'
|
|
2828
|
-
| 'affiliate_tracking'
|
|
2829
|
-
| 'review_management'
|
|
2830
|
-
| 'analytics_dashboard'
|
|
2831
|
-
| 'lead_gen_software'
|
|
2832
|
-
| 'link_in_bio_tool'
|
|
2833
|
-
| 'influencer_platform'
|
|
2834
|
-
| 'webinar_platform'
|
|
2835
|
-
| 'ab_testing_tool'
|
|
2836
|
-
| 'chatbot_marketing'
|
|
2837
|
-
| 'video_sales_tool'
|
|
2838
|
-
| 'proposal_software'
|
|
2839
|
-
| 'competitive_intelligence'
|
|
2840
|
-
| 'social_listening_tool'
|
|
2841
|
-
| 'whatsapp_marketing_tool'
|
|
2842
|
-
| 'ecommerce_platform'
|
|
2843
|
-
| 'product_research_tool'
|
|
2844
|
-
| 'price_tracker'
|
|
2845
|
-
| 'shipping_software'
|
|
2846
|
-
| 'print_on_demand_software'
|
|
2847
|
-
| 'marketplace_seller_tool'
|
|
2848
|
-
| 'resale_arbitrage_tool'
|
|
2849
|
-
| 'reseller_management_tool'
|
|
2850
|
-
| 'product_review_software'
|
|
2851
|
-
| 'returns_management'
|
|
2852
|
-
| 'product_feed_management'
|
|
2853
|
-
| 'checkout_optimization'
|
|
2854
|
-
| 'wholesale_ordering'
|
|
2855
|
-
| 'project_management_software'
|
|
2856
|
-
| 'team_communication'
|
|
2857
|
-
| 'video_conferencing'
|
|
2858
|
-
| 'document_collaboration'
|
|
2859
|
-
| 'time_tracking_software'
|
|
2860
|
-
| 'scheduling_software'
|
|
2861
|
-
| 'hr_software'
|
|
2862
|
-
| 'knowledge_base_software'
|
|
2863
|
-
| 'form_survey_builder'
|
|
2864
|
-
| 'note_taking_app'
|
|
2865
|
-
| 'task_management'
|
|
2866
|
-
| 'contract_management'
|
|
2867
|
-
| 'expense_management'
|
|
2868
|
-
| 'okr_goal_tracking'
|
|
2869
|
-
| 'employee_engagement'
|
|
2870
|
-
| 'onboarding_software'
|
|
2871
|
-
| 'applicant_tracking'
|
|
2872
|
-
| 'asset_management'
|
|
2873
|
-
| 'facility_management'
|
|
2874
|
-
| 'visitor_management'
|
|
2875
|
-
| 'api_management'
|
|
2876
|
-
| 'hosting_platform'
|
|
2877
|
-
| 'database_tool'
|
|
2878
|
-
| 'devops_tool'
|
|
2879
|
-
| 'monitoring_tool'
|
|
2880
|
-
| 'testing_tool'
|
|
2881
|
-
| 'code_editor'
|
|
2882
|
-
| 'no_code_builder'
|
|
2883
|
-
| 'cdn_platform'
|
|
2884
|
-
| 'error_tracking'
|
|
2885
|
-
| 'documentation_tool'
|
|
2886
|
-
| 'webhook_tool'
|
|
2887
|
-
| 'community_platform'
|
|
2888
|
-
| 'event_management_software'
|
|
2889
|
-
| 'webinar_software'
|
|
2890
|
-
| 'school_management'
|
|
2891
|
-
| 'newsletter_platform'
|
|
2892
|
-
| 'podcast_hosting'
|
|
2893
|
-
| 'forum_software'
|
|
2894
|
-
| 'virtual_classroom'
|
|
2895
|
-
| 'telehealth_platform'
|
|
2896
|
-
| 'ehr_software'
|
|
2897
|
-
| 'practice_management'
|
|
2898
|
-
| 'mental_health_app'
|
|
2899
|
-
| 'fitness_app'
|
|
2900
|
-
| 'nutrition_tracking_app'
|
|
2901
|
-
| 'wellness_app'
|
|
2902
|
-
| 'patient_engagement'
|
|
2903
|
-
| 'medical_billing_software'
|
|
2904
|
-
| 'pharmacy_management'
|
|
2905
|
-
| 'lab_management'
|
|
2906
|
-
| 'clinical_trial_software'
|
|
2907
|
-
| 'dental_software'
|
|
2908
|
-
| 'veterinary_software'
|
|
2909
|
-
| 'health_data_platform'
|
|
2910
|
-
| 'real_estate_crm'
|
|
2911
|
-
| 'property_management_software'
|
|
2912
|
-
| 'deal_analysis_tool'
|
|
2913
|
-
| 'mls_search_tool'
|
|
2914
|
-
| 'virtual_tour_software'
|
|
2915
|
-
| 'real_estate_marketing_software'
|
|
2916
|
-
| 'construction_management'
|
|
2917
|
-
| 'home_valuation_tool'
|
|
2918
|
-
| 'restaurant_pos'
|
|
2919
|
-
| 'salon_software'
|
|
2920
|
-
| 'gym_management_software'
|
|
2921
|
-
| 'auto_shop_software'
|
|
2922
|
-
| 'legal_practice_software'
|
|
2923
|
-
| 'church_management'
|
|
2924
|
-
| 'nonprofit_software'
|
|
2925
|
-
| 'logistics_software'
|
|
2926
|
-
| 'agriculture_software'
|
|
2927
|
-
| 'field_service_software'
|
|
2928
|
-
| 'marina_management'
|
|
2929
|
-
| 'hotel_pms'
|
|
2930
|
-
| 'childcare_management'
|
|
2931
|
-
| 'cleaning_business_software'
|
|
2932
|
-
| 'roofing_software'
|
|
2933
|
-
| 'landscaping_software'
|
|
2934
|
-
| 'pest_control_software'
|
|
2935
|
-
| 'tattoo_studio_software'
|
|
2936
|
-
| 'cannabis_software'
|
|
2937
|
-
| 'password_manager'
|
|
2938
|
-
| 'cybersecurity_software'
|
|
2939
|
-
| 'identity_verification'
|
|
2940
|
-
| 'backup_recovery'
|
|
2941
|
-
| 'endpoint_protection'
|
|
2942
|
-
| 'email_security'
|
|
2943
|
-
| 'access_management'
|
|
2944
|
-
| 'compliance_software'
|
|
2945
|
-
| 'data_privacy_tool'
|
|
2946
|
-
| 'vpn_services'
|
|
2947
|
-
| 'game_mod_tool'
|
|
2948
|
-
| 'streaming_tool'
|
|
2949
|
-
| 'game_server_hosting'
|
|
2950
|
-
| 'music_software'
|
|
2951
|
-
| 'video_editing_software'
|
|
2952
|
-
| 'photo_editing_software'
|
|
2953
|
-
| 'animation_software'
|
|
2954
|
-
| 'audio_editing_software'
|
|
2955
|
-
| 'screen_recording_software'
|
|
2956
|
-
| 'sports_betting_tool'
|
|
2957
|
-
| 'fantasy_sports_paid_entry'
|
|
2958
|
-
| 'iptv_pirated_streaming'
|
|
2959
|
-
| 'loot_boxes_gacha'
|
|
2960
|
-
| 'skill_contests_free_entry'
|
|
2961
|
-
| 'skill_contests_paid_entry'
|
|
2962
|
-
| 'business_phone_system'
|
|
2963
|
-
| 'customer_messaging'
|
|
2964
|
-
| 'digital_key_reselling'
|
|
2965
|
-
| 'streaming_account_reselling'
|
|
2966
|
-
| 'subscription_account_sharing'
|
|
2967
|
-
| 'account_generation_tool'
|
|
2968
|
-
| 'primary_care_telehealth'
|
|
2969
|
-
| 'urgent_care_telehealth'
|
|
2970
|
-
| 'pediatric_telehealth'
|
|
2971
|
-
| 'geriatric_telehealth'
|
|
2972
|
-
| 'family_medicine_telehealth'
|
|
2973
|
-
| 'internal_medicine_telehealth'
|
|
2974
|
-
| 'preventive_care_telehealth'
|
|
2975
|
-
| 'licensed_online_pharmacy'
|
|
2976
|
-
| 'telemedicine_practitioner_services'
|
|
2977
|
-
| 'dermatology_telehealth'
|
|
2978
|
-
| 'acne_telehealth'
|
|
2979
|
-
| 'psoriasis_eczema_telehealth'
|
|
2980
|
-
| 'skin_cancer_screening_tele'
|
|
2981
|
-
| 'cosmetic_dermatology_tele'
|
|
2982
|
-
| 'therapy_telehealth'
|
|
2983
|
-
| 'psychiatry_telehealth'
|
|
2984
|
-
| 'addiction_telehealth'
|
|
2985
|
-
| 'couples_therapy_telehealth'
|
|
2986
|
-
| 'child_psychology_telehealth'
|
|
2987
|
-
| 'eating_disorder_telehealth'
|
|
2988
|
-
| 'ptsd_trauma_telehealth'
|
|
2989
|
-
| 'adhd_telehealth'
|
|
2990
|
-
| 'anxiety_depression_telehealth'
|
|
2991
|
-
| 'ocd_telehealth'
|
|
2992
|
-
| 'grief_counseling_telehealth'
|
|
2993
|
-
| 'anger_management_telehealth'
|
|
2994
|
-
| 'family_therapy_telehealth'
|
|
2995
|
-
| 'group_therapy_telehealth'
|
|
2996
|
-
| 'licensed_psychedelic_therapy'
|
|
2997
|
-
| 'womens_health_telehealth'
|
|
2998
|
-
| 'mens_health_telehealth'
|
|
2999
|
-
| 'sexual_health_telehealth'
|
|
3000
|
-
| 'fertility_telehealth'
|
|
3001
|
-
| 'hormone_therapy_telehealth'
|
|
3002
|
-
| 'menopause_telehealth'
|
|
3003
|
-
| 'prenatal_telehealth'
|
|
3004
|
-
| 'postpartum_telehealth'
|
|
3005
|
-
| 'erectile_dysfunction_tele'
|
|
3006
|
-
| 'hair_loss_telehealth'
|
|
3007
|
-
| 'birth_control_telehealth'
|
|
3008
|
-
| 'sti_testing_telehealth'
|
|
3009
|
-
| 'dental_telehealth'
|
|
3010
|
-
| 'orthodontics_telehealth'
|
|
3011
|
-
| 'optometry_telehealth'
|
|
3012
|
-
| 'oral_surgery_consultation'
|
|
3013
|
-
| 'vision_therapy_telehealth'
|
|
3014
|
-
| 'cardiology_telehealth'
|
|
3015
|
-
| 'endocrinology_telehealth'
|
|
3016
|
-
| 'neurology_telehealth'
|
|
3017
|
-
| 'orthopedic_telehealth'
|
|
3018
|
-
| 'allergy_telehealth'
|
|
3019
|
-
| 'ent_telehealth'
|
|
3020
|
-
| 'rheumatology_telehealth'
|
|
3021
|
-
| 'gastroenterology_telehealth'
|
|
3022
|
-
| 'infectious_disease_telehealth'
|
|
3023
|
-
| 'pulmonology_telehealth'
|
|
3024
|
-
| 'nephrology_telehealth'
|
|
3025
|
-
| 'oncology_telehealth'
|
|
3026
|
-
| 'hematology_telehealth'
|
|
3027
|
-
| 'urology_telehealth'
|
|
3028
|
-
| 'weight_management_telehealth'
|
|
3029
|
-
| 'glp1_weight_loss_tele'
|
|
3030
|
-
| 'diabetes_management_tele'
|
|
3031
|
-
| 'metabolic_health_tele'
|
|
3032
|
-
| 'bariatric_telehealth'
|
|
3033
|
-
| 'physical_therapy_telehealth'
|
|
3034
|
-
| 'occupational_therapy_tele'
|
|
3035
|
-
| 'speech_therapy_telehealth'
|
|
3036
|
-
| 'pain_management_telehealth'
|
|
3037
|
-
| 'cardiac_rehab_telehealth'
|
|
3038
|
-
| 'pelvic_floor_telehealth'
|
|
3039
|
-
| 'vestibular_telehealth'
|
|
3040
|
-
| 'sleep_medicine_telehealth'
|
|
3041
|
-
| 'chronic_disease_management'
|
|
3042
|
-
| 'chronic_pain_telehealth'
|
|
3043
|
-
| 'migraine_telehealth'
|
|
3044
|
-
| 'asthma_copd_telehealth'
|
|
3045
|
-
| 'nutrition_telehealth'
|
|
3046
|
-
| 'naturopathic_telehealth'
|
|
3047
|
-
| 'functional_medicine_telehealth'
|
|
3048
|
-
| 'acupuncture_telehealth'
|
|
3049
|
-
| 'health_coaching_telehealth'
|
|
3050
|
-
| 'integrative_medicine_tele'
|
|
3051
|
-
| 'ayurvedic_telehealth'
|
|
3052
|
-
| 'genetic_counseling_telehealth'
|
|
3053
|
-
| 'pharmacogenomics_tele'
|
|
3054
|
-
| 'rare_disease_telehealth'
|
|
3055
|
-
| 'second_opinion_telehealth'
|
|
3056
|
-
| 'vet_telehealth'
|
|
3057
|
-
| 'pet_behavior_telehealth'
|
|
3058
|
-
| 'exotic_pet_telehealth'
|
|
3059
|
-
| 'equine_telehealth'
|
|
3060
|
-
| 'veterinary_services'
|
|
3061
|
-
| 'class_action_settlement'
|
|
3062
|
-
| 'mastermind_event'
|
|
3063
|
-
| 'webinar_event'
|
|
3064
|
-
| 'virtual_summit'
|
|
3065
|
-
| 'bootcamp_event'
|
|
3066
|
-
| 'workshop_seminar'
|
|
3067
|
-
| 'hackathon'
|
|
3068
|
-
| 'corporate_training_event'
|
|
3069
|
-
| 'training_certification_event'
|
|
3070
|
-
| 'convention_expo'
|
|
3071
|
-
| 'conference_summit'
|
|
3072
|
-
| 'industry_awards_event'
|
|
3073
|
-
| 'product_launch_event'
|
|
3074
|
-
| 'investor_demo_day'
|
|
3075
|
-
| 'panel_discussion_event'
|
|
3076
|
-
| 'pitch_competition'
|
|
3077
|
-
| 'meetup_event'
|
|
3078
|
-
| 'dinner_event'
|
|
3079
|
-
| 'alumni_event'
|
|
3080
|
-
| 'community_gathering'
|
|
3081
|
-
| 'singles_event'
|
|
3082
|
-
| 'professional_happy_hour'
|
|
3083
|
-
| 'women_networking_event'
|
|
3084
|
-
| 'founders_dinner'
|
|
3085
|
-
| 'industry_mixer'
|
|
3086
|
-
| 'concert_event'
|
|
3087
|
-
| 'comedy_show'
|
|
3088
|
-
| 'theater_performance'
|
|
3089
|
-
| 'film_screening'
|
|
3090
|
-
| 'music_festival'
|
|
3091
|
-
| 'cultural_festival'
|
|
3092
|
-
| 'fashion_show'
|
|
3093
|
-
| 'drag_show'
|
|
3094
|
-
| 'magic_show'
|
|
3095
|
-
| 'dance_performance'
|
|
3096
|
-
| 'poetry_spoken_word'
|
|
3097
|
-
| 'art_exhibition'
|
|
3098
|
-
| 'party_event'
|
|
3099
|
-
| 'trivia_night'
|
|
3100
|
-
| 'wine_tasting_event'
|
|
3101
|
-
| 'beer_festival'
|
|
3102
|
-
| 'car_show'
|
|
3103
|
-
| 'food_festival'
|
|
3104
|
-
| 'fitness_challenge_event'
|
|
3105
|
-
| 'marathon_race'
|
|
3106
|
-
| 'tournament_event'
|
|
3107
|
-
| 'fight_event'
|
|
3108
|
-
| 'yoga_retreat_event'
|
|
3109
|
-
| 'outdoor_adventure_event'
|
|
3110
|
-
| 'esports_tournament'
|
|
3111
|
-
| 'obstacle_course_race'
|
|
3112
|
-
| 'cycling_event'
|
|
3113
|
-
| 'swim_meet'
|
|
3114
|
-
| 'golf_tournament'
|
|
3115
|
-
| 'pickleball_tournament'
|
|
3116
|
-
| 'crossfit_competition'
|
|
3117
|
-
| 'martial_arts_tournament'
|
|
3118
|
-
| 'surfing_competition'
|
|
3119
|
-
| 'wellness_retreat'
|
|
3120
|
-
| 'spiritual_retreat'
|
|
3121
|
-
| 'couples_retreat'
|
|
3122
|
-
| 'plant_medicine_retreat'
|
|
3123
|
-
| 'luxury_experience_event'
|
|
3124
|
-
| 'detox_retreat'
|
|
3125
|
-
| 'silent_retreat'
|
|
3126
|
-
| 'creative_retreat'
|
|
3127
|
-
| 'leadership_retreat'
|
|
3128
|
-
| 'mens_retreat'
|
|
3129
|
-
| 'womens_retreat'
|
|
3130
|
-
| 'digital_detox_retreat'
|
|
3131
|
-
| 'fundraiser_event'
|
|
3132
|
-
| 'awareness_event'
|
|
3133
|
-
| 'volunteer_event'
|
|
3134
|
-
| 'charity_auction'
|
|
3135
|
-
| 'benefit_concert'
|
|
3136
|
-
| 'charity_run_walk'
|
|
3137
|
-
| 'environmental_cleanup'
|
|
3138
|
-
| 'family_festival'
|
|
3139
|
-
| 'kids_event'
|
|
3140
|
-
| 'holiday_event'
|
|
3141
|
-
| 'farmers_market_event'
|
|
3142
|
-
| 'block_party'
|
|
3143
|
-
| 'graduation_ceremony'
|
|
3144
|
-
| 'memorial_event'
|
|
3145
|
-
| 'stock_market_newsletter'
|
|
3146
|
-
| 'crypto_newsletter'
|
|
3147
|
-
| 'personal_finance_newsletter'
|
|
3148
|
-
| 'real_estate_newsletter'
|
|
3149
|
-
| 'fintech_newsletter'
|
|
3150
|
-
| 'venture_capital_newsletter'
|
|
3151
|
-
| 'options_trading_newsletter'
|
|
3152
|
-
| 'forex_newsletter'
|
|
3153
|
-
| 'macro_economics_newsletter'
|
|
3154
|
-
| 'alternative_investing_newsletter'
|
|
3155
|
-
| 'tax_strategy_newsletter'
|
|
3156
|
-
| 'ai_newsletter'
|
|
3157
|
-
| 'tech_industry_newsletter'
|
|
3158
|
-
| 'cybersecurity_newsletter'
|
|
3159
|
-
| 'developer_newsletter'
|
|
3160
|
-
| 'product_newsletter'
|
|
3161
|
-
| 'devops_newsletter'
|
|
3162
|
-
| 'open_source_newsletter'
|
|
3163
|
-
| 'robotics_newsletter'
|
|
3164
|
-
| 'climate_tech_newsletter'
|
|
3165
|
-
| 'travel_newsletter'
|
|
3166
|
-
| 'fashion_newsletter'
|
|
3167
|
-
| 'parenting_newsletter'
|
|
3168
|
-
| 'sports_newsletter'
|
|
3169
|
-
| 'gaming_newsletter'
|
|
3170
|
-
| 'music_entertainment_newsletter'
|
|
3171
|
-
| 'book_reading_newsletter'
|
|
3172
|
-
| 'dating_relationships_newsletter'
|
|
3173
|
-
| 'home_design_newsletter'
|
|
3174
|
-
| 'pet_newsletter'
|
|
3175
|
-
| 'wine_spirits_newsletter'
|
|
3176
|
-
| 'automotive_newsletter'
|
|
3177
|
-
| 'political_newsletter'
|
|
3178
|
-
| 'geopolitics_newsletter'
|
|
3179
|
-
| 'media_journalism_newsletter'
|
|
3180
|
-
| 'defense_security_newsletter'
|
|
3181
|
-
| 'legal_policy_newsletter'
|
|
3182
|
-
| 'design_newsletter'
|
|
3183
|
-
| 'education_newsletter'
|
|
3184
|
-
| 'science_newsletter'
|
|
3185
|
-
| 'philosophy_newsletter'
|
|
3186
|
-
| 'sustainability_newsletter'
|
|
3187
|
-
| 'architecture_newsletter'
|
|
3188
|
-
| 'history_newsletter'
|
|
3189
|
-
| 'psychology_newsletter'
|
|
3190
|
-
| 'career_newsletter'
|
|
3191
|
-
| 'spirituality_newsletter'
|
|
3192
|
-
| 'self_improvement_newsletter'
|
|
3193
|
-
| 'productivity_newsletter'
|
|
3194
|
-
| 'faith_newsletter'
|
|
3195
|
-
| 'gym_facility'
|
|
3196
|
-
| 'crossfit_box'
|
|
3197
|
-
| 'yoga_studio'
|
|
3198
|
-
| 'pilates_studio'
|
|
3199
|
-
| 'martial_arts_gym'
|
|
3200
|
-
| 'boxing_gym'
|
|
3201
|
-
| 'climbing_gym'
|
|
3202
|
-
| 'dance_studio'
|
|
3203
|
-
| 'swimming_pool'
|
|
3204
|
-
| 'sports_facility'
|
|
3205
|
-
| 'golf_course'
|
|
3206
|
-
| 'bowling_alley'
|
|
3207
|
-
| 'skating_rink'
|
|
3208
|
-
| 'trampoline_park'
|
|
3209
|
-
| 'tennis_club'
|
|
3210
|
-
| 'pickleball_facility'
|
|
3211
|
-
| 'gymnastics_center'
|
|
3212
|
-
| 'spin_studio'
|
|
3213
|
-
| 'barre_studio'
|
|
3214
|
-
| 'personal_training_studio_bm'
|
|
3215
|
-
| 'recovery_studio'
|
|
3216
|
-
| 'indoor_soccer'
|
|
3217
|
-
| 'batting_cage'
|
|
3218
|
-
| 'shooting_range'
|
|
3219
|
-
| 'archery_range'
|
|
3220
|
-
| 'equestrian_center'
|
|
3221
|
-
| 'fine_dining'
|
|
3222
|
-
| 'fast_casual_restaurant'
|
|
3223
|
-
| 'steakhouse'
|
|
3224
|
-
| 'seafood_restaurant'
|
|
3225
|
-
| 'pizza_shop'
|
|
3226
|
-
| 'sushi_restaurant'
|
|
3227
|
-
| 'deli_sandwich_shop'
|
|
3228
|
-
| 'bbq_restaurant'
|
|
3229
|
-
| 'mexican_restaurant'
|
|
3230
|
-
| 'italian_restaurant'
|
|
3231
|
-
| 'chinese_restaurant'
|
|
3232
|
-
| 'indian_restaurant'
|
|
3233
|
-
| 'thai_restaurant'
|
|
3234
|
-
| 'korean_restaurant'
|
|
3235
|
-
| 'mediterranean_restaurant'
|
|
3236
|
-
| 'vegan_vegetarian_restaurant'
|
|
3237
|
-
| 'brunch_restaurant'
|
|
3238
|
-
| 'ramen_noodle_shop'
|
|
3239
|
-
| 'poke_bowl_shop'
|
|
3240
|
-
| 'ethnic_restaurant'
|
|
3241
|
-
| 'coffee_shop_cafe'
|
|
3242
|
-
| 'bakery'
|
|
3243
|
-
| 'juice_smoothie_bar'
|
|
3244
|
-
| 'ice_cream_shop'
|
|
3245
|
-
| 'donut_shop'
|
|
3246
|
-
| 'bubble_tea_shop'
|
|
3247
|
-
| 'food_truck'
|
|
3248
|
-
| 'fast_food'
|
|
3249
|
-
| 'ghost_kitchen'
|
|
3250
|
-
| 'food_hall_vendor'
|
|
3251
|
-
| 'catering_kitchen'
|
|
3252
|
-
| 'butcher_shop'
|
|
3253
|
-
| 'cheese_shop'
|
|
3254
|
-
| 'farmers_market_stall'
|
|
3255
|
-
| 'bar_lounge'
|
|
3256
|
-
| 'brewery_taproom'
|
|
3257
|
-
| 'winery_tasting'
|
|
3258
|
-
| 'wine_bar'
|
|
3259
|
-
| 'cocktail_bar'
|
|
3260
|
-
| 'sports_bar'
|
|
3261
|
-
| 'hookah_lounge'
|
|
3262
|
-
| 'distillery'
|
|
3263
|
-
| 'commercial_farming'
|
|
3264
|
-
| 'livestock_ranching'
|
|
3265
|
-
| 'hydroponic_vertical_farming'
|
|
3266
|
-
| 'forestry_logging'
|
|
3267
|
-
| 'aquaculture_fisheries'
|
|
3268
|
-
| 'vineyard_winery_production'
|
|
3269
|
-
| 'cannabis_cultivation'
|
|
3270
|
-
| 'hemp_farming'
|
|
3271
|
-
| 'grain_production'
|
|
3272
|
-
| 'agricultural_cooperative'
|
|
3273
|
-
| 'fertilizer_pesticide_sales'
|
|
3274
|
-
| 'farm_equipment_sales'
|
|
3275
|
-
| 'boutique_store'
|
|
3276
|
-
| 'clothing_store'
|
|
3277
|
-
| 'shoe_store'
|
|
3278
|
-
| 'jewelry_store'
|
|
3279
|
-
| 'electronics_store'
|
|
3280
|
-
| 'bookstore'
|
|
3281
|
-
| 'pet_store'
|
|
3282
|
-
| 'toy_store'
|
|
3283
|
-
| 'sporting_goods_store'
|
|
3284
|
-
| 'thrift_store'
|
|
3285
|
-
| 'smoke_shop'
|
|
3286
|
-
| 'cannabis_dispensary'
|
|
3287
|
-
| 'convenience_store'
|
|
3288
|
-
| 'grocery_store'
|
|
3289
|
-
| 'liquor_store'
|
|
3290
|
-
| 'florist'
|
|
3291
|
-
| 'gift_shop'
|
|
3292
|
-
| 'furniture_store'
|
|
3293
|
-
| 'home_improvement_store'
|
|
3294
|
-
| 'art_gallery_retail'
|
|
3295
|
-
| 'music_instrument_store'
|
|
3296
|
-
| 'outdoor_recreation_store'
|
|
3297
|
-
| 'phone_repair_store'
|
|
3298
|
-
| 'watch_store'
|
|
3299
|
-
| 'bridal_shop'
|
|
3300
|
-
| 'maternity_store'
|
|
3301
|
-
| 'kids_store'
|
|
3302
|
-
| 'sneaker_store'
|
|
3303
|
-
| 'vintage_store'
|
|
3304
|
-
| 'comic_book_store'
|
|
3305
|
-
| 'record_store'
|
|
3306
|
-
| 'craft_supply_store'
|
|
3307
|
-
| 'fabric_store'
|
|
3308
|
-
| 'health_food_store'
|
|
3309
|
-
| 'vitamin_supplement_store'
|
|
3310
|
-
| 'optical_store'
|
|
3311
|
-
| 'mattress_store'
|
|
3312
|
-
| 'appliance_store'
|
|
3313
|
-
| 'kitchen_bath_store'
|
|
3314
|
-
| 'tile_flooring_store'
|
|
3315
|
-
| 'paint_store'
|
|
3316
|
-
| 'garden_center'
|
|
3317
|
-
| 'gun_store'
|
|
3318
|
-
| 'pawn_shop'
|
|
3319
|
-
| 'dollar_store'
|
|
3320
|
-
| 'hair_salon'
|
|
3321
|
-
| 'nail_salon'
|
|
3322
|
-
| 'day_spa'
|
|
3323
|
-
| 'med_spa'
|
|
3324
|
-
| 'massage_studio'
|
|
3325
|
-
| 'tattoo_parlor'
|
|
3326
|
-
| 'tanning_salon'
|
|
3327
|
-
| 'beauty_supply_store'
|
|
3328
|
-
| 'lash_brow_studio'
|
|
3329
|
-
| 'waxing_studio'
|
|
3330
|
-
| 'sauna_bathhouse'
|
|
3331
|
-
| 'cryotherapy_studio'
|
|
3332
|
-
| 'float_sensory_studio'
|
|
3333
|
-
| 'iv_therapy_lounge'
|
|
3334
|
-
| 'teeth_whitening_studio'
|
|
3335
|
-
| 'microblading_studio'
|
|
3336
|
-
| 'spray_tan_studio'
|
|
3337
|
-
| 'blowout_bar'
|
|
3338
|
-
| 'mens_barbershop'
|
|
3339
|
-
| 'kids_salon'
|
|
3340
|
-
| 'medical_office'
|
|
3341
|
-
| 'dental_office'
|
|
3342
|
-
| 'chiropractic_office'
|
|
3343
|
-
| 'physical_therapy_clinic'
|
|
3344
|
-
| 'optometry_office'
|
|
3345
|
-
| 'dermatology_clinic'
|
|
3346
|
-
| 'urgent_care_clinic'
|
|
3347
|
-
| 'pharmacy'
|
|
3348
|
-
| 'veterinary_clinic'
|
|
3349
|
-
| 'mental_health_clinic'
|
|
3350
|
-
| 'fertility_clinic'
|
|
3351
|
-
| 'acupuncture_clinic'
|
|
3352
|
-
| 'hearing_aid_center'
|
|
3353
|
-
| 'orthopedic_clinic'
|
|
3354
|
-
| 'pediatric_clinic'
|
|
3355
|
-
| 'cosmetic_surgery_center'
|
|
3356
|
-
| 'allergy_clinic'
|
|
3357
|
-
| 'pain_management_clinic'
|
|
3358
|
-
| 'dialysis_center'
|
|
3359
|
-
| 'imaging_center'
|
|
3360
|
-
| 'lab_testing_center'
|
|
3361
|
-
| 'sleep_clinic'
|
|
3362
|
-
| 'weight_loss_clinic'
|
|
3363
|
-
| 'hormone_therapy_clinic'
|
|
3364
|
-
| 'addiction_treatment_center'
|
|
3365
|
-
| 'rehabilitation_center'
|
|
3366
|
-
| 'occupational_therapy_clinic'
|
|
3367
|
-
| 'speech_therapy_clinic'
|
|
3368
|
-
| 'wound_care_center'
|
|
3369
|
-
| 'funeral_home_mortuary'
|
|
3370
|
-
| 'crematory_service'
|
|
3371
|
-
| 'cemetery_memorial_park'
|
|
3372
|
-
| 'casket_urn_retailer'
|
|
3373
|
-
| 'pet_cremation_service'
|
|
3374
|
-
| 'biohazard_cleanup'
|
|
3375
|
-
| 'estate_liquidation'
|
|
3376
|
-
| 'hotel'
|
|
3377
|
-
| 'motel'
|
|
3378
|
-
| 'boutique_hotel'
|
|
3379
|
-
| 'bed_and_breakfast'
|
|
3380
|
-
| 'hostel'
|
|
3381
|
-
| 'resort'
|
|
3382
|
-
| 'campground_rv'
|
|
3383
|
-
| 'vacation_rental_property'
|
|
3384
|
-
| 'extended_stay'
|
|
3385
|
-
| 'glamping_site'
|
|
3386
|
-
| 'cabin_rental'
|
|
3387
|
-
| 'eco_lodge'
|
|
3388
|
-
| 'retreat_center'
|
|
3389
|
-
| 'tutoring_center'
|
|
3390
|
-
| 'daycare_center'
|
|
3391
|
-
| 'preschool'
|
|
3392
|
-
| 'learning_center'
|
|
3393
|
-
| 'music_school'
|
|
3394
|
-
| 'art_school'
|
|
3395
|
-
| 'driving_school'
|
|
3396
|
-
| 'language_school'
|
|
3397
|
-
| 'trade_school'
|
|
3398
|
-
| 'coding_bootcamp_location'
|
|
3399
|
-
| 'montessori_school'
|
|
3400
|
-
| 'after_school_program'
|
|
3401
|
-
| 'swim_school'
|
|
3402
|
-
| 'cooking_school'
|
|
3403
|
-
| 'test_prep_center'
|
|
3404
|
-
| 'special_needs_center'
|
|
3405
|
-
| 'adult_education_center'
|
|
3406
|
-
| 'flight_school'
|
|
3407
|
-
| 'cosmetology_school'
|
|
3408
|
-
| 'movie_theater'
|
|
3409
|
-
| 'escape_room'
|
|
3410
|
-
| 'arcade'
|
|
3411
|
-
| 'mini_golf'
|
|
3412
|
-
| 'laser_tag'
|
|
3413
|
-
| 'go_kart'
|
|
3414
|
-
| 'amusement_park'
|
|
3415
|
-
| 'museum'
|
|
3416
|
-
| 'zoo_aquarium'
|
|
3417
|
-
| 'theater_venue'
|
|
3418
|
-
| 'nightclub'
|
|
3419
|
-
| 'karaoke_bar'
|
|
3420
|
-
| 'comedy_club'
|
|
3421
|
-
| 'live_music_venue'
|
|
3422
|
-
| 'axe_throwing'
|
|
3423
|
-
| 'virtual_reality_arcade'
|
|
3424
|
-
| 'board_game_cafe'
|
|
3425
|
-
| 'cat_cafe'
|
|
3426
|
-
| 'haunted_house'
|
|
3427
|
-
| 'water_park'
|
|
3428
|
-
| 'indoor_playground'
|
|
3429
|
-
| 'concert_venue'
|
|
3430
|
-
| 'drive_in_theater'
|
|
3431
|
-
| 'billiards_hall'
|
|
3432
|
-
| 'dart_bar'
|
|
3433
|
-
| 'indoor_skydiving'
|
|
3434
|
-
| 'law_office'
|
|
3435
|
-
| 'real_estate_office'
|
|
3436
|
-
| 'insurance_office'
|
|
3437
|
-
| 'accounting_office'
|
|
3438
|
-
| 'bank_credit_union'
|
|
3439
|
-
| 'printing_shop'
|
|
3440
|
-
| 'shipping_center'
|
|
3441
|
-
| 'dry_cleaner'
|
|
3442
|
-
| 'laundromat'
|
|
3443
|
-
| 'storage_facility'
|
|
3444
|
-
| 'coworking_space'
|
|
3445
|
-
| 'check_cashing'
|
|
3446
|
-
| 'title_company'
|
|
3447
|
-
| 'travel_agency_storefront'
|
|
3448
|
-
| 'staffing_office'
|
|
3449
|
-
| 'financial_advisor_office'
|
|
3450
|
-
| 'immigration_office'
|
|
3451
|
-
| 'bail_bonds_office'
|
|
3452
|
-
| 'pet_grooming'
|
|
3453
|
-
| 'dog_daycare'
|
|
3454
|
-
| 'pet_boarding'
|
|
3455
|
-
| 'dog_training_facility'
|
|
3456
|
-
| 'pet_spa'
|
|
3457
|
-
| 'aquatic_pet_store'
|
|
3458
|
-
| 'pet_bakery'
|
|
3459
|
-
| 'pet_photography_studio'
|
|
3460
|
-
| 'plumbing_showroom'
|
|
3461
|
-
| 'hvac_showroom'
|
|
3462
|
-
| 'solar_showroom'
|
|
3463
|
-
| 'kitchen_design_showroom'
|
|
3464
|
-
| 'bath_design_showroom'
|
|
3465
|
-
| 'window_door_showroom'
|
|
3466
|
-
| 'pool_spa_showroom'
|
|
3467
|
-
| 'fireplace_showroom'
|
|
3468
|
-
| 'countertop_showroom'
|
|
3469
|
-
| 'nonprofit_organization'
|
|
3470
|
-
| 'charity_foundation'
|
|
3471
|
-
| 'political_campaign'
|
|
3472
|
-
| 'community_organization'
|
|
3473
|
-
| 'environmental_nonprofit'
|
|
3474
|
-
| 'education_nonprofit'
|
|
3475
|
-
| 'health_nonprofit'
|
|
3476
|
-
| 'animal_welfare_nonprofit'
|
|
3477
|
-
| 'arts_culture_nonprofit'
|
|
3478
|
-
| 'social_justice_nonprofit'
|
|
3479
|
-
| 'veterans_nonprofit'
|
|
3480
|
-
| 'youth_nonprofit'
|
|
3481
|
-
| 'disaster_relief_nonprofit'
|
|
3482
|
-
| 'food_bank'
|
|
3483
|
-
| 'housing_nonprofit'
|
|
3484
|
-
| 'government_agency'
|
|
3485
|
-
| 'public_utility'
|
|
3486
|
-
| 'public_library'
|
|
3487
|
-
| 'public_school'
|
|
3488
|
-
| 'municipal_service'
|
|
3489
|
-
| 'military_installation'
|
|
3490
|
-
| 'embassy_consulate'
|
|
3491
|
-
| 'niche_service'
|
|
3492
|
-
| 'niche_product'
|
|
3493
|
-
| 'hybrid_business'
|
|
3494
|
-
| 'other_general'
|
|
3495
|
-
| 'holding_company'
|
|
3496
|
-
| 'family_office'
|
|
3497
|
-
| 'cooperative'
|
|
3498
|
-
| 'social_enterprise'
|
|
3499
|
-
| 'incubator_accelerator'
|
|
3500
|
-
| 'coworking_community'
|
|
3501
|
-
| 'media_company'
|
|
3502
|
-
| 'research_lab';
|
|
3503
|
-
|
|
3504
1524
|
/**
|
|
3505
1525
|
* An invoice represents an itemized bill sent by a company to a customer for a
|
|
3506
1526
|
* specific product and plan, tracking the amount owed, due date, and payment
|
|
@@ -5130,11 +3150,6 @@ export interface Product {
|
|
|
5130
3150
|
*/
|
|
5131
3151
|
id: string;
|
|
5132
3152
|
|
|
5133
|
-
/**
|
|
5134
|
-
* The different business types a company can be.
|
|
5135
|
-
*/
|
|
5136
|
-
business_type: BusinessTypes | null;
|
|
5137
|
-
|
|
5138
3153
|
/**
|
|
5139
3154
|
* The company this product belongs to.
|
|
5140
3155
|
*/
|
|
@@ -5199,11 +3214,6 @@ export interface Product {
|
|
|
5199
3214
|
*/
|
|
5200
3215
|
headline: string | null;
|
|
5201
3216
|
|
|
5202
|
-
/**
|
|
5203
|
-
* The different industry types a company can be in.
|
|
5204
|
-
*/
|
|
5205
|
-
industry_type: IndustryTypes | null;
|
|
5206
|
-
|
|
5207
3217
|
/**
|
|
5208
3218
|
* The commission rate (as a percentage) that existing members earn when referring
|
|
5209
3219
|
* new customers through the member affiliate program. Null if the program is not
|
|
@@ -5361,11 +3371,6 @@ export interface ProductListItem {
|
|
|
5361
3371
|
*/
|
|
5362
3372
|
id: string;
|
|
5363
3373
|
|
|
5364
|
-
/**
|
|
5365
|
-
* The different business types a company can be.
|
|
5366
|
-
*/
|
|
5367
|
-
business_type: BusinessTypes | null;
|
|
5368
|
-
|
|
5369
3374
|
/**
|
|
5370
3375
|
* The datetime the product was created.
|
|
5371
3376
|
*/
|
|
@@ -5383,11 +3388,6 @@ export interface ProductListItem {
|
|
|
5383
3388
|
*/
|
|
5384
3389
|
headline: string | null;
|
|
5385
3390
|
|
|
5386
|
-
/**
|
|
5387
|
-
* The different industry types a company can be in.
|
|
5388
|
-
*/
|
|
5389
|
-
industry_type: IndustryTypes | null;
|
|
5390
|
-
|
|
5391
3391
|
/**
|
|
5392
3392
|
* The number of users who currently hold an active membership to this product.
|
|
5393
3393
|
* Returns 0 if the company has disabled public member counts.
|